We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abfc843 commit bb36982Copy full SHA for bb36982
bin/webdevops/Configuration.py
@@ -73,7 +73,7 @@
73
74
'verbosity': 0,
75
'threads': 1,
76
- 'retry': 5,
+ 'retry': 1,
77
'dryRun': False,
78
}
79
bin/webdevops/command/BaseCommand.py
@@ -253,7 +253,8 @@ def get_retry(self):
253
Get number of retries
254
"""
255
default = 1
256
- retry = max(0, int(self.option('retry')))
+ retry = os.getenv('RETRY', self.option('retry'))
257
+ retry = max(0, int(retry))
258
259
if retry > 0:
260
# user value
0 commit comments