When using the InsecureClient it does not correctly create async channel. After establishing a channel with fake_credentials the following code defaults to using a sync connection:
insecure_channel = grpc.insecure_channel(target, options, compression)
The class method create_channel switches automatically between grpc. and grpc.aio. Should this behaviour also apply in the insecure client?
When using the InsecureClient it does not correctly create async channel. After establishing a channel with fake_credentials the following code defaults to using a sync connection:
insecure_channel = grpc.insecure_channel(target, options, compression)The class method
create_channelswitches automatically between grpc. and grpc.aio. Should this behaviour also apply in the insecure client?