Skip to content

Fix default settings for culler instructions #1035

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/topic/idle-culler.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down