We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f247ca7 commit b2e13fbCopy full SHA for b2e13fb
services/publisher/src/history.rs
@@ -23,8 +23,8 @@ pub async fn process_historical_gaps_periodically(
23
shutdown: &Arc<ShutdownController>,
24
telemetry: &Arc<Telemetry<Metrics>>,
25
) -> Result<(), anyhow::Error> {
26
- // Run every 5 hours
27
- let mut interval = interval(Duration::from_secs(3600 * 5));
+ // Run every 3 days
+ let mut interval = interval(Duration::from_secs((3600 * 24) * 3));
28
29
loop {
30
if shutdown.token().is_cancelled() {
0 commit comments