diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2013-08-01 14:21:55 +0100 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2013-08-01 14:21:55 +0100 |
commit | c5ae6bbb3d8e9e7411a8cd12f249130edead39ac (patch) | |
tree | f8c780f8bdbdb12aef09652c09acbfaa96188826 /lib | |
parent | fa604936849b236f63eabb61f57ba411fb39a5cb (diff) |
Updated the cool-off period to work after every failed test, bar the
last one.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/custodian/worker.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/custodian/worker.rb b/lib/custodian/worker.rb index b502e1b..b9c9995 100644 --- a/lib/custodian/worker.rb +++ b/lib/custodian/worker.rb @@ -195,12 +195,12 @@ module Custodian # Some of our routers don't like being hammered. # # We delay before re-testing, but we only do this if - # we're not on the first count. + # we're not on the last count. # # The intention here is that if the test passes then there will # be no delay. If the test fails then we'll sleep. # - if ( ( @retry_delay > 0 ) && ( count != 1 ) ) + if ( ( result == false ) && ( @retry_delay > 0 ) && ( count < @retry_count ) ) log_message( "Sleeping for #{@retry_delay} seconds to allow cool-down" ) sleep( @retry_delay ) end |