diff options
author | Steve Kemp <steve@steve.org.uk> | 2013-05-14 13:39:56 +0100 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2013-05-14 13:39:56 +0100 |
commit | 9ad500d31090daf680e6760ece333a9164f653b6 (patch) | |
tree | c84d923df43f12f3dd2cc869de6a5b06da7d67ea /lib/custodian/settings.rb | |
parent | 8b59f320ef19f6470ce0d5a7229a8be58a9f7180 (diff) |
Allow retry-behaviour to be tweaked.
We can now sleep between retesting, and we configure the
number of repeats via the configuration file.
Diffstat (limited to 'lib/custodian/settings.rb')
-rw-r--r-- | lib/custodian/settings.rb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/custodian/settings.rb b/lib/custodian/settings.rb index b37e9e4..34a54a6 100644 --- a/lib/custodian/settings.rb +++ b/lib/custodian/settings.rb @@ -90,6 +90,26 @@ module Custodian + # + # The number of times to re-execute a test before + # considering it is failed. + # + def retries + _load() unless( _loaded? ) + + @settings['retries' ] || 5 + end + + + # + # Should we sleep before repeating tests? + # + def retry_delay + _load() unless( _loaded? ) + + @settings['retry_delay'] || 0 + end + # # The beanstalkd server address |