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

Method start

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

Source from the content-addressed store, hash-verified

142 self._process = None
143
144 def start(self):
145 if self._process is not None:
146 raise UserCritical(
147 'BUG: Tried to .start on a PipelineCommand twice')
148
149 self._process = popen_sp(self._command,
150 stdin=self._stdin, stdout=self._stdout,
151 close_fds=True)
152
153 @property
154 def stdin(self):

Callers 2

__enter__Method · 0.45
test_rate_limitFunction · 0.45

Calls 1

UserCriticalClass · 0.90

Tested by 1

test_rate_limitFunction · 0.36