summaryrefslogtreecommitdiff
path: root/indra/lib/python/indra/ipc
diff options
context:
space:
mode:
authorRyan Williams <rdw@lindenlab.com>2009-04-08 22:39:01 +0000
committerRyan Williams <rdw@lindenlab.com>2009-04-08 22:39:01 +0000
commit2768539bfe2bf8f2d370fcef03ae7f15b55e0579 (patch)
tree1ad6d79211b9b67e20dc8fd2ad2bf17604f3d31b /indra/lib/python/indra/ipc
parent4c3ffdfddaac35230b32302cf49c2077eea436df (diff)
svn merge -r116334:116916 svn+ssh://svn.lindenlab.com/svn/linden/branches/rad-chilies/rad-chilies-trunkmerge-2
Diffstat (limited to 'indra/lib/python/indra/ipc')
-rw-r--r--indra/lib/python/indra/ipc/servicebuilder.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/lib/python/indra/ipc/servicebuilder.py b/indra/lib/python/indra/ipc/servicebuilder.py
index 04ccee7657..cb43bcb26f 100644
--- a/indra/lib/python/indra/ipc/servicebuilder.py
+++ b/indra/lib/python/indra/ipc/servicebuilder.py
@@ -108,7 +108,7 @@ def on_in(query_name, host_key, schema_key):
@param schema_key Logical name of destination schema. Will
be looked up in indra.xml.
"""
- host_name = config.get(host_key)
- schema_name = config.get(schema_key)
- return '/'.join( ('on', host_name, 'in', schema_name, query_name.lstrip('/')) )
+ return "on/config:%s/in/config:%s/%s" % (host_key.strip('/'),
+ schema_key.strip('/'),
+ query_name.lstrip('/'))