summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick J Cherry <patrick@bytemark.co.uk>2013-08-01 14:21:55 +0100
committerPatrick J Cherry <patrick@bytemark.co.uk>2013-08-01 14:21:55 +0100
commitc5ae6bbb3d8e9e7411a8cd12f249130edead39ac (patch)
treef8c780f8bdbdb12aef09652c09acbfaa96188826
parentfa604936849b236f63eabb61f57ba411fb39a5cb (diff)
Updated the cool-off period to work after every failed test, bar the
last one.
-rw-r--r--debian/changelog7
-rw-r--r--lib/custodian/worker.rb4
2 files changed, 9 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index c49fa0d..e84a721 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+custodian (0.10-5) stable; urgency=low
+
+ * Updated cool-off period to occur after all but the last test, if the test
+ fails.
+
+ -- Patrick J Cherry <patrick@bytemark.co.uk> Thu, 01 Aug 2013 14:21:03 +0100
+
custodian (0.10-4) stable; urgency=low
* Correctly specify the Bytemark IPv6 ranges.
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