aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/GRPCClient/private/GRPCHost.m
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2018-10-19 11:57:18 -0700
committerGravatar Muxi Yan <mxyan@google.com>2018-10-19 11:57:18 -0700
commit9f9141082bcd4167488780f93eeec8d40c17e007 (patch)
tree9fa25546f817dc5a479fb5fa6e63f116e272d804 /src/objective-c/GRPCClient/private/GRPCHost.m
parentcc9157a248e20a2f24972241ae1f2d41ea171a8b (diff)
compressAlgorithm->compressionAlgorithm
Diffstat (limited to 'src/objective-c/GRPCClient/private/GRPCHost.m')
-rw-r--r--src/objective-c/GRPCClient/private/GRPCHost.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/objective-c/GRPCClient/private/GRPCHost.m b/src/objective-c/GRPCClient/private/GRPCHost.m
index 5fe022a1ba..41d3bec4ef 100644
--- a/src/objective-c/GRPCClient/private/GRPCHost.m
+++ b/src/objective-c/GRPCClient/private/GRPCHost.m
@@ -102,7 +102,7 @@ static NSMutableDictionary *gHostCache;
GRPCMutableCallOptions *options = [[GRPCMutableCallOptions alloc] init];
options.userAgentPrefix = _userAgentPrefix;
options.responseSizeLimit = _responseSizeLimitOverride;
- options.compressAlgorithm = (GRPCCompressAlgorithm)_compressAlgorithm;
+ options.compressionAlgorithm = (GRPCCompressionAlgorithm)_compressAlgorithm;
options.enableRetry = _retryEnabled;
options.keepaliveInterval = (NSTimeInterval)_keepaliveInterval / 1000;
options.keepaliveTimeout = (NSTimeInterval)_keepaliveTimeout / 1000;