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