diff options
author | Steve Kemp <steve@steve.org.uk> | 2013-05-14 14:13:23 +0100 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2013-05-14 14:13:23 +0100 |
commit | 2c5ca798e2f7ccdd56b7f37a8834b655686ebdba (patch) | |
tree | 209616f124ec471ea893c640ab8c1082f6a7dc98 /lib/custodian/worker.rb | |
parent | b1ec8987fe00481b9702d05b7dd7114835f9fda8 (diff) |
Ensure repeat_count and sleep values are integers.
Diffstat (limited to 'lib/custodian/worker.rb')
-rw-r--r-- | lib/custodian/worker.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/custodian/worker.rb b/lib/custodian/worker.rb index 432b3d4..90e8e99 100644 --- a/lib/custodian/worker.rb +++ b/lib/custodian/worker.rb @@ -198,7 +198,7 @@ module Custodian # We delay before re-testing. # if ( @retry_delay > 0 ) - puts "Sleeping for #{@retry_delay} seconds to allow cooldown" + puts "Sleeping for #{@retry_delay} seconds to allow cool-down" sleep( @retry_delay ) end end |