diff --git a/ansible_collections/f5networks/f5_modules/plugins/modules/bigip_provision.py b/ansible_collections/f5networks/f5_modules/plugins/modules/bigip_provision.py index f64b88377..621643fcb 100644 --- a/ansible_collections/f5networks/f5_modules/plugins/modules/bigip_provision.py +++ b/ansible_collections/f5networks/f5_modules/plugins/modules/bigip_provision.py @@ -900,7 +900,7 @@ def _wait_for_asm_ready(self): else: raise F5ModuleError(resp.content) - if len(response['items']) >= 0: + if len(response['items']) > 0: nops += 1 else: nops = 0 @@ -938,7 +938,7 @@ def _wait_for_afm_ready(self): else: raise F5ModuleError(resp.content) - if len(response['items']) >= 0: + if len(response['items']) > 0: nops += 1 else: nops = 0 @@ -974,7 +974,7 @@ def _wait_for_cgnat_ready(self): else: raise F5ModuleError(resp.content) - if len(response['items']) >= 0: + if len(response['items']) > 0: nops += 1 else: nops = 0 @@ -1010,7 +1010,7 @@ def _wait_for_mgmt_ready(self): else: raise F5ModuleError(resp.content) - if len(response['items']) >= 0: + if len(response['items']) > 0: nops += 1 else: nops = 0