From e3e25463ebf9efc2347c0bcbc5fd93f0ff17cbf9 Mon Sep 17 00:00:00 2001 From: "Blake J. Harnden" Date: Thu, 19 Jul 2018 16:45:05 -0700 Subject: [PATCH] removed line sending service load errors to the gui and it interferes with current coresendmsg --- daemon/core/corehandlers.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/daemon/core/corehandlers.py b/daemon/core/corehandlers.py index 0ba3a61b..90113693 100644 --- a/daemon/core/corehandlers.py +++ b/daemon/core/corehandlers.py @@ -550,14 +550,6 @@ class CoreHandler(SocketServer.BaseRequestHandler): # set initial session state self.session.set_state(EventTypes.DEFINITION_STATE) - # send service errors, if present - if self.coreemu.service_errors: - self.send_exception( - ExceptionLevels.ERROR, - "ServiceManager.load()", - "Failed to load services: %s" % " ".join(self.coreemu.service_errors) - ) - while True: try: message = self.receive_message()