We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
subprocess.TimeoutExpired
Popen.wait()
1 parent 1c72078 commit 1d459cdCopy full SHA for 1d459cd
1 file changed
py/selenium/webdriver/common/service.py
@@ -174,7 +174,7 @@ def _terminate_process(self) -> None:
174
self.process.terminate()
175
try:
176
self.process.wait(60)
177
- except subprocess.TimeoutError:
+ except subprocess.TimeoutExpired:
178
logger.error(
179
"Service process refused to terminate gracefully with SIGTERM, escalating to SIGKILL.",
180
exc_info=True,
0 commit comments