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:
yuvipanda
2018-08-01 02:47:44 -07:00
parent 3124cf1f80
commit edfbbd8ae9

View File

@@ -50,6 +50,6 @@ configurer.apply_config(config_overrides, c)
# Load arbitrary .py config files if they exist.
# 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:
load_subconfig(ec)