disable counting timer (vercel/turbo#3122)

This commit is contained in:
Tobias Koppers 2022-12-22 03:35:30 +01:00 committed by GitHub
parent 16b5d73404
commit 63c6438a93

View file

@ -479,7 +479,7 @@ pub async fn start_server(options: &DevServerOptions) -> Result<()> {
loop {
let update_future = profile_timeout(
tt_clone.as_ref(),
tt_clone.update_info(Duration::from_millis(100), Duration::from_secs(1)),
tt_clone.update_info(Duration::from_millis(100), Duration::MAX),
);
if let Some((elapsed, count)) = update_future.await {