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

* update retry of get_scan_data_export_execution from 5 to 10

Signed-off-by: Shengwen Yu <yshengwen@vmware.com>

* update retry of get_scan_data_export_execution to 15

Signed-off-by: Shengwen Yu <yshengwen@vmware.com>

---------

Signed-off-by: Shengwen Yu <yshengwen@vmware.com>
This commit is contained in:
Shengwen YU 2024-02-11 19:24:49 +08:00 committed by GitHub
parent dfb317bb55
commit a79c5da4d9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

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":