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 1af1a28 commit 2c3e9d8Copy full SHA for 2c3e9d8
turbopack/crates/turbo-tasks-backend/src/backend/mod.rs
@@ -2124,8 +2124,8 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {
2124
let last_snapshot = self.last_snapshot.load(Ordering::Relaxed);
2125
let mut last_snapshot = self.start_time + Duration::from_millis(last_snapshot);
2126
loop {
2127
- const FIRST_SNAPSHOT_WAIT: Duration = Duration::from_secs(60);
2128
- const SNAPSHOT_INTERVAL: Duration = Duration::from_secs(30);
+ const FIRST_SNAPSHOT_WAIT: Duration = Duration::from_secs(300);
+ const SNAPSHOT_INTERVAL: Duration = Duration::from_secs(120);
2129
const IDLE_TIMEOUT: Duration = Duration::from_secs(2);
2130
2131
let time = if id == BACKEND_JOB_INITIAL_SNAPSHOT {
0 commit comments