From 26423e9574078fab0a46786b23afda449b3777b9 Mon Sep 17 00:00:00 2001 From: John Spray Date: Thu, 3 Dec 2015 12:01:46 +0000 Subject: [PATCH] tasks/cephfs: fix wait in assert_cluster_log I had the monc tick interval wrong. Signed-off-by: John Spray --- tasks/cephfs/cephfs_test_case.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tasks/cephfs/cephfs_test_case.py b/tasks/cephfs/cephfs_test_case.py index b735c32279c9a..206b14e4464ab 100644 --- a/tasks/cephfs/cephfs_test_case.py +++ b/tasks/cephfs/cephfs_test_case.py @@ -313,7 +313,9 @@ class CephFSTestCase(unittest.TestCase): return else: log.debug("No log hits yet, waiting...") - time.sleep(5) + # Default monc tick interval is 10s, so wait that long and + # then some grace + time.sleep(15) self.watcher_process.stdin.close() try: -- 2.39.5