From d139f6492c8d9ab7a1907a92f13de549347cb25e Mon Sep 17 00:00:00 2001 From: aabhinav Date: Fri, 12 Sep 2025 05:48:12 -0400 Subject: [PATCH] Fix failing subcloud prestage testcase due to timeout The subcloud prestage testcase was failing due to timeout when the subcloud status remained in "prestaging" longer than expected. To fix this, the timeout has been increased and the check interval reduced, allowing enough time for the prestage operation to reach "complete" while checking status more frequently. Test Plan: PASS: Verify subcloud reaches "complete" state after prestage PASS: Verify testcase does not fail with timeout errors PASS: verify testcase passes Change-Id: Iddec7edcc632d7c24bb8e888e403b94978407f0e Signed-off-by: aabhinav --- .../cloud_platform/dcmanager/dcmanager_subcloud_prestage.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/keywords/cloud_platform/dcmanager/dcmanager_subcloud_prestage.py b/keywords/cloud_platform/dcmanager/dcmanager_subcloud_prestage.py index 621a75f8..3b954d21 100644 --- a/keywords/cloud_platform/dcmanager/dcmanager_subcloud_prestage.py +++ b/keywords/cloud_platform/dcmanager/dcmanager_subcloud_prestage.py @@ -45,8 +45,8 @@ class DcmanagerSubcloudPrestage(BaseKeyword): self, subcloud: str, prestaging_packages: bool = False, - check_interval: int = 30, - timeout: int = 120, + check_interval: int = 10, + timeout: int = 210, ) -> None: """ Waits for the prestage verification to be completed.