mirror of
https://github.com/jupyterhub/the-littlest-jupyterhub.git
synced 2025-12-18 21:54:05 +08:00
Use jupyterhub_config.d rather than config.d for overrides
Makes it clearer that these are jupyterhub_config.py snippets rather than config.yaml snippets
This commit is contained in:
@@ -50,6 +50,6 @@ configurer.apply_config(config_overrides, c)
|
|||||||
|
|
||||||
# Load arbitrary .py config files if they exist.
|
# Load arbitrary .py config files if they exist.
|
||||||
# This is our escape hatch
|
# This is our escape hatch
|
||||||
extra_configs = sorted(glob(os.path.join(INSTALL_PREFIX, 'config.d', '*.py')))
|
extra_configs = sorted(glob(os.path.join(INSTALL_PREFIX, 'jupyterhub_config.d', '*.py')))
|
||||||
for ec in extra_configs:
|
for ec in extra_configs:
|
||||||
load_subconfig(ec)
|
load_subconfig(ec)
|
||||||
|
|||||||
Reference in New Issue
Block a user