From 4dd7b2e9586f33a99a415eed6ad826c4104ad2da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Sat, 20 Feb 2021 13:44:14 +0100 Subject: [PATCH] donate_cpu_lib.py: reduced daca timeout to 1800 seconds (#3140) --- tools/donate_cpu_lib.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/donate_cpu_lib.py b/tools/donate_cpu_lib.py index 01d3ea7ad..fd23ac6de 100644 --- a/tools/donate_cpu_lib.py +++ b/tools/donate_cpu_lib.py @@ -15,10 +15,10 @@ import shlex # Version scheme (MAJOR.MINOR.PATCH) should orientate on "Semantic Versioning" https://semver.org/ # Every change in this script should result in increasing the version number accordingly (exceptions may be cosmetic # changes) -CLIENT_VERSION = "1.3.7" +CLIENT_VERSION = "1.3.8" # Timeout for analysis with Cppcheck in seconds -CPPCHECK_TIMEOUT = 60 * 60 +CPPCHECK_TIMEOUT = 30 * 60 # Return code that is used to mark a timed out analysis RETURN_CODE_TIMEOUT = -999