We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73917f0 commit eaf54d9Copy full SHA for eaf54d9
skynet/env.py
@@ -111,7 +111,7 @@ def tobool(val: str | None):
111
112
# jobs
113
job_timeout = int(os.environ.get('JOB_TIMEOUT', 60 * 5)) # 5 minutes default
114
-max_concurrency = int(os.environ.get('MAX_CONCURRENCY', 30))
+max_concurrency = int(os.environ.get('MAX_CONCURRENCY', 10))
115
116
# summaries
117
summary_minimum_payload_length = int(os.environ.get('SUMMARY_MINIMUM_PAYLOAD_LENGTH', 100))
skynet/modules/ttt/summaries/jobs.py
@@ -23,7 +23,7 @@
23
24
log = get_logger(__name__)
25
26
-TIME_BETWEEN_JOBS_CHECK = 0.3
+TIME_BETWEEN_JOBS_CHECK = 1
27
TIME_BETWEEN_JOBS_CHECK_ON_ERROR = 10
28
29
background_task = None
0 commit comments