fix(daemon): decrease rate of runtime reconcile

This commit is contained in:
Alex Zenla 2024-06-30 23:25:48 -07:00
parent 350e02c553
commit baf184e2e0
No known key found for this signature in database
GPG Key ID: 067B238899B51269

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);
}