Skip to content

Commit

Permalink
Merge pull request redhat-openstack#205 from petems/patch-1
Browse files Browse the repository at this point in the history
Fix Puppet deprecation warning
  • Loading branch information
nibalizer committed Dec 10, 2014
2 parents 8889605 + 02ca5d8 commit 3abf175
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions templates/plugin/statsd.conf.erb
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@
Host "<%= @host %>"
<% end -%>
<% if @port -%>
Port <%= port %>
Port <%= @port %>
<% end -%>
<% if @deletecounters -%>
DeleteCounters <%= deletecounters %>
DeleteCounters <%= @deletecounters %>
<% end -%>
<% if @deletetimers -%>
DeleteTimers <%= deletetimers %>
DeleteTimers <%= @deletetimers %>
<% end -%>
<% if @deletegauges -%>
DeleteGauges <%= deletegauges %>
DeleteGauges <%= @deletegauges %>
<% end -%>
<% if @deletesets -%>
Deletesets <%= deletesets %>
Deletesets <%= @deletesets %>
<% end -%>
<% if @timerpercentile -%>
TimerPercentile <%= timerpercentile %>
TimerPercentile <%= @timerpercentile %>
<% end -%>
</Plugin>

0 comments on commit 3abf175

Please sign in to comment.