summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2022-09-06 15:39:00 +0200
committerLoic Guegan <manzerbredes@mailbox.org>2022-09-06 15:39:00 +0200
commit0723d0d6dbb907eb9804b6586e108ce812dc8242 (patch)
tree899b42c37ac27e15cc26a1bd8dad5b3bdd0c1dab
parent721801012ad7ae440b8f53d082cc0eefa3b37fca (diff)
Cleaning
-rw-r--r--esds/node.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/esds/node.py b/esds/node.py
index aa3cf22..1cd5a1a 100644
--- a/esds/node.py
+++ b/esds/node.py
@@ -13,7 +13,7 @@ class Node:
self.rargs=None # Store the requests arguments
self.plugins=list() # Contains all registered node plugins
self.rqueue=queue.Queue() # Receive simulator acknowledgments
- self.chest={"state":"running", "turned_on":True, "request": None, "interfaces":dict(), "interfaces_queue_size":dict(), "plugin_notify": dict()}
+ self.chest={"state":"running", "turned_on":True, "request": None, "interfaces":dict(), "interfaces_queue_size":dict()}
for interface in interfaces:
self.chest["interfaces"][interface]=queue.Queue()
self.chest["interfaces_queue_size"][interface]=0