Fix cell enrollment wait conditional

Cast nova_discover_hosts_in_cells_interval to integer before
checking to see that it is < 1.

Change-Id: I94b18590f2e7c21a192da685aa8d9873d6eb8768
This commit is contained in:
Logan V
2017-02-21 23:05:48 -06:00
parent 9137145288
commit 6fc78d941c

View File

@@ -89,7 +89,7 @@
when: when:
- "{{ 'nova_compute' in group_names }}" - "{{ 'nova_compute' in group_names }}"
- "{{ nova_service_restart | default(dict(changed=False)) | changed }}" - "{{ nova_service_restart | default(dict(changed=False)) | changed }}"
- "{{ nova_discover_hosts_in_cells_interval < 1 }}" - "{{ nova_discover_hosts_in_cells_interval | int < 1 }}"
tags: tags:
- nova-config - nova-config