From 3a5c70b89b07887d1615ba556f53fd079b945cc3 Mon Sep 17 00:00:00 2001 From: Samuel Just Date: Thu, 24 Jan 2013 17:31:38 -0800 Subject: [PATCH] ceph_manager: turn long stall injection off by default Signed-off-by: Samuel Just --- teuthology/task/ceph_manager.py | 2 +- teuthology/task/thrashosds.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/teuthology/task/ceph_manager.py b/teuthology/task/ceph_manager.py index c3b29d999a9ed..986643f831acd 100644 --- a/teuthology/task/ceph_manager.py +++ b/teuthology/task/ceph_manager.py @@ -182,7 +182,7 @@ class Thrasher: self.config.get('pause_long', 80), self.config.get('pause_check_after', 70), True), - self.config.get('chance_inject_pause_long', 0.2),)]: + self.config.get('chance_inject_pause_long', 0),)]: actions.append(scenario) total = sum([y for (x,y) in actions]) diff --git a/teuthology/task/thrashosds.py b/teuthology/task/thrashosds.py index ae0ad6fc11b43..1c5d4773cc0d3 100644 --- a/teuthology/task/thrashosds.py +++ b/teuthology/task/thrashosds.py @@ -66,7 +66,7 @@ def task(ctx, config): pause_long: (80) duration of long pause pause_check_after: (50) assert osd down after this long chance_inject_pause_short: (1) chance of injecting short stall - chance_inject_pause_long: (0.1) chance of injecting long stall + chance_inject_pause_long: (0) chance of injecting long stall example: -- 2.39.5