update retry of get_scan_data_export_execution from 5 to 15 (#19959)

Signed-off-by: Shengwen Yu <yshengwen@vmware.com>
This commit is contained in:
Shengwen YU 2024-02-11 19:24:57 +08:00 committed by GitHub
parent 84b31aaf7f
commit 1e85cab33a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -93,7 +93,7 @@ class TestScanDataExport(unittest.TestCase):
# 10. Wait for the export scan data execution to succeed
execution = None
for i in range(5):
for i in range(15):
print("wait for the job to finish:", i)
execution = self.scan_data_export.get_scan_data_export_execution(execution_id, **user_client)
if execution.status == "Success":