From 999c787ac60beb0d28f09d574242ec64eee06686 Mon Sep 17 00:00:00 2001 From: Xiubo Li Date: Fri, 28 May 2021 12:58:21 +0800 Subject: [PATCH] qa: wait more time since there have many more pgs than before Signed-off-by: Xiubo Li --- qa/tasks/cephfs/test_full.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qa/tasks/cephfs/test_full.py b/qa/tasks/cephfs/test_full.py index e192656173a54..2b7166d6b2be2 100644 --- a/qa/tasks/cephfs/test_full.py +++ b/qa/tasks/cephfs/test_full.py @@ -132,7 +132,7 @@ class FullnessTestCase(CephFSTestCase): else: log.info("Writing file B succeeded (full status will happen soon)") self.wait_until_true(lambda: self.is_full(), - timeout=osd_mon_report_interval * 5) + timeout=osd_mon_report_interval * 120) # Attempting to write more data should give me ENOSPC with self.assertRaises(CommandFailedError) as ar: @@ -167,7 +167,7 @@ class FullnessTestCase(CephFSTestCase): # * The MDS to purge the stray folder and execute object deletions # * The OSDs to inform the mon that they are no longer full self.wait_until_true(lambda: not self.is_full(), - timeout=osd_mon_report_interval * 5) + timeout=osd_mon_report_interval * 120) # Wait for the MDS to see the latest OSD map so that it will reliably # be applying the free space policy -- 2.39.5