diff --git a/test/cpp/interop/observability_client.cc b/test/cpp/interop/observability_client.cc index 38d23955d40..a37e4ab1fd5 100644 --- a/test/cpp/interop/observability_client.cc +++ b/test/cpp/interop/observability_client.cc @@ -357,16 +357,6 @@ int main(int argc, char** argv) { if (absl::GetFlag(FLAGS_enable_observability)) { grpc::experimental::GcpObservabilityClose(); - // TODO(stanleycheung): remove this once the observability exporter plugin - // is able to gracefully flush observability data to - // cloud at shutdown - const int observability_exporter_sleep_seconds = 65; - gpr_log(GPR_DEBUG, "Sleeping %ds before shutdown.", - observability_exporter_sleep_seconds); - gpr_sleep_until( - gpr_time_add(gpr_now(GPR_CLOCK_REALTIME), - gpr_time_from_seconds(observability_exporter_sleep_seconds, - GPR_TIMESPAN))); } return ret;