(self, path, metadata)
| 4349 | # the test. |
| 4350 | class GatingFs(ProxyHandler): |
| 4351 | def open_output_stream(self, path, metadata): |
| 4352 | # Block until the end of the test |
| 4353 | consumer_gate.wait() |
| 4354 | return self._fs.open_output_stream(path, metadata=metadata) |
| 4355 | gating_fs = fs.PyFileSystem(GatingFs(fs.LocalFileSystem())) |
| 4356 | |
| 4357 | schema = pa.schema([pa.field('data', pa.int32())]) |
no outgoing calls
no test coverage detected