From e445fe983f76c427df0c14a1777fc4d4b654fae6 Mon Sep 17 00:00:00 2001 From: Soumya Koduri Date: Mon, 7 Feb 2022 23:24:34 +0530 Subject: [PATCH] lifecycle/deletemarker_expiration: Increase timer window Increase wait time in test_lifecycle_deletemarker_expiration(..) to avoid any spurious failure. Signed-off-by: Soumya Koduri (cherry picked from commit cb830ebae196395be9d3498505121bb4b96d2382) --- s3tests_boto3/functional/test_s3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/s3tests_boto3/functional/test_s3.py b/s3tests_boto3/functional/test_s3.py index 47fe247..ff7453c 100644 --- a/s3tests_boto3/functional/test_s3.py +++ b/s3tests_boto3/functional/test_s3.py @@ -9671,7 +9671,7 @@ def test_lifecycle_deletemarker_expiration(): lc_interval = get_lc_debug_interval() # Wait for first expiration (plus fudge to handle the timer window) - time.sleep(5*lc_interval) + time.sleep(7*lc_interval) response = client.list_object_versions(Bucket=bucket_name) init_versions = response['Versions']