mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-07 10:04:07 +00:00
12 lines
213 B
Python
12 lines
213 B
Python
import sys
|
|
|
|
# run cull-idle as a service
|
|
|
|
c.JupyterHub.services = [
|
|
{
|
|
'name': 'cull-idle',
|
|
'admin': True,
|
|
'command': [sys.executable, 'cull_idle_servers.py', '--timeout=3600'],
|
|
}
|
|
]
|