Skip to content

Commit

Permalink
extend TESTRUNNER_VALIDATION_WINDOW to 1 week
Browse files Browse the repository at this point in the history
  • Loading branch information
andmat900 committed Oct 15, 2024
1 parent 5811c74 commit 32f0d3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/src/etos_api/library/validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class TestRunnerValidationCache:
# Cache for lazy testrunner validation. Keys: container names, values: timestamp.
# Only passed validations are cached.
TESTRUNNER_VALIDATION_CACHE = {}
TESTRUNNER_VALIDATION_WINDOW = 1800 # seconds
TESTRUNNER_VALIDATION_WINDOW = 3600 * 24 * 7 # 1 week

lock = asyncio.Lock()

Expand Down

0 comments on commit 32f0d3e

Please sign in to comment.