diff --git a/dist/index.js b/dist/index.js index c2228c0b..9e30fcc7 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 a6318577..0ef0fb49 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 b1e1c3f5..970671a1 100644 --- a/src/model/cloud-runner/providers/k8s/kubernetes-task-runner.ts +++ b/src/model/cloud-runner/providers/k8s/kubernetes-task-runner.ts @@ -66,7 +66,10 @@ class KubernetesTaskRunner { shouldCleanup, output, )); - FollowLogStreamService.DidReceiveEndOfTransmission = RemoteClientLogger.HandleLogChunkLine(message); + const result = RemoteClientLogger.HandleLogChunkLine(message); + if (result) { + FollowLogStreamService.DidReceiveEndOfTransmission = true; + } } if (FollowLogStreamService.DidReceiveEndOfTransmission) { CloudRunnerLogger.log('end of log stream');