Merge "Fix attempts in Octavia plugins"

This commit is contained in:
Zuul 2021-08-04 06:15:47 +00:00 committed by Gerrit Code Review
commit 5218a6dc4e

View File

@ -143,7 +143,7 @@ class OctaviaCreateLoadbalancerListenersPoolsMembers(vm_utils.VMScenario,
except exceptions.OctaviaClientException as e: except exceptions.OctaviaClientException as e:
# retry for 409 return code # retry for 409 return code
if e.code == 409: if e.code == 409:
attempts += attempts attempts += 1
time.sleep(120) time.sleep(120)
continue continue
break break
@ -169,7 +169,7 @@ class OctaviaCreateLoadbalancerListenersPoolsMembers(vm_utils.VMScenario,
except exceptions.OctaviaClientException as e: except exceptions.OctaviaClientException as e:
# retry for 409 return code # retry for 409 return code
if e.code == 409: if e.code == 409:
attempts += attempts attempts += 1
time.sleep(120) time.sleep(120)
self.octavia.wait_for_loadbalancer_prov_status(lb) self.octavia.wait_for_loadbalancer_prov_status(lb)
LOG.info("member_create exception: Waiting for the lb {} to be active" LOG.info("member_create exception: Waiting for the lb {} to be active"
@ -197,7 +197,7 @@ class OctaviaCreateLoadbalancerListenersPoolsMembers(vm_utils.VMScenario,
LOG.info("cmd: {}, stdout:{}".format(cmd, stdout_test)) LOG.info("cmd: {}, stdout:{}".format(cmd, stdout_test))
if test_exitcode != 0 and stdout_test != 1: if test_exitcode != 0 and stdout_test != 1:
LOG.error("ERROR with HTTP response {}".format(cmd)) LOG.error("ERROR with HTTP response {}".format(cmd))
attempts += attempts attempts += 1
time.sleep(30) time.sleep(30)
else: else:
LOG.info("cmd: {} succesful".format(cmd)) LOG.info("cmd: {} succesful".format(cmd))