MCPcopy Create free account
hub / github.com/wal-e/wal-e / wait

Method wait

wal_e/pipeline.py:188–195  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

186 return self._process.returncode
187
188 def wait(self):
189 while True:
190 if self._process.poll() is not None:
191 break
192 else:
193 sleep(0.1)
194
195 return self._process.wait()
196
197 def finish(self):
198 retcode = self.wait()

Callers 7

finishMethod · 0.95
pipe_waitFunction · 0.80
external_program_checkFunction · 0.80
__exit__Method · 0.80
pipeline_waitFunction · 0.80
invoke_programFunction · 0.80
invokeFunction · 0.80

Calls

no outgoing calls

Tested by 3

pipeline_waitFunction · 0.64
invoke_programFunction · 0.64
invokeFunction · 0.64