mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-05 07:54:00 -07:00
XenServer: Minor changes to error messages (#54434)
Changed "." for "!" in some error messages to make error messages uniform across the code.
This commit is contained in:
parent
5ccad0a3c5
commit
54d23a8297
3 changed files with 7 additions and 7 deletions
|
@ -712,7 +712,7 @@ def wait_for_vm_ip_address(module, vm_ref, timeout=300):
|
|||
vm_power_state = xapi_to_module_vm_power_state(xapi_session.xenapi.VM.get_power_state(vm_ref).lower())
|
||||
|
||||
if vm_power_state != 'poweredon':
|
||||
module.fail_json(msg="Cannot wait for VM IP address when VM is in state '%s'." % vm_power_state)
|
||||
module.fail_json(msg="Cannot wait for VM IP address when VM is in state '%s'!" % vm_power_state)
|
||||
|
||||
interval = 2
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue