Skip to content

Commit

Permalink
Don't do type convertion on keys of sensu_client_config custom param
Browse files Browse the repository at this point in the history
  • Loading branch information
alvagante committed Jul 24, 2017
1 parent c9e88ea commit 636b3a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/puppet/type/sensu_client_config.rb
Expand Up @@ -102,7 +102,7 @@ def should_to_s(hash = @should)

def insync?(is)
if defined? @should[0]
if is == @should[0].each { |k, v| value[k] = to_type(v) }
if is == @should[0].each { |k, v| value[k] = v }
true
else
false
Expand Down

0 comments on commit 636b3a8

Please sign in to comment.