1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
Jari Kolehmainen 2021-02-10 14:15:30 +02:00
parent 0453a0f545
commit 45aa08d396

View File

@ -406,7 +406,6 @@ export class KubeApi<T extends KubeObject = any> {
const event: IKubeWatchEvent = JSON.parse(line);
if (event.type === "ERROR" && event.object.kind === "Status") {
console.error(event);
errorReceived = true;
callback(null, new KubeStatus(event.object as any));