From: Martin Klozik Date: Thu, 12 May 2016 07:14:23 +0000 (+0100) Subject: ovsdb: Add delay after ovsdb start X-Git-Tag: colorado.1.0~73 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F03%2F14003%2F1;p=vswitchperf.git ovsdb: Add delay after ovsdb start Ovsdb must be up and running before any configuration option is modified or vswitchd is executed. Otherwise options won't be modified in DB and/or vswitchd won't be able to use correct options during start up. Change-Id: I04948d383272f2e694ec685b3a21d639068125ca JIRA: VSPERF-291 Signed-off-by: Martin Klozik Reviewed-by: Maryam Tahhan Reviewed-by: Al Morton Reviewed-by: Christian Trautman Reviewed-by: Brian Castelli --- diff --git a/vswitches/ovs.py b/vswitches/ovs.py index a8184320..555d7dec 100644 --- a/vswitches/ovs.py +++ b/vswitches/ovs.py @@ -18,6 +18,7 @@ import logging import re import os +import time import pexpect from conf import settings from vswitches.vswitch import IVSwitch @@ -65,7 +66,9 @@ class IVSwitchOvs(IVSwitch, tasks.Process): self._reset_ovsdb() self._start_ovsdb() - # DB must be up before vswitchd config is altered + # DB must be up before vswitchd config is altered or vswitchd started + time.sleep(3) + self.configure() try: