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

Method finish

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

Source from the content-addressed store, hash-verified

195 return self._process.wait()
196
197 def finish(self):
198 retcode = self.wait()
199
200 if self.stdout is not None:
201 self.stdout.close()
202
203 if retcode != 0:
204 raise UserCritical(
205 msg='pipeline process did not exit gracefully',
206 detail='"{0}" had terminated with the exit status {1}.'
207 .format(" ".join(self._command), retcode))
208
209
210class PipeViewerRateLimitFilter(PipelineCommand):

Callers 2

__exit__Method · 0.80
test_rate_limitFunction · 0.80

Calls 5

waitMethod · 0.95
UserCriticalClass · 0.90
formatMethod · 0.80
closeMethod · 0.45
joinMethod · 0.45

Tested by 1

test_rate_limitFunction · 0.64