From 8645ef262f42a8e62fb88914fafeddc6eb60240b Mon Sep 17 00:00:00 2001 From: bra-fsn Date: Sat, 5 Oct 2024 22:11:06 +0200 Subject: [PATCH] one at a time --- inspector/inspector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inspector/inspector.py b/inspector/inspector.py index 77f3023..5e40306 100644 --- a/inspector/inspector.py +++ b/inspector/inspector.py @@ -148,7 +148,7 @@ def start(ctx, exclude, start_only): f = executor.submit(lib.start_inspect, executor, lock, data_dir, vendor, server, tasks, srv_data, regions, zones) futures[f] = (vendor, server) count += 1 - if count == 4: + if count == 1: break for f in concurrent.futures.as_completed(futures): vendor, server = futures[f]