Add flag count for gfe2_restart_flag_quic_lazy_quic_version_manager. PiperOrigin-RevId: 395296196
diff --git a/quic/core/quic_version_manager.cc b/quic/core/quic_version_manager.cc index a7b7426..573d6d1 100644 --- a/quic/core/quic_version_manager.cc +++ b/quic/core/quic_version_manager.cc
@@ -31,7 +31,9 @@ allowed_supported_versions_(std::move(supported_versions)) { static_assert(SupportedVersions().size() == 6u, "Supported versions out of sync"); - if (!lazy_) { + if (lazy_) { + QUIC_RESTART_FLAG_COUNT(quic_lazy_quic_version_manager); + } else { RefilterSupportedVersions(); } }