Skip to content

Commit

Permalink
fix: undefined property
Browse files Browse the repository at this point in the history
Signed-off-by: Ivo Yankov <[email protected]>
  • Loading branch information
Ivo-Yankov committed Oct 3, 2024
1 parent f178e53 commit 8f6c59a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/node/tasks.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ export class NodeCommandTasks {
config.existingNodeAliases = []
config.serviceMap = await this.accountManager.getNodeServiceMap(config.namespace)
for (/** @type {NetworkNodeServices} **/ const networkNodeServices of config.serviceMap.values()) {
config.existingNodeAliases.push(networkNodeServices.nodeName)
config.existingNodeAliases.push(networkNodeServices.nodeAlias)
}
config.allNodeAliases = [...config.existingNodeAliases]
return this.taskCheckNetworkNodePods(ctx, task, config.existingNodeAliases)
Expand Down

0 comments on commit 8f6c59a

Please sign in to comment.