Revert "Stop old validation loops before reinitializing the cluster"

This reverts commit 5115aa17b7.

Change-Id: I763fc577907739214b7b28fd23fdb1475dbac088
This commit is contained in:
Adit Sarfaty 2020-10-05 09:35:24 +00:00
parent e302069902
commit a023330533
1 changed files with 0 additions and 7 deletions

View File

@ -458,7 +458,6 @@ class ClusteredAPI(object):
self._print_keepalive = 0
self._silent = False
self._api_call_collectors = []
self._loops = []
def _init_cluster(*args, **kwargs):
self._init_endpoints(providers, min_conns_per_pool,
@ -529,11 +528,6 @@ class ClusteredAPI(object):
break
eventlet.sleep(0.5)
if self._loops:
for loop in self._loops:
loop.stop()
self._loops = []
if len(self._endpoints) > 1:
# We don't monitor connectivity when one endpoint is available,
# since there is no alternative to querying this single backend
@ -546,7 +540,6 @@ class ClusteredAPI(object):
loop.start(initial_delay=self._keepalive_interval,
periodic_interval_max=self._keepalive_interval,
stop_on_exception=False)
self._loops.append(loop)
LOG.debug("Done initializing API endpoint(s). "
"API cluster health: %s", self.health)