mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-07 18:14:10 +00:00
9 lines
194 B
Python
9 lines
194 B
Python
# run cull-idle as a service
|
|
c.JupyterHub.services = [
|
|
{
|
|
'name': 'cull-idle',
|
|
'admin': True,
|
|
'command': 'python cull_idle_servers.py --timeout=3600'.split(),
|
|
}
|
|
]
|