aboutsummaryrefslogtreecommitdiffstats
path: root/osdf/webapp/appcontroller.py
diff options
context:
space:
mode:
authorDileep Ranganathan <dileep.ranganathan@intel.com>2018-09-19 23:14:04 +0000
committerGerrit Code Review <gerrit@onap.org>2018-09-19 23:14:04 +0000
commit3adff074aceb0b73344820f97833d5526841c403 (patch)
treed770903b3c8e3bc3910acb1dedd6ec4a970b1515 /osdf/webapp/appcontroller.py
parentd7eb44a65b37000d5d30245e6ac26bd68827804d (diff)
parent3299064898556a259de797515f2dd8bb291519fd (diff)
Merge "fixing a bug for aaf authentication"
Diffstat (limited to 'osdf/webapp/appcontroller.py')
-rw-r--r--osdf/webapp/appcontroller.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/osdf/webapp/appcontroller.py b/osdf/webapp/appcontroller.py
index a56a53d..3a5385d 100644
--- a/osdf/webapp/appcontroller.py
+++ b/osdf/webapp/appcontroller.py
@@ -21,7 +21,7 @@ from flask_httpauth import HTTPBasicAuth
from flask import Response
import json
import osdf
-from osdf.config.base import http_basic_auth_credentials
+from osdf.config.base import http_basic_auth_credentials, osdf_config
from osdf.adapters.aaf import aaf_authentication as aaf_auth
auth_basic = HTTPBasicAuth()
@@ -50,7 +50,7 @@ def auth_error():
@auth_basic.verify_password
def verify_pw(username, password):
- is_aaf_enabled = osdf.deployment.get('is_aaf_enabled', False)
+ is_aaf_enabled = osdf_config.deployment.get('is_aaf_enabled', False)
if is_aaf_enabled:
return aaf_auth.authenticate(username, password)
else: