Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 452f5055 authored by Ken Chen's avatar Ken Chen Committed by Automerger Merge Worker
Browse files

Merge "Sort experiment flags in alphabet order" am: d335fa7d am: c1517c40...

Merge "Sort experiment flags in alphabet order" am: d335fa7d am: c1517c40 am: 46b369f1 am: ea4c78b6

Original change: https://android-review.googlesource.com/c/platform/packages/modules/DnsResolver/+/2180535



Change-Id: I4af4b25ba9e574e53d69c558e8840d312f45f81a
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 5d9e3695 ea4c78b6
Loading
Loading
Loading
Loading
+8 −9
Original line number Diff line number Diff line
@@ -46,23 +46,22 @@ class Experiments {
    void updateInternal() EXCLUDES(mMutex);
    mutable std::mutex mMutex;
    std::map<std::string_view, int> mFlagsMapInt GUARDED_BY(mMutex);
    // Sort the list by alphabet ordering.
    static constexpr const char* const kExperimentFlagKeyList[] = {
            "doh",
            "doh_early_data",
            "doh_idle_timeout_ms",
            "doh_probe_timeout_ms",
            "doh_query_timeout_ms",
            "doh_session_resumption",
            "dot_async_handshake",
            "dot_connect_timeout_ms",
            "dot_maxtries",
            "dot_revalidation_threshold",
            "dot_xport_unusable_threshold",
            "dot_query_timeout_ms",
            "dot_quick_fallback",
            "dot_revalidation_threshold",
            "dot_validation_latency_factor",
            "dot_validation_latency_offset_ms",
            "doh",
            "doh_early_data",
            "doh_query_timeout_ms",
            "doh_probe_timeout_ms",
            "doh_idle_timeout_ms",
            "doh_session_resumption",
            "dot_xport_unusable_threshold",
            "keep_listening_udp",
            "max_queries_global",
            "mdns_resolution",