Skip to content

Commit eae6b44

Browse files
committed
hedera app name is now set as default
Signed-off-by: Jeromy Cannon <[email protected]>
1 parent c7ce8eb commit eae6b44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commands/node.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,7 @@ export class NodeCommand extends BaseCommand {
806806
task: (ctx, task) => {
807807
const subTasks = []
808808
for (const nodeId of ctx.config.nodeIds) {
809-
if (self.configManager.getFlag(flags.app) !== '') {
809+
if (self.configManager.getFlag(flags.app) !== '' && self.configManager.getFlag(flags.app) !== constants.HEDERA_APP_NAME) {
810810
subTasks.push({
811811
title: `Check node: ${chalk.yellow(nodeId)}`,
812812
task: () => self.checkNetworkNodeState(nodeId, 100, 'ACTIVE', 'output/swirlds.log')
@@ -1193,7 +1193,7 @@ export class NodeCommand extends BaseCommand {
11931193
task: (ctx, task) => {
11941194
const subTasks = []
11951195
for (const nodeId of ctx.config.nodeIds) {
1196-
if (ctx.config.app !== '') {
1196+
if (ctx.config.app !== '' && ctx.config.app !== constants.HEDERA_APP_NAME) {
11971197
subTasks.push({
11981198
title: `Check node: ${chalk.yellow(nodeId)}`,
11991199
task: () => self.checkNetworkNodeState(nodeId, 100, 'ACTIVE', 'output/swirlds.log')

0 commit comments

Comments
 (0)