File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
packages/examples/cvat/exchange-oracle/src/core Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -162,11 +162,11 @@ class CvatConfig:
162162 admin_pass = getenv ("CVAT_ADMIN_PASS" , "admin" )
163163 org_slug = getenv ("CVAT_ORG_SLUG" , "" )
164164
165- cvat_job_overlap = int (os . environ . get ("CVAT_JOB_OVERLAP" , 0 ))
166- cvat_task_segment_size = int (os . environ . get ("CVAT_TASK_SEGMENT_SIZE" , 150 ))
167- cvat_default_image_quality = int (os . environ . get ("CVAT_DEFAULT_IMAGE_QUALITY" , 70 ))
168- cvat_max_jobs_per_task = int (os . environ . get ("CVAT_MAX_JOBS_PER_TASK" , 1000 ))
169- cvat_task_creation_check_interval = int (os . environ . get ("CVAT_TASK_CREATION_CHECK_INTERVAL" , 5 ))
165+ cvat_job_overlap = int (getenv ("CVAT_JOB_OVERLAP" , 0 ))
166+ cvat_task_segment_size = int (getenv ("CVAT_TASK_SEGMENT_SIZE" , 150 ))
167+ cvat_default_image_quality = int (getenv ("CVAT_DEFAULT_IMAGE_QUALITY" , 70 ))
168+ cvat_max_jobs_per_task = int (getenv ("CVAT_MAX_JOBS_PER_TASK" , 1000 ))
169+ cvat_task_creation_check_interval = int (getenv ("CVAT_TASK_CREATION_CHECK_INTERVAL" , 5 ))
170170
171171 export_timeout = int (getenv ("CVAT_EXPORT_TIMEOUT" , 5 * 60 ))
172172 "Timeout, in seconds, for annotations or dataset export waiting"
You can’t perform that action at this time.
0 commit comments