From 7e929fb78cdbb47f0e0fe5f022efd1ac402a09ff Mon Sep 17 00:00:00 2001 From: Paolo Date: Thu, 15 May 2025 11:30:19 +0200 Subject: [PATCH] Fix default settings for culler --- docs/topic/idle-culler.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/topic/idle-culler.md b/docs/topic/idle-culler.md index 89e400ac1..345611965 100644 --- a/docs/topic/idle-culler.md +++ b/docs/topic/idle-culler.md @@ -18,12 +18,12 @@ the idle culler configuration can be extended beyond tljh-config options, using ## Default settings -By default, JupyterHub will ping the user notebook servers every 60s to check their -status. Every server found to be idle for more than 10 minutes will be culled. +By default, JupyterHub will ping the user notebook servers every 10 min to check their +status. Every server found to be idle for more than 1 hour will be culled. ```python -services.cull.every = 60 -services.cull.timeout = 600 +services.cull.every = 600 +services.cull.timeout = 3600 ``` Because the servers don't have a maximum age set, an active server will not be shut down