From 8ef1a5f3a99af9976b433fffcb46d50581127961 Mon Sep 17 00:00:00 2001 From: hai007 Date: Tue, 4 Oct 2022 14:07:19 -0700 Subject: [PATCH] Fix Throughput Profiling Nightly Sanitizer Analysis test case error PiperOrigin-RevId: 478878990 --- connections/implementation/analytics/throughput_recorder.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connections/implementation/analytics/throughput_recorder.h b/connections/implementation/analytics/throughput_recorder.h index 2f26be52..312c3b67 100644 --- a/connections/implementation/analytics/throughput_recorder.h +++ b/connections/implementation/analytics/throughput_recorder.h @@ -93,7 +93,7 @@ class ThroughputRecorder { int64_t payload_id_; absl::Time start_timestamp_; PayloadType payload_type_ = PayloadType::kUnknown; - bool is_incoming_; + bool is_incoming_ = false; absl::flat_hash_map throughputs_ ABSL_GUARDED_BY(mutex_); bool success_ = false;