diff --git a/dist/index.js b/dist/index.js index 6cafe525..0190c6d5 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 07255836..3911b7d8 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 3362afbf..e9588591 100644 --- a/src/model/cloud-runner/providers/k8s/kubernetes-task-runner.ts +++ b/src/model/cloud-runner/providers/k8s/kubernetes-task-runner.ts @@ -47,11 +47,10 @@ class KubernetesTaskRunner { CloudRunnerLogger.log(`Loghash found`); } if (chunk.includes(`LOGS:`)) { - const result = RemoteClientLogger.HandleLogChunkLine(chunk); - // remove "LOGS: " and decode base64 remaining const unpacked = Buffer.from(chunk.split(`LOGS: `)[1], 'base64').toString('ascii'); - CloudRunnerLogger.log(`Logs found HandleLogChunkLineResult:${result}\n${unpacked}`); + const result = RemoteClientLogger.HandleLogChunkLine(unpacked); + CloudRunnerLogger.log(`Logs found HandleLogChunkLineResult:${result}`); } } };