In Ansible 2.19, using the openstack driver with `auto_ip: False` results in an error because the "Wait for SSH" task gets `null` as a host to wait. This is cause by [this conditional](https://github.com/ansible-community/molecule-plugins/blob/v25.8.12/src/molecule_plugins/openstack/playbooks/tasks/server_addr.yml#L20) which evaluates to `False`, because the task setting this value now returns `None` rather than an empty string. The solution to this would be the change the conditional to `when: not address | bool`, which would work for both an empty string and `None`