Bug 1547651 - [raptor] shutdown_browser() should not wait 15s before killing the browser. r=perftest-reviewers,stephendonner,rwood

Differential Revision: https://phabricator.services.mozilla.com/D30180

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Henrik Skupin 2019-07-08 17:50:57 +00:00
Родитель b636d3b494
Коммит 6b7efec04c
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -322,7 +322,7 @@ class RaptorControlServer():
LOG.info("shutting down android app %s" % self.app_name)
else:
LOG.info("shutting down browser (pid: %d)" % self.browser_proc.pid)
self.kill_thread = threading.Thread(target=self.wait_for_quit)
self.kill_thread = threading.Thread(target=self.wait_for_quit, kwargs={'timeout': 0})
self.kill_thread.daemon = True
self.kill_thread.start()