Skip to content

Commit

Permalink
don't overwrite single user PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
sebranchett committed Nov 15, 2023
1 parent da3ea46 commit faa1b6b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hub_docker/jupyterhub_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@
{
'name': name,
'value': value,
} for name, value in spawner.get_env().items()
} for name, value in
([n, v] for [n, v] in spawner.get_env().items() if n != 'PATH')
],
'name': os.environ.get('FARGATE_SPAWNER_CONTAINER_NAME')
}],
Expand Down

0 comments on commit faa1b6b

Please sign in to comment.