Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/helpermodules/utils/_thread_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ def split_chunks(to_split, n):
thread.start()

# Wait for all to complete
for thread in threads_chunk:
for thread in threads_to_keep:
thread.join(timeout=timeout)

for thread in threads_chunk:
for thread in threads_to_keep:
if thread.is_alive():
log.error(f"{thread.name} konnte nicht innerhalb des Timeouts abgearbeitet werden.")
not_finished_threads.append(thread.name)
Expand Down