Skip to content
This repository was archived by the owner on May 3, 2023. It is now read-only.

Commit fb0a6d0

Browse files
committed
Log wording changes
1 parent 78effba commit fb0a6d0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

eks_node_rollout/eks_node_rollout.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -230,12 +230,12 @@ def rollout_nodes(cluster_name, dry_run, debug):
230230
add_time = datetime.datetime.now(datetime.timezone.utc)
231231
add_node(asg_client=asg_client, asg_name=asg_name, dry_run=dry_run)
232232
logging.info(f'Waiting for instance to be created...')
233-
logging.info(f'Sleeping 25s before polling.')
233+
logging.info(f'Sleeping 25s before polling for instance creation.')
234234
time.sleep(25) # new instance takes a bit to show up in API, don't bother polling yet
235235
latest_instance = get_latest_instance(asg_client=asg_client, ec2_client=ec2_client, asg_name=asg_name, add_time=add_time, dry_run=dry_run)
236236
latest_node_name = latest_instance["PrivateDnsName"]
237-
logging.info(f'Waiting for instance {latest_node_name} to be "Ready"...')
238-
logging.info(f'Sleeping 25s before polling.')
237+
logging.info(f'Waiting for node {latest_node_name} to be "Ready"...')
238+
logging.info(f'Sleeping 25s before polling for node to be "Ready".')
239239
time.sleep(35) # instance will never be ready before this, don't bother polling yet
240240
wait_for_ready_node(latest_node_name)
241241
logging.info(f'Node {latest_node_name} is now "Ready".')

0 commit comments

Comments
 (0)