Skip to content

Commit 0577fa0

Browse files
committed
Partly revert "retrying for metadata artifacts download"
This partly reverts commit 199e2ca. Signed-off-by: Tobias Wolf <wolf@b1-systems.de>
1 parent d15f914 commit 0577fa0

File tree

3 files changed

+1
-16
lines changed

3 files changed

+1
-16
lines changed

poetry.lock

Lines changed: 1 addition & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ pygit2 = "^1.18.2"
2020
pygments = "^2.19.2"
2121
PyYAML = "^6.0.2"
2222
gitpython = "^3.1.45"
23-
retrying = "^1.4.2"
2423

2524
[tool.poetry.group.dev.dependencies]
2625
bandit = "^1.8.6"

src/gardenlinux/s3/bucket.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
from typing import Any, Optional
1313

1414
import boto3
15-
from retrying import retry
1615

1716
from ..logger import LoggerSetup
1817

@@ -89,7 +88,6 @@ class tree for self).
8988

9089
return getattr(self._bucket, name)
9190

92-
@retry(stop_max_attempt_number=5, wait_exponential_multiplier=1000, wait_exponential_max=16000)
9391
def download_file(self, key, file_name, *args, **kwargs):
9492
"""
9593
boto3: Download an S3 object to a file.

0 commit comments

Comments
 (0)