From: Josep Puigdemont Date: Thu, 16 Jun 2016 14:30:31 +0000 (+0200) Subject: ipmi_adapter: add delay to stabilize command action X-Git-Tag: colorado.1.rc1~106^2 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=df90b43521e00df71e549564532c094c69051d63;p=fuel.git ipmi_adapter: add delay to stabilize command action We should allow the nodes some time to stabilize after sending a command to them. Currently we are checking the status too fast. Change-Id: I26a60d2bb6a43edbec842b727f825057e2778981 Signed-off-by: Josep Puigdemont --- diff --git a/deploy/dha_adapters/ipmi_adapter.py b/deploy/dha_adapters/ipmi_adapter.py index 6ce4012f4..a4ad1af2c 100644 --- a/deploy/dha_adapters/ipmi_adapter.py +++ b/deploy/dha_adapters/ipmi_adapter.py @@ -63,6 +63,7 @@ class IpmiAdapter(HardwareAdapter): attempts = self.attempts while attempts: + time.sleep(self.delay) state = self.node_get_state(node_id) attempts -= 1 if state == expected: