From f858ebcce0bf101762223bc39c6c43e103a28c4c Mon Sep 17 00:00:00 2001 From: Konstantin Pastbin Date: Wed, 3 Dec 2025 12:32:20 +0700 Subject: [PATCH] [generator] Make Taiwan_North use 5 threads for Index stage Signed-off-by: Konstantin Pastbin --- tools/python/maps_generator/generator/steps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/maps_generator/generator/steps.py b/tools/python/maps_generator/generator/steps.py index a98f5d089..73de465c9 100644 --- a/tools/python/maps_generator/generator/steps.py +++ b/tools/python/maps_generator/generator/steps.py @@ -38,7 +38,7 @@ def multithread_run_if_one_country(func): kwargs.update({"threads_count": settings.THREADS_COUNT}) # Otherwise index stage of Taiwan_* mwms continues to run after all other mwms have finished: elif country == 'Taiwan_North': - kwargs.update({"threads_count": 6}) + kwargs.update({"threads_count": 5}) elif country == 'Taiwan_South': kwargs.update({"threads_count": 2}) func(env, country, **kwargs)