mirror of
https://github.com/GNS3/gns3-server.git
synced 2025-06-20 00:03:56 +00:00
Support for console type "none".
This commit is contained in:
@ -376,8 +376,8 @@ class Node:
|
||||
|
||||
self._list_ports()
|
||||
# We send notif only if object has changed
|
||||
if old_json != self.__json__():
|
||||
self.project.controller.notification.emit("node.updated", self.__json__())
|
||||
#if old_json != self.__json__():
|
||||
# self.project.controller.notification.emit("node.updated", self.__json__())
|
||||
if update_compute:
|
||||
data = self._node_data(properties=compute_properties)
|
||||
response = yield from self.put(None, data=data)
|
||||
@ -389,6 +389,7 @@ class Node:
|
||||
"""
|
||||
Update the object with the remote node object
|
||||
"""
|
||||
|
||||
for key, value in response.items():
|
||||
if key == "console":
|
||||
self._console = value
|
||||
|
Reference in New Issue
Block a user