donate_cpu_lib.py: reduced daca timeout to 1800 seconds (#3140)

This commit is contained in:
Oliver Stöneberg 2021-02-20 13:44:14 +01:00 committed by GitHub
parent b6fc2f1a68
commit 4dd7b2e958
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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