Skip to content

Commit e2f177b

Browse files
committed
Formatting
1 parent 4501709 commit e2f177b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Sources/GRPCCore/Call/Client/Internal/ClientRPCExecutor+OneShotExecutor.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,9 @@ extension ClientRPCExecutor.OneShotExecutor {
9898
) async -> Result<R, any Error> {
9999
return await withTaskGroup(of: Void.self, returning: Result<R, any Error>.self) { group in
100100
do {
101-
return try await self.transport.withStream(descriptor: method, options: options) { stream, context in
101+
return try await self.transport.withStream(descriptor: method, options: options) {
102+
stream,
103+
context in
102104
let response = await ClientRPCExecutor._execute(
103105
in: &group,
104106
context: context,

0 commit comments

Comments
 (0)