Open OscartGiles opened 3 years ago
Could we return after the self.process = subprocess.Popen(...) and then do the while True loop the first time somebody calls extract()? By that point, we can't proceed until the server is up and running.
self.process = subprocess.Popen(...)
while True
extract()
I think that should do it
Could we return after the
self.process = subprocess.Popen(...)
and then do thewhile True
loop the first time somebody callsextract()
? By that point, we can't proceed until the server is up and running.