diff --git a/backend/app.py b/backend/app.py
index b52802995bc37c158e3b0c4ff18b9017b55e2981..ddb226c979350081a16866bcbf1efaa0e050329d 100644
--- a/backend/app.py
+++ b/backend/app.py
@@ -136,7 +136,7 @@ def init_routines():
     # Add a job to run the provisioning reconciliation routine regularly.
     # We'll also run it when we make changes that should be propagated
     # immediately.
-    scheduler.add_job(helpers.threads.request_provision, 'interval', id='provision', minutes=5)
+    scheduler.add_job(helpers.threads.request_provision, 'interval', id='provision', hours=24)
     # We'll run this in a separate thread so it can be done in the background.
     # We have this single "provisioning worker" so there will be only one
     # provisioning operation at a time. We use an Event to signal a