#Centipede Temporarily restore old stats dump frequency to fix external tests PiperOrigin-RevId: 656518686
diff --git a/centipede/centipede_interface.cc b/centipede/centipede_interface.cc index 73dcb09..45275b4 100644 --- a/centipede/centipede_interface.cc +++ b/centipede/centipede_interface.cc
@@ -210,7 +210,10 @@ PeriodicAction::Options{ .sleep_before_each = [](size_t iteration) { - return absl::Minutes(std::clamp(iteration, 0UL, 10UL)); + // TODO(ussuri): Switch to the commented-out version after + // fixing `PeriodicAction::Nudge()`. + // return absl::Minutes(std::clamp(iteration, 0UL, 10UL)); + return absl::Seconds(std::clamp(iteration, 5UL, 600UL)); }, }); if (!envs.front().experiment.empty() || ABSL_VLOG_IS_ON(1)) {