Skip to content

Commit 8f3cf4a

Browse files
committed
1
1 parent c1b58e9 commit 8f3cf4a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

OpenFlow/src/Messages/Message.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -577,13 +577,13 @@ export class Message {
577577
await KubeUtil.instance().ExtensionsV1beta1Api.replaceNamespacedIngress("ingress", namespace, ingress);
578578
}
579579
} catch (error) {
580-
msg.error = error.toString();
580+
msg.error = JSON.stringify(error, null, 2);
581581
}
582582
try {
583583
this.data = JSON.stringify(msg);
584584
} catch (error) {
585585
this.data = "";
586-
msg.error = error.toString();
586+
msg.error = JSON.stringify(error, null, 2);
587587
}
588588
this.Send(cli);
589589
}

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.180
1+
0.0.181

0 commit comments

Comments
 (0)