Files
jupyterhub/examples/cull-idle/jupyterhub_config.py
2016-08-27 13:23:45 +02:00

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(),
}
]