Fix build and sanity

reviewable/pr13883/r6
ncteisen 7 years ago
parent 72c443187b
commit c1284576f8
  1. 2
      src/ruby/ext/grpc/rb_grpc_imports.generated.h
  2. 3
      test/core/util/channel_tracing_utils.cc

@ -179,7 +179,7 @@ extern grpc_lame_client_channel_create_type grpc_lame_client_channel_create_impo
typedef void(*grpc_channel_destroy_type)(grpc_channel* channel);
extern grpc_channel_destroy_type grpc_channel_destroy_import;
#define grpc_channel_destroy grpc_channel_destroy_import
typedef char*(*grpc_channel_get_trace_type)(grpc_channel* channel, bool recursive);
typedef char*(*grpc_channel_get_trace_type)(grpc_channel* channel);
extern grpc_channel_get_trace_type grpc_channel_get_trace_import;
#define grpc_channel_get_trace grpc_channel_get_trace_import
typedef intptr_t(*grpc_channel_get_uuid_type)(grpc_channel* channel);

@ -49,8 +49,7 @@ void validate_channel_trace_data(grpc_json* json,
size_t num_events_logged_expected,
size_t actual_num_events_expected) {
GPR_ASSERT(json);
grpc_json* num_events_logged_json =
get_json_child(json, "num_events_logged");
grpc_json* num_events_logged_json = get_json_child(json, "num_events_logged");
GPR_ASSERT(num_events_logged_json);
grpc_json* start_time = get_json_child(json, "creation_time");
GPR_ASSERT(start_time);

Loading…
Cancel
Save