소스 검색

Merge pull request #4109 from ewolinetz/fix_ocobj_absent

Merged by openshift-bot
OpenShift Bot 8 년 전
부모
커밋
3a8f805e13
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      roles/lib_openshift/library/oc_obj.py
  2. 1 1
      roles/lib_openshift/src/class/oc_obj.py

+ 1 - 1
roles/lib_openshift/library/oc_obj.py

@@ -1548,7 +1548,7 @@ class OCObject(OpenShiftCLI):
         if state == 'absent':
             # verify its not in our results
             if (params['name'] is not None or params['selector'] is not None) and \
-               (len(api_rval['results']) == 0 or len(api_rval['results'][0].getattr('items', [])) == 0):
+               (len(api_rval['results']) == 0 or len(api_rval['results'][0].get('items', [])) == 0):
                 return {'changed': False, 'state': state}
 
             if check_mode:

+ 1 - 1
roles/lib_openshift/src/class/oc_obj.py

@@ -117,7 +117,7 @@ class OCObject(OpenShiftCLI):
         if state == 'absent':
             # verify its not in our results
             if (params['name'] is not None or params['selector'] is not None) and \
-               (len(api_rval['results']) == 0 or len(api_rval['results'][0].getattr('items', [])) == 0):
+               (len(api_rval['results']) == 0 or len(api_rval['results'][0].get('items', [])) == 0):
                 return {'changed': False, 'state': state}
 
             if check_mode: