You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using Process.wait(timeout=0.1)
with a process that is still running during the timeout duration results in exception being thrown with wrong text, e.g. the timeout should be noted as "milliseconds" and not "seconds".
File "C:\Python34_64\lib\site-packages\psutil\_pswindows.py", line 665, in wait raise TimeoutExpired(timeout, self.pid, self._name) psutil.TimeoutExpired: psutil.TimeoutExpired timeout after 100 seconds (pid=72124, name='cmd.exe')
The text was updated successfully, but these errors were encountered:
Using
Process.wait(timeout=0.1)
with a process that is still running during the timeout duration results in exception being thrown with wrong text, e.g. the timeout should be noted as "milliseconds" and not "seconds".
File "C:\Python34_64\lib\site-packages\psutil\_pswindows.py", line 665, in wait raise TimeoutExpired(timeout, self.pid, self._name) psutil.TimeoutExpired: psutil.TimeoutExpired timeout after 100 seconds (pid=72124, name='cmd.exe')
The text was updated successfully, but these errors were encountered: