diff --git a/src/flags/experimental.cpp b/src/flags/experimental.cpp index fdae4327c..8c29142a1 100644 --- a/src/flags/experimental.cpp +++ b/src/flags/experimental.cpp @@ -18,14 +18,15 @@ // Bolt server flags. // NOLINTNEXTLINE (cppcoreguidelines-avoid-non-const-global-variables) -DEFINE_string(experimental_enabled, "", - "Experimental features to be used, comma-separated. Options [system-replication, text-search, high-availability]"); +DEFINE_string( + experimental_enabled, "", + "Experimental features to be used, comma-separated. Options [system-replication, text-search, high-availability]"); using namespace std::string_view_literals; namespace memgraph::flags { auto const mapping = std::map{std::pair{"system-replication"sv, Experiments::SYSTEM_REPLICATION}, - std::pair{"text-search"sv, Experiments::TEXT_SEARCH}}, + std::pair{"text-search"sv, Experiments::TEXT_SEARCH}, std::pair{"high-availability"sv, Experiments::HIGH_AVAILABILITY}}; auto ExperimentsInstance() -> Experiments & {