mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Tools - Increase timeout on sqfvmChecker.py (#8703)
This commit is contained in:
parent
4cd3f9fe96
commit
53f8577122
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user