aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Zhou <tonyzhou@google.com>2024-03-28 10:14:42 +0800
committerTony Zhou <tonyzhou@google.com>2024-03-28 02:21:59 +0000
commit1d0cb3c4793b2d43f6ce4dc1e4d33cf12f60213e (patch)
treeaab015d301088f83bdd8815d2cf48c5743ab71fd
parent5f180108a775e25a4d7d4377fd95d4310357340c (diff)
downloadot-br-posix-1d0cb3c4793b2d43f6ce4dc1e4d33cf12f60213e.tar.gz
Increase the initial telemetry check interval to 600 second to avoid the conflict with factory load testing.
Bug: 330475956 Change-Id: Ic12e456438bf7b4327bd097c6afaf7737b9cde07
-rw-r--r--src/android/otdaemon_server.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/android/otdaemon_server.hpp b/src/android/otdaemon_server.hpp
index b24129c1..c514f297 100644
--- a/src/android/otdaemon_server.hpp
+++ b/src/android/otdaemon_server.hpp
@@ -171,7 +171,7 @@ private:
std::shared_ptr<IOtStatusReceiver> mMigrationReceiver;
std::vector<LeaveCallback> mLeaveCallbacks;
BorderRouterConfigurationParcel mBorderRouterConfiguration;
- static constexpr Seconds kTelemetryCheckInterval = Seconds(30); // 30 seconds
+ static constexpr Seconds kTelemetryCheckInterval = Seconds(600); // 600 seconds
static constexpr Seconds kTelemetryUploadIntervalThreshold = Seconds(60 * 60 * 12); // 12 hours
};