Skip to content

Commit

Permalink
Tools - Increase timeout on sqfvmChecker.py (acemod#8703)
Browse files Browse the repository at this point in the history
  • Loading branch information
PabstMirror authored and AndreasBrostrom committed Dec 3, 2021
1 parent ab5ebaa commit a376965
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/sqfvmChecker.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def process_file(filePath, skipA3Warnings=True):
# cmd.append("-V")
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, universal_newlines=True)
try:
ret = proc.wait(7) # max wait - seconds
ret = proc.wait(12) # max wait - seconds
except Exception as _e:
print("sqfvm timed out: {}".format(filePath))
return True
Expand Down

0 comments on commit a376965

Please sign in to comment.