Skip to content

Commit 504fd8c

Browse files
committed
[p] Fix: Redundant manifest generations due to race condition (#6850, PR #6855)
2 parents 058e451 + 593fafd commit 504fd8c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/integration_test.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,9 @@ def worker(_):
562562
response = self._check_endpoint(PUT, '/manifest/files', args=args, fetch=fetch)
563563
self._manifest_validators[format](catalog, response)
564564

565-
num_workers = 3
565+
# FIXME: Set number of workers back to 3
566+
# https://github.com/DataBiosphere/azul/issues/6850
567+
num_workers = 1
566568
with ThreadPoolExecutor(max_workers=num_workers) as tpe:
567569
results = list(tpe.map(worker, range(num_workers)))
568570

0 commit comments

Comments
 (0)