Tech debt - increase test timeouts to remove intermittant test failures (#3146)

This commit is contained in:
Bert Blommers 2020-07-17 12:11:47 +01:00 committed by GitHub
commit bed769a387
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View file

@ -443,8 +443,8 @@ class Job(threading.Thread, BaseModel):
now = datetime.datetime.now()
i = 1
while container.status == "running" and not self.stop:
time.sleep(0.15)
if i % 10 == 0:
time.sleep(0.2)
if i % 5 == 0:
logs_stderr.extend(
container.logs(
stdout=False,