()
| 352 | }; |
| 353 | |
| 354 | const getExecStream = () => { |
| 355 | execPromise ??= this.exec(writeCommand, { |
| 356 | cwd: this.getContainerBasePath(), |
| 357 | timeout: 300, |
| 358 | abortSignal: writeAbortController.signal, |
| 359 | }); |
| 360 | return execPromise; |
| 361 | }; |
| 362 | |
| 363 | return new WritableStream<Uint8Array>({ |
| 364 | write: async (chunk) => { |
nothing calls this directly
no test coverage detected