From 53f8577122de4debd1c6cbafcfb34f6e1504be77 Mon Sep 17 00:00:00 2001 From: PabstMirror Date: Fri, 26 Nov 2021 22:49:37 -0600 Subject: [PATCH] Tools - Increase timeout on sqfvmChecker.py (#8703) --- tools/sqfvmChecker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/sqfvmChecker.py b/tools/sqfvmChecker.py index 98216563f0..ab9c74ceee 100644 --- a/tools/sqfvmChecker.py +++ b/tools/sqfvmChecker.py @@ -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