Skip to content

Commit

Permalink
Fix the metrics collection end-date being in the past
Browse files Browse the repository at this point in the history
  • Loading branch information
jacquesh committed Aug 30, 2024
1 parent eb43762 commit 40cdee2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/metrics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ static cfg_int_t<uint64_t> cfg_metrics_generation(GUID_METRICS_GENERATION, 0);
// The metrics "generation", which tells us whether or not we need to send a new batch of metrics.
// Manually bump this when a new round of metrics collection is desired.
constexpr uint64_t current_metrics_generation = 3;
constexpr std::chrono::year_month_day last_metrics_collection_day = {std::chrono::year(2023), std::chrono::month(07), std::chrono::day(10)};
constexpr std::chrono::year_month_day last_metrics_collection_day = {std::chrono::year(2025), std::chrono::month(01), std::chrono::day(01)};

class FeatureTracker;
std::vector<FeatureTracker*> g_all_feature_trackers;
Expand Down

0 comments on commit 40cdee2

Please sign in to comment.