Mercurial > libervia-pubsub
diff idavoll/memory_backend.py @ 94:bbebadd71d35
Remove hardcoded nodes.
author | Ralph Meijer <ralphm@ik.nu> |
---|---|
date | Wed, 17 Nov 2004 21:08:29 +0000 |
parents | 0e642e5b4fb2 |
children | e7349d94d0c3 |
line wrap: on
line diff
--- a/idavoll/memory_backend.py Wed Nov 17 21:00:37 2004 +0000 +++ b/idavoll/memory_backend.py Wed Nov 17 21:08:29 2004 +0000 @@ -24,15 +24,6 @@ def __init__(self): self.nodes = {} - node = Node("ralphm/mood/ralphm@ik.nu") - node.subscriptions["ralphm@doe.ik.nu"] = Subscription("subscribed") - node.subscriptions["notify@ik.nu/mood_monitor"] = Subscription("subscribed") - node.affiliations["ralphm@ik.nu"] = "owner" - node.affiliations["ralphm@doe.ik.nu"] = "publisher" - node.configuration.persist_items = True - node.configuration.deliver_payloads = True - self.nodes[node.id] = node - def get_node_configuration(self, node_id): try: node = self.nodes[node_id]