mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 20:29:05 +08:00
We now always create a new socket on terminate
CURA-2127
This commit is contained in:
parent
a01a541c5d
commit
bfc01827c2
@ -195,9 +195,8 @@ class CuraEngineBackend(Backend):
|
|||||||
self.slicingCancelled.emit()
|
self.slicingCancelled.emit()
|
||||||
self.processingProgress.emit(0)
|
self.processingProgress.emit(0)
|
||||||
Logger.log("d", "Attempting to kill the engine process")
|
Logger.log("d", "Attempting to kill the engine process")
|
||||||
|
self._createSocket() # Ensure that we have a fresh socket.
|
||||||
if Application.getInstance().getCommandLineOption("external-backend", False):
|
if Application.getInstance().getCommandLineOption("external-backend", False):
|
||||||
self._createSocket()
|
|
||||||
return
|
return
|
||||||
|
|
||||||
if self._process is not None:
|
if self._process is not None:
|
||||||
@ -206,6 +205,7 @@ class CuraEngineBackend(Backend):
|
|||||||
self._process.terminate()
|
self._process.terminate()
|
||||||
Logger.log("d", "Engine process is killed. Received return code %s", self._process.wait())
|
Logger.log("d", "Engine process is killed. Received return code %s", self._process.wait())
|
||||||
self._process = None
|
self._process = None
|
||||||
|
|
||||||
except Exception as e: # terminating a process that is already terminating causes an exception, silently ignore this.
|
except Exception as e: # terminating a process that is already terminating causes an exception, silently ignore this.
|
||||||
Logger.log("d", "Exception occurred while trying to kill the engine %s", str(e))
|
Logger.log("d", "Exception occurred while trying to kill the engine %s", str(e))
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user