diff --git a/dist/index.js b/dist/index.js index 0900dcf5..7509a921 100644 Binary files a/dist/index.js and b/dist/index.js differ diff --git a/dist/index.js.map b/dist/index.js.map index 699be342..2e698665 100644 Binary files a/dist/index.js.map and b/dist/index.js.map differ diff --git a/src/model/cloud-runner/providers/k8s/kubernetes-task-runner.ts b/src/model/cloud-runner/providers/k8s/kubernetes-task-runner.ts index 8d6b6ab3..7b70d72d 100644 --- a/src/model/cloud-runner/providers/k8s/kubernetes-task-runner.ts +++ b/src/model/cloud-runner/providers/k8s/kubernetes-task-runner.ts @@ -40,6 +40,14 @@ class KubernetesTaskRunner { if (outputChunk.includes(`Collected Logs`)) { CloudRunnerLogger.log(`Log Start found in logs`); } + if (outputChunk.includes(`LOGHASH:`)) { + RemoteClientLogger.HandleLogChunkLine(outputChunk); + CloudRunnerLogger.log(`Loghash found`); + } + if (outputChunk.includes(`LOGS:`)) { + const result = RemoteClientLogger.HandleLogChunkLine(outputChunk); + CloudRunnerLogger.log(`Logs found HandleLogChunkLineResult:${result}`); + } }; try { logs = await CloudRunnerSystem.Run(`kubectl logs ${podName}${extraFlags}`, false, true, callback);