Skip to content

Commit

Permalink
Merge pull request #42 from minrk/token-typo
Browse files Browse the repository at this point in the history
typo in service tokens
  • Loading branch information
willingc committed Dec 6, 2016
2 parents b50259b + 1b15111 commit 8768a1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions roles/jupyterhub/templates/jupyterhub_config.py.j2
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@ c.JupyterHub.services = [
{
'name': 'formgrader',
'admin': True,
'token': '{{formgrader_hubapi_token}}',
'api_token': '{{formgrader_hubapi_token}}',
'url': 'http://127.0.0.1:{{nbgrader_port}}',
},
{% endif %}
{% if cull_idle_servers_hubapi_token %}
{
'name': 'cull_idle_servers',
'admin': True,
'token': '{{cull_idle_servers_hubapi_token}}',
'api_token': '{{cull_idle_servers_hubapi_token}}',
},
{% endif %}
]

0 comments on commit 8768a1d

Please sign in to comment.