Create/update project on compute when variables changes

This commit is contained in:
ziajka
2018-05-09 15:29:35 +02:00
parent 83445214be
commit 7b3d5ae5e3
9 changed files with 98 additions and 11 deletions

View File

@ -460,11 +460,12 @@ class Compute:
msg = json.loads(response.data)
action = msg.pop("action")
event = msg.pop("event")
if action == "ping":
self._cpu_usage_percent = event["cpu_usage_percent"]
self._memory_usage_percent = event["memory_usage_percent"]
self._controller.notification.emit("compute.updated", self.__json__())
elif action == 'project.updated':
print(event)
else:
yield from self._controller.notification.dispatch(action, event, compute_id=self.id)
if self._ws: