aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/GRPCClient/private/GRPCChannelPool.h
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2018-10-23 10:53:11 -0700
committerGravatar Muxi Yan <mxyan@google.com>2018-10-23 10:53:11 -0700
commit3c8e9886aca311ee2b26e7f7ef827ac7efb42716 (patch)
tree57791195bc00be318f79e93f75dba8bf5fb4e6fd /src/objective-c/GRPCClient/private/GRPCChannelPool.h
parent8986cfe6259fe7efc6ad438abb9e904f190c0515 (diff)
Mark channelArg as copy
Diffstat (limited to 'src/objective-c/GRPCClient/private/GRPCChannelPool.h')
-rw-r--r--src/objective-c/GRPCClient/private/GRPCChannelPool.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/objective-c/GRPCClient/private/GRPCChannelPool.h b/src/objective-c/GRPCClient/private/GRPCChannelPool.h
index 43e07b9845..2244361df2 100644
--- a/src/objective-c/GRPCClient/private/GRPCChannelPool.h
+++ b/src/objective-c/GRPCClient/private/GRPCChannelPool.h
@@ -45,7 +45,7 @@ NS_ASSUME_NONNULL_BEGIN
@property(readonly) id<GRPCChannelFactory> channelFactory;
/** Acquire the dictionary of channel args with current configurations. */
-@property(readonly) NSDictionary *channelArgs;
+@property(copy, readonly) NSDictionary *channelArgs;
- (nullable instancetype)initWithHost:(NSString *)host callOptions:(GRPCCallOptions *)callOptions;