mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 06:49:47 +00:00
remove psutil
This commit is contained in:
@ -4,7 +4,6 @@ import socket
|
|||||||
import tempfile
|
import tempfile
|
||||||
import time
|
import time
|
||||||
import subprocess
|
import subprocess
|
||||||
import psutil
|
|
||||||
|
|
||||||
from .runner import NotImplementedByController
|
from .runner import NotImplementedByController
|
||||||
|
|
||||||
@ -84,7 +83,9 @@ class BaseServerController(_BaseController):
|
|||||||
def wait_for_port(self):
|
def wait_for_port(self):
|
||||||
while not self.port_open:
|
while not self.port_open:
|
||||||
time.sleep(0.1)
|
time.sleep(0.1)
|
||||||
for conn in psutil.Process(self.proc.pid).connections():
|
try:
|
||||||
if conn.laddr[1] == self.port:
|
c = socket.create_connection(('localhost', self.port), timeout=1.0)
|
||||||
self.port_open = True
|
c.close()
|
||||||
|
self.port_open = True
|
||||||
|
except Exception as e:
|
||||||
|
continue
|
||||||
|
@ -1 +0,0 @@
|
|||||||
psutil >= 3.1.0 # Fixes #640
|
|
Reference in New Issue
Block a user