We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3b507d commit 344cedfCopy full SHA for 344cedf
packages/k8s/src/hooks/run-script-step.ts
@@ -62,6 +62,7 @@ async function runScriptStepWithGRPC(
62
}
63
64
let ip = getServiceName()
65
+ /*
66
const podName = state.jobPod
67
core.info('using script executor')
68
@@ -73,10 +74,11 @@ async function runScriptStepWithGRPC(
73
74
throw new Error(`Failed to get pod ${podName} IP`)
75
76
ip = status.podIP
77
+ */
78
core.info(`ip is ${ip}`)
79
80
// This will throw after retrying with back off for up to 60s.
- const backOffmanager = new BackOffManager(60)
81
+ const backOffmanager = new BackOffManager(600)
82
while (true) {
83
try {
84
await runScriptByGrpc(
0 commit comments