diff options
author | Mark D. Roth <roth@google.com> | 2016-08-02 10:05:17 -0700 |
---|---|---|
committer | Mark D. Roth <roth@google.com> | 2016-08-02 10:05:17 -0700 |
commit | 6e26952db4fc3eef2c764d1202281d8cdbb1975a (patch) | |
tree | 10ad005176bbca463c2f7afd90e25448247127ad /src/core/ext/census | |
parent | 9fd00425c50800906f4deb2c5aafa9b64217b54c (diff) | |
parent | 1e3fdbe7fd7831fe31b05a3da8044872564c4351 (diff) |
Merge remote-tracking branch 'upstream/master' into filter_call_init_failure
Diffstat (limited to 'src/core/ext/census')
-rw-r--r-- | src/core/ext/census/grpc_filter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/ext/census/grpc_filter.c b/src/core/ext/census/grpc_filter.c index 55046f4df8..9dacc17eb4 100644 --- a/src/core/ext/census/grpc_filter.c +++ b/src/core/ext/census/grpc_filter.c @@ -139,7 +139,7 @@ static grpc_error *client_init_call_elem(grpc_exec_ctx *exec_ctx, static void client_destroy_call_elem(grpc_exec_ctx *exec_ctx, grpc_call_element *elem, - const grpc_call_stats *stats, + const grpc_call_final_info *final_info, void *ignored) { call_data *d = elem->call_data; GPR_ASSERT(d != NULL); @@ -160,7 +160,7 @@ static grpc_error *server_init_call_elem(grpc_exec_ctx *exec_ctx, static void server_destroy_call_elem(grpc_exec_ctx *exec_ctx, grpc_call_element *elem, - const grpc_call_stats *stats, + const grpc_call_final_info *final_info, void *ignored) { call_data *d = elem->call_data; GPR_ASSERT(d != NULL); |