[fuzz] Increase subset runner timeout for tsan bot

Now is flaky let's just increase and maybe investigate later
This commit is contained in:
Ebrahim Byagowi 2019-07-11 15:10:36 +04:30 committed by GitHub
parent b65bad18aa
commit f8242b61ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ def cmd(command):
def timeout(p, is_killed):
is_killed['value'] = True
p.kill()
timer = threading.Timer (5, timeout, [p, is_killed])
timer = threading.Timer (6, timeout, [p, is_killed])
try:
timer.start()