Merge pull request #2108 from ashtasht/patch-1

Change isAlive() to is_alive() as isAlive() is unsupported in newer Python versions
This commit is contained in:
Noémi Ványi 2020-08-01 22:00:18 +02:00 committed by GitHub
commit 0e5197123d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ def search_multiple_requests(requests, result_container, start_time, timeout_lim
if th.name == search_id:
remaining_time = max(0.0, timeout_limit - (time() - start_time))
th.join(remaining_time)
if th.isAlive():
if th.is_alive():
result_container.add_unresponsive_engine(th._engine_name, 'timeout')
logger.warning('engine timeout: {0}'.format(th._engine_name))