Skip to content

Commit

Permalink
Merge ff6a4b9 into c2ac96c
Browse files Browse the repository at this point in the history
  • Loading branch information
johng42 committed Apr 10, 2019
2 parents c2ac96c + ff6a4b9 commit 32ba74a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tabpy-server/tabpy_server/app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,9 @@ def set_parameter(settings_key,
self.settings[ConfigParameters.TABPY_PWD_FILE],
RuntimeError)
else:
logger.info("Password file is not specified")
logger.info(
"Password file is not specified: "
"Authentication is not enabled")

features = self._get_features()
self.settings['versions'] = {'v1': {'features': features}}
Expand Down
1 change: 1 addition & 0 deletions tabpy-server/tabpy_server/app/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,5 @@ def parse_pwd_file(pwd_file_name):
.format(row[0]))
return False, {}

logger.info("Authentication is enabled")
return True, credentials

0 comments on commit 32ba74a

Please sign in to comment.