Skip to content

Commit 5c50579

Browse files
fix: the wrong pod name (#322)
1 parent 0f10ab4 commit 5c50579

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commands/network.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ export class NetworkCommand extends BaseCommand {
212212
title: `Check HAProxy for: ${chalk.yellow(nodeId)}`,
213213
task: () =>
214214
self.k8.waitForPodReady([
215-
'fullstack.hedera.com/type=envoy-proxy'
215+
'fullstack.hedera.com/type=haproxy'
216216
], 1, 60 * 15, 1000) // timeout 15 minutes
217217
})
218218
}
@@ -223,7 +223,7 @@ export class NetworkCommand extends BaseCommand {
223223
title: `Check Envoy Proxy for: ${chalk.yellow(nodeId)}`,
224224
task: () =>
225225
self.k8.waitForPodReady([
226-
'fullstack.hedera.com/type=haproxy'
226+
'fullstack.hedera.com/type=envoy-proxy'
227227
], 1, 60 * 15, 1000) // timeout 15 minutes
228228
})
229229
}

0 commit comments

Comments
 (0)