Skip to content

Commit

Permalink
Merge pull request jupyter-server#390 from datalayer-contrib/auth/jup…
Browse files Browse the repository at this point in the history
…yter_server_config

Use jupyter_server_config.json as config file in the update password api
  • Loading branch information
echarles authored Jan 19, 2021
2 parents c4af17a + a8b6af7 commit c05e65d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyter_server/auth/login.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def post(self):
if new_password and self.settings.get("allow_password_change"):
config_dir = self.settings.get("config_dir")
config_file = os.path.join(
config_dir, "jupyter_notebook_config.json"
config_dir, "jupyter_server_config.json"
)
set_password(new_password, config_file=config_file)
self.log.info("Wrote hashed password to %s" % config_file)
Expand Down

0 comments on commit c05e65d

Please sign in to comment.