[generator] Make Taiwan_North use 3 threads for Index stage

This commit is contained in:
Konstantin Pastbin
2025-12-03 12:32:20 +07:00
parent c88f59eb75
commit 1bd734d417

View File

@@ -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": 3})
elif country == 'Taiwan_South':
kwargs.update({"threads_count": 2})
func(env, country, **kwargs)