From 39e7db352e58c05ff2d0c918a46192146c0f2083 Mon Sep 17 00:00:00 2001 From: Anthony Scalisi Date: Thu, 3 Dec 2015 12:47:11 -0800 Subject: [PATCH] retry_interval need to be a string, fixes #244 --- libraries/consul_config.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/consul_config.rb b/libraries/consul_config.rb index 2bf75cc9..0e531379 100644 --- a/libraries/consul_config.rb +++ b/libraries/consul_config.rb @@ -72,7 +72,7 @@ class ConsulConfig < Chef::Resource attribute(:protocol, kind_of: String) attribute(:recursor, kind_of: String) attribute(:recursors, kind_of: Array) - attribute(:retry_interval, kind_of: Integer) + attribute(:retry_interval, kind_of: String) attribute(:retry_join, kind_of: Array) attribute(:rejoin_after_leave, equal_to: [true, false], default: true) attribute(:server, equal_to: [true, false], default: true)