Skip to content

Commit 9e07a14

Browse files
committed
Increase export job check timeout
This PR greatly increases the number of times manifester will check the status of a manifest export job in RHSM before timing out. This is intended to address scenarios in which there is a significant gap between an export job being scheduled in RHSM and the job starting execution.
1 parent 7897d1c commit 9e07a14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manifester/manifester.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ def trigger_manifest_export(self):
339339
Starts the export job, monitors the status of the job, and downloads the manifest on
340340
successful completion of the job.
341341
"""
342-
MAX_REQUESTS = 50
342+
MAX_REQUESTS = 500
343343
SUCCESS_CODE = 200
344344
data = {
345345
"headers": {"Authorization": f"Bearer {self.access_token}"},

0 commit comments

Comments
 (0)