diff options
author | Kenny Woodson <kwoodson@redhat.com> | 2017-01-27 09:25:57 -0500 |
---|---|---|
committer | Kenny Woodson <kwoodson@redhat.com> | 2017-01-27 09:25:57 -0500 |
commit | 8a95bb14d811f0e7fbb9f6504d1b66f78adfd877 (patch) | |
tree | 6d504b5fd16163b493a7bf897908f33e9e9adb75 /roles/lib_openshift/library | |
parent | 8f2b3f132bc6cd03640c31c0c33cffb01f80138c (diff) | |
download | openshift-8a95bb14d811f0e7fbb9f6504d1b66f78adfd877.tar.gz openshift-8a95bb14d811f0e7fbb9f6504d1b66f78adfd877.tar.bz2 openshift-8a95bb14d811f0e7fbb9f6504d1b66f78adfd877.tar.xz openshift-8a95bb14d811f0e7fbb9f6504d1b66f78adfd877.zip |
Adding fix for when the resource does not exist. Added test cases.
Diffstat (limited to 'roles/lib_openshift/library')
-rw-r--r-- | roles/lib_openshift/library/oc_scale.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/roles/lib_openshift/library/oc_scale.py b/roles/lib_openshift/library/oc_scale.py index 6ae85e220..1259c5711 100644 --- a/roles/lib_openshift/library/oc_scale.py +++ b/roles/lib_openshift/library/oc_scale.py @@ -1644,6 +1644,8 @@ class OCScale(OpenShiftCLI): state = params['state'] api_rval = oc_scale.get() + if api_rval['returncode'] != 0: + return {'failed': True, 'msg': api_rval} ##### # Get |