fix(daemon): decrease rate of runtime reconcile (#224)

This commit is contained in:
Alex Zenla 2024-07-01 02:09:50 -07:00 committed by GitHub
parent 350e02c553
commit 71301ee689
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -127,7 +127,7 @@ impl GuestReconciler {
}
},
_ = sleep(Duration::from_secs(5)) => {
_ = sleep(Duration::from_secs(15)) => {
if let Err(error) = self.reconcile_runtime(false).await {
error!("runtime reconciler failed: {}", error);
}