Merge pull request #15869 from ncteisen/fix-build

Disable Channelz connectivity_state Query for Now
pull/15872/head
Noah Eisen 7 years ago committed by GitHub
commit de06fc0049
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      src/core/lib/channel/channelz.cc

@ -113,7 +113,10 @@ grpc_connectivity_state ChannelNode::GetConnectivityState() {
if (channel_ == nullptr) {
return GRPC_CHANNEL_SHUTDOWN;
} else {
return grpc_channel_check_connectivity_state(channel_, false);
// TODO(ncteisen): re-enable this once we have cleaned up all of the
// internal dependency issues.
// return grpc_channel_check_connectivity_state(channel_, false);
return GRPC_CHANNEL_IDLE;
}
}

Loading…
Cancel
Save