fix(plugin): harden kubernetes exec upload parsing

This commit is contained in:
Dotta
2026-05-13 14:28:37 -05:00
committed by Chris Farhood
parent 3e998bda97
commit f8b8303089
4 changed files with 30 additions and 1 deletions
@@ -59,6 +59,8 @@ export async function execInPod(
stderrStream.on("data", (chunk: Buffer) => {
stderrData += chunk.toString("utf-8");
});
stdoutStream.on("error", () => {});
stderrStream.on("error", () => {});
return await new Promise<ExecInPodResult>(
(resolve, reject) => {