From c96f04b51ad9a81e476e9ba41673049e12b26269 Mon Sep 17 00:00:00 2001 From: Samuel Just Date: Fri, 19 Feb 2016 12:26:27 -0800 Subject: [PATCH] divergent_priors: add sleep after reviving divergent Basically same thing as c0b0ec2831f410d89b695a1d08122334d8ee907a client is getting ENXIO when trying to do osd tell because the osd isn't quite up yet. Signed-off-by: Samuel Just (cherry picked from commit af3af30418902fb0ff436d7207582bae0226a05a) --- tasks/divergent_priors.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tasks/divergent_priors.py b/tasks/divergent_priors.py index 602eb518d6d9b..d81ea47273478 100644 --- a/tasks/divergent_priors.py +++ b/tasks/divergent_priors.py @@ -143,6 +143,8 @@ def task(ctx, config): log.info("reviving divergent %d", divergent) ctx.manager.revive_osd(divergent) + time.sleep(20) + log.info('allowing recovery') # Set osd_recovery_delay_start back to 0 and kick the queue for i in osds: -- 2.39.5