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 1065b1e commit 24edafcCopy full SHA for 24edafc
components/clp-py-utils/clp_py_utils/clp_config.py
@@ -263,8 +263,10 @@ def transform_for_container(self):
263
264
265
class CompressionScheduler(BaseModel):
266
+ UNLIMITED_CONCURRENT_TASKS_PER_JOB: ClassVar[NonNegativeInt] = 0
267
+
268
jobs_poll_delay: PositiveFloat = 0.1 # seconds
- max_concurrent_tasks_per_job: NonNegativeInt = 0 # A value of 0 disables the limit
269
+ max_concurrent_tasks_per_job: NonNegativeInt = UNLIMITED_CONCURRENT_TASKS_PER_JOB
270
logging_level: LoggingLevel = "INFO"
271
272
0 commit comments