summary refs log tree commit diff
path: root/graph/graph.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2014-08-13 18:02:34 +0100
committerErik Johnston <erik@matrix.org>2014-08-13 18:02:40 +0100
commit08ed4ccfdf96e9e7f584dda09b85a109c9dcb2ab (patch)
treeb322fd81e10d6b4997bc4585da8152b01586d85c /graph/graph.py
parentNow that HS->HS Profile lookups use Federation Queries, we don't need the 'lo... (diff)
downloadsynapse-08ed4ccfdf96e9e7f584dda09b85a109c9dcb2ab.tar.xz
Update graph.py to use new federation urls
Diffstat (limited to 'graph/graph.py')
-rw-r--r--graph/graph.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/graph/graph.py b/graph/graph.py

index 03af12cbbd..da829c388f 100644 --- a/graph/graph.py +++ b/graph/graph.py
@@ -120,7 +120,7 @@ def make_graph(pdus, room, filename_prefix): def get_pdus(host, room): transaction = json.loads( urllib2.urlopen( - "http://%s/context/%s/" % (host, room) + "http://%s/matrix/federation/v1/context/%s/" % (host, room) ).read() )