Skip to content
Snippets Groups Projects
Commit 9e51972d authored by Jorge Canizales's avatar Jorge Canizales
Browse files

grpc_init() is already called in GRPCWrappedCall

parent 597ef986
No related branches found
No related tags found
No related merge requests found
...@@ -107,11 +107,6 @@ NSString * const kGRPCStatusMetadataKey = @"io.grpc.StatusMetadataKey"; ...@@ -107,11 +107,6 @@ NSString * const kGRPCStatusMetadataKey = @"io.grpc.StatusMetadataKey";
format:@"The requests writer can't be already started."]; format:@"The requests writer can't be already started."];
} }
if ((self = [super init])) { if ((self = [super init])) {
static dispatch_once_t initialization;
dispatch_once(&initialization, ^{
grpc_init();
});
_completionQueue = [GRPCCompletionQueue completionQueue]; _completionQueue = [GRPCCompletionQueue completionQueue];
_channel = [GRPCChannel channelToHost:host]; _channel = [GRPCChannel channelToHost:host];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment