diff options
author | Mark D. Roth <roth@google.com> | 2016-09-30 09:49:50 -0700 |
---|---|---|
committer | Mark D. Roth <roth@google.com> | 2016-09-30 09:49:50 -0700 |
commit | 72d0b1615f5e1c19acf2b8f1b55339760f63e6ca (patch) | |
tree | 2088ffef4f582f290ed7320dcc78214460e1e02d /src/core/ext/client_config | |
parent | d51e0352c5460a0c050a026dd4d2c1b498ddb57f (diff) |
Change sockaddr resolver to allow setting method config via URI query params.
Diffstat (limited to 'src/core/ext/client_config')
-rw-r--r-- | src/core/ext/client_config/method_config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ext/client_config/method_config.c b/src/core/ext/client_config/method_config.c index 95efe492a9..1135a1c4c4 100644 --- a/src/core/ext/client_config/method_config.c +++ b/src/core/ext/client_config/method_config.c @@ -284,7 +284,7 @@ grpc_arg grpc_method_config_table_create_channel_arg( grpc_arg arg; arg.type = GRPC_ARG_POINTER; arg.key = GRPC_ARG_SERVICE_CONFIG; - arg.value.pointer.p = grpc_method_config_table_ref(table); + arg.value.pointer.p = table; arg.value.pointer.vtable = &arg_vtable; return arg; } |