Merge "Fix wait condition for retry" into stable/train

This commit is contained in:
Zuul 2020-12-18 09:29:57 +00:00 committed by Gerrit Code Review
commit 03a3f689ef
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ class BuildahBuilder(base.BaseBuilder):
@tenacity.retry( # Retry up to 3 times with 1 second delay
reraise=True,
wait=1,
wait=tenacity.wait_fixed(1),
stop=tenacity.stop_after_attempt(3)
)
def build(self, container_name, container_build_path):