summaryrefslogtreecommitdiffstats
path: root/dcae-policy/dcaepolicyplugin
diff options
context:
space:
mode:
authorSchmalzried, Terry (ts862m) <ts862m@att.com>2019-11-14 13:07:56 -0500
committerSchmalzried, Terry (ts862m) <ts862m@att.com>2019-11-14 15:26:45 -0500
commit77e27adeab5ff155b690f2e058c06f0a7812e225 (patch)
treec67450b92793ba2b503ddc596188e8f1319f43fe /dcae-policy/dcaepolicyplugin
parent6b7857037b8c82471395a929aba950677693d151 (diff)
DCAEGEN2-1920 enhance policy plugin for error conditions
Issue-ID: DCAEGEN2-1920 Change-Id: I7e1b08cb008f60d7f08ed2db41236a03b8490287 Signed-off-by: Schmalzried, Terry (ts862m) <ts862m@att.com>
Diffstat (limited to 'dcae-policy/dcaepolicyplugin')
-rw-r--r--dcae-policy/dcaepolicyplugin/discovery.py6
-rw-r--r--dcae-policy/dcaepolicyplugin/tasks.py17
2 files changed, 14 insertions, 9 deletions
diff --git a/dcae-policy/dcaepolicyplugin/discovery.py b/dcae-policy/dcaepolicyplugin/discovery.py
index 0517377..8612160 100644
--- a/dcae-policy/dcaepolicyplugin/discovery.py
+++ b/dcae-policy/dcaepolicyplugin/discovery.py
@@ -1,5 +1,5 @@
# ================================================================================
-# Copyright (c) 2017-2018 AT&T Intellectual Property. All rights reserved.
+# Copyright (c) 2017-2019 AT&T Intellectual Property. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -40,7 +40,7 @@ def discover_service_url(service_name):
ctx.logger.info("getting service_url at {0}".format(service_url))
try:
- response = requests.get(service_url)
+ response = requests.get(service_url, timeout=60)
except requests.ConnectionError as ex:
raise NonRecoverableError(
"ConnectionError - failed to get {0}: {1}".format(service_url, str(ex)))
@@ -63,7 +63,7 @@ def discover_value(key):
ctx.logger.info("getting kv at {0}".format(kv_url))
try:
- response = requests.get(kv_url)
+ response = requests.get(kv_url, timeout=60)
except requests.ConnectionError as ex:
raise NonRecoverableError(
"ConnectionError - failed to get {0}: {1}".format(kv_url, str(ex)))
diff --git a/dcae-policy/dcaepolicyplugin/tasks.py b/dcae-policy/dcaepolicyplugin/tasks.py
index bbf3ec1..4e3b37a 100644
--- a/dcae-policy/dcaepolicyplugin/tasks.py
+++ b/dcae-policy/dcaepolicyplugin/tasks.py
@@ -1,5 +1,5 @@
# ================================================================================
-# Copyright (c) 2017-2018 AT&T Intellectual Property. All rights reserved.
+# Copyright (c) 2017-2019 AT&T Intellectual Property. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -94,7 +94,7 @@ class PolicyHandler(object):
ctx.logger.info("getting latest policy from {0} headers={1}".format(
ph_path, json.dumps(headers)))
- res = requests.get(ph_path, headers=headers)
+ res = requests.get(ph_path, headers=headers, timeout=60)
ctx.logger.info("latest policy for policy_id({0}) status({1}) response: {2}"
.format(policy_id, res.status_code, res.text))
@@ -117,7 +117,7 @@ class PolicyHandler(object):
ctx.logger.info("finding the latest polices from {0} by {1} headers={2}".format(
ph_path, json.dumps(policy_filter), json.dumps(headers)))
- res = requests.post(ph_path, json=policy_filter, headers=headers)
+ res = requests.post(ph_path, json=policy_filter, headers=headers, timeout=60)
ctx.logger.info("latest policies status({0}) response: {1}"
.format(res.status_code, res.text))
@@ -150,8 +150,7 @@ def _policy_get():
except Exception as ex:
error = "failed to get policy({0}): {1}".format(policy_id, str(ex))
ctx.logger.error("{0}: {1}".format(error, traceback.format_exc()))
- if policy_required:
- raise NonRecoverableError(error)
+ raise NonRecoverableError(error)
if not policy:
error = "policy not found for policy_id {0}".format(policy_id)
@@ -192,6 +191,8 @@ def _policies_find():
if DCAE_POLICIES_TYPE not in ctx.node.type_hierarchy:
return
+ policy_required = ctx.node.properties.get(POLICY_REQUIRED)
+
try:
policy_filter = copy.deepcopy(dict(
(k, v) for (k, v) in dict(ctx.node.properties.get(POLICY_FILTER, {})).iteritems()
@@ -205,7 +206,10 @@ def _policies_find():
policies_filtered = PolicyHandler.find_latest_policies(policy_filter)
if not policies_filtered:
- ctx.logger.info("policies not found by {0}".format(json.dumps(policy_filter)))
+ error = "policies not found by {0}".format(json.dumps(policy_filter))
+ ctx.logger.info(error)
+ if policy_required:
+ raise NonRecoverableError(error)
return True
ctx.logger.info("found policies by {0}: {1}".format(
@@ -216,6 +220,7 @@ def _policies_find():
except Exception as ex:
error = "failed to find policies: {0}".format(str(ex))
ctx.logger.error("{0}: {1}".format(error, traceback.format_exc()))
+ raise NonRecoverableError(error)
return True