Mercurial > libervia-pubsub
changeset 94:bbebadd71d35
Remove hardcoded nodes.
author | Ralph Meijer <ralphm@ik.nu> |
---|---|
date | Wed, 17 Nov 2004 21:08:29 +0000 |
parents | ea3b2410c01c |
children | 3ad74552bbc7 |
files | idavoll/memory_backend.py |
diffstat | 1 files changed, 0 insertions(+), 9 deletions(-) [+] |
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]