Skip to content

Commit

Permalink
Increase MP build retry timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
Shane Brown committed Sep 21, 2023
1 parent 87c6cbc commit e3da7ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildrunner/docker/multiplatform_image_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def _stop_local_registry(self):
logger.warning("Local registry is not running when attempting to stop it")

# pylint: disable=too-many-arguments
@retry(python_on_whales.exceptions.DockerException, tries=3, delay=5, logger=logger)
@retry(python_on_whales.exceptions.DockerException, tries=3, delay=10, logger=logger)
def _build_single_image(self,
name: str,
platform: str,
Expand Down

0 comments on commit e3da7ff

Please sign in to comment.