We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5904696 commit c9505bfCopy full SHA for c9505bf
cli/pcluster/utils.py
@@ -422,7 +422,7 @@ def _get_master_server_ip(stack_name):
422
ip_address = instance.get("PrivateIpAddress")
423
state = instance.get("State").get("Name")
424
if state != "running" or ip_address is None:
425
- error("MasterServer: %s\nCannot get ip address.", state.upper())
+ error("MasterServer: {0}\nCannot get ip address.".format(state.upper()))
426
return ip_address
427
428
0 commit comments