Tools - Increase timeout on sqfvmChecker.py (#8703)

This commit is contained in:
PabstMirror 2021-11-26 22:49:37 -06:00 committed by GitHub
parent 4cd3f9fe96
commit 53f8577122
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,7 +42,7 @@ def process_file(filePath, skipA3Warnings=True):
# cmd.append("-V") # cmd.append("-V")
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, universal_newlines=True) proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, universal_newlines=True)
try: try:
ret = proc.wait(7) # max wait - seconds ret = proc.wait(12) # max wait - seconds
except Exception as _e: except Exception as _e:
print("sqfvm timed out: {}".format(filePath)) print("sqfvm timed out: {}".format(filePath))
return True return True