ThreadPool should be terminated, not closed, otherwise it might hang

This commit is contained in:
allegroai 2020-04-09 12:47:38 +03:00
parent 9916c93ce0
commit 004f925454
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ from ...backend_api.services import events as api_events
from ..base import InterfaceBase
from ...config import config
from ...debugging import get_logger
from ...storage import StorageHelper
from ...storage.helper import StorageHelper
from .events import MetricsEventAdapter

View File

@ -964,7 +964,7 @@ class StorageHelper(object):
pool = StorageHelper._upload_pool
StorageHelper._upload_pool = None
try:
pool.close()
pool.terminate()
pool.join()
except:
pass