From 3299064898556a259de797515f2dd8bb291519fd Mon Sep 17 00:00:00 2001 From: "Varma, Vikas" Date: Tue, 18 Sep 2018 18:09:00 -0400 Subject: fixing a bug for aaf authentication Change-Id: Ic35f014a2bc9cf979dc533d496356c962e972bf4 Signed-off-by: Varma, Vikas Issue-ID: OPTFRA-339 Signed-off-by: Varma, Vikas --- osdf/webapp/appcontroller.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'osdf/webapp/appcontroller.py') 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: -- cgit 1.2.3-korg