Skip to content

Commit

Permalink
Disable upgrade_sonic retry (#560)
Browse files Browse the repository at this point in the history
Signed-off-by: Qi Luo <qiluo-msft@users.noreply.github.com>
  • Loading branch information
qiluo-msft authored and lguohan committed Apr 3, 2018
1 parent 66d6c21 commit 325ce4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ansible/plugins/action/onie.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def run(self, tmp=None, task_vars=None):
_install = boolean(self._task.args.get('install', 'no'))
_url = self._task.args.get('url', None)
_timeout = self._task.args.get('timeout', None)
_nretry = int(self._task.args.get('retry', 3))
_nretry = int(self._task.args.get('retry', 1))

if _timeout is None:
_timeout = 300
Expand Down

0 comments on commit 325ce4a

Please sign in to comment.