From a736df696974e0c9d20dafd5e892f7d4c6c8f7ce Mon Sep 17 00:00:00 2001 From: Vallari Agrawal Date: Thu, 27 Mar 2025 15:34:36 +0530 Subject: [PATCH] qa/tasks/nvmeof.py: set default daemon_max_thrash_times to 4 Signed-off-by: Vallari Agrawal --- qa/tasks/nvmeof.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/tasks/nvmeof.py b/qa/tasks/nvmeof.py index c9e972c7a2179..1069d0aabcb2b 100644 --- a/qa/tasks/nvmeof.py +++ b/qa/tasks/nvmeof.py @@ -321,7 +321,7 @@ class NvmeofThrasher(Thrasher, Greenlet): self.max_thrash_daemons = int(self.config.get('max_thrash', len(self.daemons) - 1)) # Limits on thrashing each daemon - self.daemon_max_thrash_times = int(self.config.get('daemon_max_thrash_times', 5)) + self.daemon_max_thrash_times = int(self.config.get('daemon_max_thrash_times', 4)) self.daemon_max_thrash_period = int(self.config.get('daemon_max_thrash_period', 30 * 60)) # seconds self.min_thrash_delay = int(self.config.get('min_thrash_delay', 60)) -- 2.39.5