From 1e85cab33aee22d85d533e819a101afb7575ba44 Mon Sep 17 00:00:00 2001 From: Shengwen YU Date: Sun, 11 Feb 2024 19:24:57 +0800 Subject: [PATCH] update retry of get_scan_data_export_execution from 5 to 15 (#19959) Signed-off-by: Shengwen Yu --- tests/apitests/python/test_scan_data_export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/apitests/python/test_scan_data_export.py b/tests/apitests/python/test_scan_data_export.py index ad9fa249f..d8d2ef9e5 100644 --- a/tests/apitests/python/test_scan_data_export.py +++ b/tests/apitests/python/test_scan_data_export.py @@ -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":