aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2015-07-30 11:44:28 -0700
committerGravatar Vijay Pai <vpai@google.com>2015-07-30 11:44:28 -0700
commitc226edcadcff312b8db25288800958669ad31142 (patch)
tree6b4a7ec3177e021220122b35dbe7b00a7e1844fb /src
parentfdd0c923d15a0a0691a34e325c9d0fc7e431ea3e (diff)
parent9a009f2a759215d3cae7463d519a3421dcadcbdb (diff)
Merge pull request #2706 from yang-g/remove_get_from_accessor
make accessors from get_x() to x()
Diffstat (limited to 'src')
-rw-r--r--src/cpp/client/channel.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpp/client/channel.cc b/src/cpp/client/channel.cc
index da31d000b3..9c2b0b1dbc 100644
--- a/src/cpp/client/channel.cc
+++ b/src/cpp/client/channel.cc
@@ -69,7 +69,7 @@ Call Channel::CreateCall(const RpcMethod& method, ClientContext* context,
? target_.c_str()
: context->authority().c_str(),
context->raw_deadline());
- grpc_census_call_set_context(c_call, context->get_census_context());
+ grpc_census_call_set_context(c_call, context->census_context());
GRPC_TIMER_MARK(GRPC_PTAG_CPP_CALL_CREATED, c_call);
context->set_call(c_call, shared_from_this());
return Call(c_call, this, cq);