Skip to content

Commit

Permalink
Merge pull request #60 from jackfrancis/vmss-prototype-log-errata
Browse files Browse the repository at this point in the history
fix: missing node name in log message
  • Loading branch information
Michael-Sinz authored Feb 4, 2021
2 parents b5c1070 + bc29eb7 commit 346aad4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vmss-prototype/vmss-prototype
Original file line number Diff line number Diff line change
Expand Up @@ -965,7 +965,7 @@ def get_candidate_nodes(vmss, nodes, node_ignore_names, node_ignore_annotations,
ready_time = int(mktime_from_kubernetes(condition['lastHeartbeatTime']) - mktime_from_kubernetes(condition['lastTransitionTime']))
break
if not ready_time:
logging.debug('IGNORED: Node {0} is not ready')
logging.debug('IGNORED: Node {0} is not ready'.format(node_name))
continue

if ready_time < minimum_ready_time:
Expand Down

0 comments on commit 346aad4

Please sign in to comment.