Skip to content

Commit

Permalink
CreateFiles/CreateFilesAsync expect boolean values
Browse files Browse the repository at this point in the history

collectd: cf_util_get_boolean: The CreateFiles option requires exactly one boolean argument.
collectd: rrdcached plugin: Handling the "CreateFiles" option failed.
collectd: cf_util_get_boolean: The CreateFilesAsync option requires exactly one boolean argument.
collectd: rrdcached plugin: Handling the "CreateFilesAsync" option failed.
  • Loading branch information
Christoph Maser committed Mar 27, 2015
1 parent 91e1daf commit e7a11f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/plugin/rrdcached.conf.erb
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
DaemonAddress "<%= @daemonaddress %>"
DataDir "<%= @datadir %>"
<% unless @createfiles.nil? -%>
CreateFiles "<%= @createfiles %>"
CreateFiles <%= @createfiles %>
<% end -%>
<% unless @createfilesasync.nil? -%>
CreateFilesAsync "<%= @createfilesasync %>"
CreateFilesAsync <%= @createfilesasync %>
<% end -%>
<% if @stepsize -%>
StepSize "<%= @stepsize %>"
Expand Down

0 comments on commit e7a11f1

Please sign in to comment.