It is retried more frequently and 20 times instead of 4
Change-Id: I4ab5a2dfe9c60f9b88da7f2784003ef89a7f676d
Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
:param remove_jobs: list with jobs to remove [job_id_1, job_id_2]
:return: result. If false prometheus denies this configuration. Exception on error
"""
- for retry in range(4):
+ for retry in range(20):
result = True
if retry: # first time do not wait
- await asyncio.sleep(self.PROMETHEUS_LOCKED_TIME / 2, loop=self.loop)
+ await asyncio.sleep(4 + retry, loop=self.loop)
# lock database
now = time()