aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2017-10-30 13:07:59 -0700
committerGravatar GitHub <noreply@github.com>2017-10-30 13:07:59 -0700
commit662ec97674dd0918f4db4c21f5f47038c535a9ba (patch)
tree2c606d9e167772eafc926f162033ef80739702c2 /src/core/lib
parent555b84506e22ecd5bc5cea0f2d3dcae3a1d8c108 (diff)
parent0e06c41c9cefe80ec2bae8a92bc0a0e2500af800 (diff)
Merge pull request #12878 from markdroth/pick_first_subchannel_list
Refactor subchannel_list code out of RR and use it in PF.
Diffstat (limited to 'src/core/lib')
-rw-r--r--src/core/lib/transport/connectivity_state.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/core/lib/transport/connectivity_state.cc b/src/core/lib/transport/connectivity_state.cc
index f328a6cdbb..652c26cf0a 100644
--- a/src/core/lib/transport/connectivity_state.cc
+++ b/src/core/lib/transport/connectivity_state.cc
@@ -29,8 +29,6 @@ grpc_tracer_flag grpc_connectivity_state_trace =
const char *grpc_connectivity_state_name(grpc_connectivity_state state) {
switch (state) {
- case GRPC_CHANNEL_INIT:
- return "INIT";
case GRPC_CHANNEL_IDLE:
return "IDLE";
case GRPC_CHANNEL_CONNECTING:
@@ -174,7 +172,6 @@ void grpc_connectivity_state_set(grpc_exec_ctx *exec_ctx,
grpc_connectivity_state_name(state), reason, error, error_string);
}
switch (state) {
- case GRPC_CHANNEL_INIT:
case GRPC_CHANNEL_CONNECTING:
case GRPC_CHANNEL_IDLE:
case GRPC_CHANNEL_READY: