@@ -200,7 +200,7 @@ public func run<Result, Input: InputProtocol, Error: OutputProtocol>(
200
200
}
201
201
202
202
// Body runs in the same isolation
203
- let outputSequence = AsyncBufferSequence ( diskIO: outputIOBox. take ( ) !. consumeDiskIO ( ) , streamOptions : platformOptions . streamOptions )
203
+ let outputSequence = AsyncBufferSequence ( diskIO: outputIOBox. take ( ) !. consumeDiskIO ( ) )
204
204
let result = try await body ( execution, outputSequence)
205
205
try await group. waitForAll ( )
206
206
return result
@@ -250,7 +250,7 @@ public func run<Result, Input: InputProtocol, Output: OutputProtocol>(
250
250
}
251
251
252
252
// Body runs in the same isolation
253
- let errorSequence = AsyncBufferSequence ( diskIO: errorIOBox. take ( ) !. consumeDiskIO ( ) , streamOptions : platformOptions . streamOptions )
253
+ let errorSequence = AsyncBufferSequence ( diskIO: errorIOBox. take ( ) !. consumeDiskIO ( ) )
254
254
let result = try await body ( execution, errorSequence)
255
255
try await group. waitForAll ( )
256
256
return result
@@ -286,7 +286,7 @@ public func run<Result, Error: OutputProtocol>(
286
286
error: try error. createPipe ( )
287
287
) { execution, inputIO, outputIO, errorIO in
288
288
let writer = StandardInputWriter ( diskIO: inputIO!)
289
- let outputSequence = AsyncBufferSequence ( diskIO: outputIO!. consumeDiskIO ( ) , streamOptions : platformOptions . streamOptions )
289
+ let outputSequence = AsyncBufferSequence ( diskIO: outputIO!. consumeDiskIO ( ) )
290
290
return try await body ( execution, writer, outputSequence)
291
291
}
292
292
}
@@ -319,7 +319,7 @@ public func run<Result, Output: OutputProtocol>(
319
319
error: try error. createPipe ( )
320
320
) { execution, inputIO, outputIO, errorIO in
321
321
let writer = StandardInputWriter ( diskIO: inputIO!)
322
- let errorSequence = AsyncBufferSequence ( diskIO: errorIO!. consumeDiskIO ( ) , streamOptions : platformOptions . streamOptions )
322
+ let errorSequence = AsyncBufferSequence ( diskIO: errorIO!. consumeDiskIO ( ) )
323
323
return try await body ( execution, writer, errorSequence)
324
324
}
325
325
}
@@ -376,8 +376,8 @@ public func run<Result>(
376
376
error: try error. createPipe ( )
377
377
) { execution, inputIO, outputIO, errorIO in
378
378
let writer = StandardInputWriter ( diskIO: inputIO!)
379
- let outputSequence = AsyncBufferSequence ( diskIO: outputIO!. consumeDiskIO ( ) , streamOptions : platformOptions . streamOptions )
380
- let errorSequence = AsyncBufferSequence ( diskIO: errorIO!. consumeDiskIO ( ) , streamOptions : platformOptions . streamOptions )
379
+ let outputSequence = AsyncBufferSequence ( diskIO: outputIO!. consumeDiskIO ( ) )
380
+ let errorSequence = AsyncBufferSequence ( diskIO: errorIO!. consumeDiskIO ( ) )
381
381
return try await body ( execution, writer, outputSequence, errorSequence)
382
382
}
383
383
}
@@ -503,8 +503,8 @@ public func run<Result>(
503
503
error: try error. createPipe ( )
504
504
) { execution, inputIO, outputIO, errorIO in
505
505
let writer = StandardInputWriter ( diskIO: inputIO!)
506
- let outputSequence = AsyncBufferSequence ( diskIO: outputIO!. consumeDiskIO ( ) , streamOptions : configuration . platformOptions . streamOptions )
507
- let errorSequence = AsyncBufferSequence ( diskIO: errorIO!. consumeDiskIO ( ) , streamOptions : configuration . platformOptions . streamOptions )
506
+ let outputSequence = AsyncBufferSequence ( diskIO: outputIO!. consumeDiskIO ( ) )
507
+ let errorSequence = AsyncBufferSequence ( diskIO: errorIO!. consumeDiskIO ( ) )
508
508
return try await body ( execution, writer, outputSequence, errorSequence)
509
509
}
510
510
}
0 commit comments