aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/GRPCClient/private/GRPCWrappedCall.m
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2018-11-14 17:59:30 -0800
committerGravatar Muxi Yan <mxyan@google.com>2018-11-14 17:59:30 -0800
commit2bd38f29df16b874bea254e001e3c40d6945c28c (patch)
tree6786a741cfad16e2f41c96b02ee8937494c2cc9b /src/objective-c/GRPCClient/private/GRPCWrappedCall.m
parente023468e9a82a4338e30e57ab822c86406480b94 (diff)
Batch fixes
Diffstat (limited to 'src/objective-c/GRPCClient/private/GRPCWrappedCall.m')
-rw-r--r--src/objective-c/GRPCClient/private/GRPCWrappedCall.m7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/objective-c/GRPCClient/private/GRPCWrappedCall.m b/src/objective-c/GRPCClient/private/GRPCWrappedCall.m
index 2358c7bb0a..f3fe8bac45 100644
--- a/src/objective-c/GRPCClient/private/GRPCWrappedCall.m
+++ b/src/objective-c/GRPCClient/private/GRPCWrappedCall.m
@@ -30,6 +30,7 @@
#import "NSData+GRPC.h"
#import "NSDictionary+GRPC.h"
#import "NSError+GRPC.h"
+#import "utilities.h"
#import "GRPCOpBatchLog.h"
@@ -248,16 +249,14 @@
- (instancetype)initWithHost:(NSString *)host
path:(NSString *)path
callOptions:(GRPCCallOptions *)callOptions {
- if (host.length == 0 || path.length == 0) {
- [NSException raise:NSInvalidArgumentException format:@"path and host cannot be nil."];
- }
+ GRPCAssert(host.length != 0 && path.length != 0, NSInvalidArgumentException, @"path and host cannot be nil.");
if ((self = [super init])) {
// Each completion queue consumes one thread. There's a trade to be made between creating and
// consuming too many threads and having contention of multiple calls in a single completion
// queue. Currently we use a singleton queue.
_queue = [GRPCCompletionQueue completionQueue];
- BOOL disconnected;
+ BOOL disconnected = NO;
do {
_channel = [[GRPCChannelPool sharedInstance] channelWithHost:host callOptions:callOptions];
if (_channel == nil) {