You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let (host, port) = address.convertAddress()
let useTLS = (port == 443)
let group = MultiThreadedEventLoopGroup(numberOfThreads: 1)
let builder = useTLS ? ClientConnection.usingTLSBackedByNIOSSL(on: group) : ClientConnection.insecure(group: group)
let channel = builder.connect(host: host, port: port)
channel.connectivity.delegate = self
We upgraded from grpc0.x to grpc1.7. When the v0.x sends multiple requests at the same time, it will not affect each other when an error occurs, and the v1.7 will call back all 'Transport became inactive' after the error occurs.
Is this normal? I expect multiple requests to not affect each other.