Skip to content

Commit

Permalink
Fix wrong closure of Host parameter
Browse files Browse the repository at this point in the history
Configuration file right now is being created with a wrong format since for the Host parameter there is an extra ">"
  • Loading branch information
kazeborja committed Aug 10, 2018
1 parent 75f4cea commit 2be7a7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/curl_json.conf.erb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ LoadPlugin "curl_json"
<%- end -%>
<% if scope.lookupvar('collectd::collectd_version_real') and (scope.function_versioncmp([scope.lookupvar('collectd::collectd_version_real'), '5.6']) >= 0) -%>
<%- if @host -%>
Host "<%= @host %>">
Host "<%= @host %>"
<%- end -%>
<%- end -%>
Instance "<%= @instance %>"
Expand Down

0 comments on commit 2be7a7e

Please sign in to comment.