summary refs log tree commit diff
path: root/synapse/replication/http/_base.py
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-03-24 13:25:08 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2020-03-24 13:25:08 +0000
commit06d54f9f8c1044e35331eeeba98f4c454abfcae3 (patch)
tree04d5ca2f3d989c165f2607d76a49274602216436 /synapse/replication/http/_base.py
parentCast a coroutine into a Deferred in the federation base (#6996) (diff)
parentStore room version on invite (#6983) (diff)
downloadsynapse-06d54f9f8c1044e35331eeeba98f4c454abfcae3.tar.xz
Store room version on invite (#6983)
* commit '3e99528f2':
  Store room version on invite (#6983)
Diffstat (limited to 'synapse/replication/http/_base.py')
-rw-r--r--synapse/replication/http/_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/http/_base.py b/synapse/replication/http/_base.py

index 444eb7b7f4..1be1ccbdf3 100644 --- a/synapse/replication/http/_base.py +++ b/synapse/replication/http/_base.py
@@ -44,7 +44,7 @@ class ReplicationEndpoint(object): """Helper base class for defining new replication HTTP endpoints. This creates an endpoint under `/_synapse/replication/:NAME/:PATH_ARGS..` - (with an `/:txn_id` prefix for cached requests.), where NAME is a name, + (with a `/:txn_id` suffix for cached requests), where NAME is a name, PATH_ARGS are a tuple of parameters to be encoded in the URL. For example, if `NAME` is "send_event" and `PATH_ARGS` is `("event_id",)`,