Fixed the config dir and default policy scope 15/49615/1 2.0.0-ONAP 2.0.0-ONAP
authorPatel, Ankitkumar <ankit@research.att.com>
Wed, 30 May 2018 20:56:02 +0000 (16:56 -0400)
committerPatel, Ankitkumar <ankit@research.att.com>
Wed, 30 May 2018 20:57:20 +0000 (16:57 -0400)
Fixed the config dir and default policy scope

Issue-ID: OPTFRA-247
Change-Id: Ie15aaaa7ac6357ddc9fc0dc262591e844001d927
Signed-off-by: Patel, Ankitkumar <ankit@research.att.com>
osdf/adapters/policy/interface.py
osdfapp.sh

index dbbf122..95bfacc 100644 (file)
@@ -57,7 +57,8 @@ def get_by_scope(rest_client, req, config_local, type_service):
     references = config_local.get('references', {})
     pscope = config_local.get('policy_info', {}).get(type_service, {}).get('policy_scope', {})
     service_name = dot_notation(req, references.get('service_name', {}).get('value', None))
-    primary_scope = pscope['{}_scope'.format(service_name.lower() if service_name else "default")]
+    primary_scope = pscope['{}_scope'.format(service_name.lower() if pscope.get(service_name + "_scope", None)
+                                             else "default")]
     for sec_scope in pscope.get('secondary_scopes', []):
         policies, scope_fields = [], []
         for field in sec_scope:
index aa0aba5..0e1846a 100755 (executable)
@@ -25,7 +25,7 @@ cd $(dirname $0)
 LOGS=logs
 mkdir -p $LOGS
 
-export OSDF_CONFIG_FILE=${1:-/opt/app/osdf_config.yaml}  # this file may be passed by invoker
+export OSDF_CONFIG_FILE=${1:-/opt/app/config/osdf_config.yaml}  # this file may be passed by invoker
 [ ! -e "$OSDF_CONFIG_FILE" ] && unset OSDF_CONFIG_FILE
 
 python osdfapp.py 2>$LOGS/err.log 1>$LOGS/out.log < /dev/null  # running the app