Skip to content

Commit 857f705

Browse files
committed
Revert parallel max_workers = 1
1 parent 597edf2 commit 857f705

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scripts/release/atomic_pipeline.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -301,8 +301,7 @@ def build_agent_default_case(build_configuration: ImageBuildConfiguration):
301301
tasks_queue = Queue()
302302
max_workers = 1
303303
if build_configuration.parallel:
304-
# TODO: remove this once we have a proper synchronization for buildx builder concurrent creation
305-
max_workers = 1
304+
max_workers = None
306305
if build_configuration.parallel_factor > 0:
307306
max_workers = build_configuration.parallel_factor
308307
with ProcessPoolExecutor(max_workers=max_workers) as executor:

0 commit comments

Comments
 (0)