Skip to content

Commit ac515a0

Browse files
authored
Merge pull request #638 from ernesgonzalez33/fix/rpms-signature-scan-retry-transient-errors
feat: add retry with exponential backoff for transient registry errors
2 parents a276921 + cb2c5ee commit ac515a0

File tree

6 files changed

+289
-64
lines changed

6 files changed

+289
-64
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
*.egg-info
2+
__pycache__/
3+
uv.lock

Pipfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ pylint-pytest = "*"
2121
authlib = "*"
2222
kubernetes = "*"
2323
pytest-cov = "*"
24+
tenacity = "*"
2425

2526
[dev-packages]
2627
pytest = "*"

Pipfile.lock

Lines changed: 63 additions & 64 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ dependencies = [
1616
"pyyaml",
1717
"odcs[client]",
1818
"kubernetes",
19+
"tenacity",
1920
]
2021

2122
[project.scripts]
@@ -36,3 +37,5 @@ target-version = ["py311"]
3637

3738
[tool.pylint]
3839
load-plugins = ["pylint_pytest"]
40+
41+

0 commit comments

Comments
 (0)