From 33e3a4614690c0ab552e921e89eef8d7ce08a274 Mon Sep 17 00:00:00 2001 From: Blake Harnden <32446120+bharnden@users.noreply.github.com> Date: Mon, 9 Dec 2019 16:25:29 -0800 Subject: [PATCH] better gui startup connection failure message --- coretk/coretk/coreclient.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/coretk/coretk/coreclient.py b/coretk/coretk/coreclient.py index 5c728477..376c739c 100644 --- a/coretk/coretk/coreclient.py +++ b/coretk/coretk/coreclient.py @@ -414,7 +414,8 @@ class CoreClient: } except grpc.RpcError as e: if e.code() == grpc.StatusCode.UNAVAILABLE: - messagebox.showerror("Server Error", e.details()) + + messagebox.showerror("Server Error", "CORE Daemon Unavailable") else: messagebox.showerror("GRPC Error", e.details()) self.app.close()