Commit 8bef1c48 authored by Jan Kiene's avatar Jan Kiene
Browse files

Merge branch 'ci/evs-be-test-remove-max_workers-limit' into 'main'

[CI] fix max_workers number in evs be test on Linux

See merge request !1016
parents 17a3401a c5f66535
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -54,7 +54,7 @@ def main():

    result_dict = dict()
    # run first part in parallel
    with concurrent.futures.ThreadPoolExecutor(max_workers=4) as executor:
    with concurrent.futures.ThreadPoolExecutor() as executor:
        executor.map(
            run_file, README_FILES_PARALLEL, BIN_PATHS, [result_dict] * len(README_FILES_PARALLEL)
        )