-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Labels
kind/supportAdopter support requests.Adopter support requests.status/triageCollecting information required to triage the issue.Collecting information required to triage the issue.
Description
I write test on my function in application, and use template func - ` func withInProcessClientConnectedToServer(
services: [any RegistrableRPCService],
interceptorPipeline: [ConditionalInterceptor] = [],
_ body: (InProcessTransport.Client, GRPCServer<InProcessTransport.Server>) async throws -> Void
) async throws {
let inProcess = InProcessTransport()
try await withGRPCServer(
transport: inProcess.server,
services: services,
interceptorPipeline: interceptorPipeline
) { server in
try await withThrowingTaskGroup(of: Void.self) { group in
group.addTask {
try await inProcess.client.connect()
}
try await body(inProcess.client, server)
inProcess.client.beginGracefulShutdown()
}
}
}` but when I use this code in my application I have this warning




Metadata
Metadata
Assignees
Labels
kind/supportAdopter support requests.Adopter support requests.status/triageCollecting information required to triage the issue.Collecting information required to triage the issue.