removed line sending service load errors to the gui and it interferes with current coresendmsg

This commit is contained in:
Blake J. Harnden 2018-07-19 16:45:05 -07:00
parent 5bb23c1d93
commit e3e25463eb

View file

@ -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()