Skip to content

Commit 8f6c59a

Browse files
committed
fix: undefined property
Signed-off-by: Ivo Yankov <[email protected]>
1 parent f178e53 commit 8f6c59a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/commands/node/tasks.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ export class NodeCommandTasks {
316316
config.existingNodeAliases = []
317317
config.serviceMap = await this.accountManager.getNodeServiceMap(config.namespace)
318318
for (/** @type {NetworkNodeServices} **/ const networkNodeServices of config.serviceMap.values()) {
319-
config.existingNodeAliases.push(networkNodeServices.nodeName)
319+
config.existingNodeAliases.push(networkNodeServices.nodeAlias)
320320
}
321321
config.allNodeAliases = [...config.existingNodeAliases]
322322
return this.taskCheckNetworkNodePods(ctx, task, config.existingNodeAliases)

0 commit comments

Comments
 (0)