summary refs log tree commit diff
path: root/synapse/appservice/api.py
diff options
context:
space:
mode:
authorTulir Asokan <tulir@maunium.net>2023-05-09 22:02:36 +0300
committerGitHub <noreply@github.com>2023-05-09 15:02:36 -0400
commit86d541f37c1bc9197a6f561b31f3aa359740b4bd (patch)
treec5ffe070e1933f8ff0bb202ec1b9ee2ab6f36c1c /synapse/appservice/api.py
parentHTTP Replication Client (#15470) (diff)
downloadsynapse-86d541f37c1bc9197a6f561b31f3aa359740b4bd.tar.xz
Stabilize MSC2659 support for AS ping endpoint. (#15528)
Diffstat (limited to 'synapse/appservice/api.py')
-rw-r--r--synapse/appservice/api.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/appservice/api.py b/synapse/appservice/api.py
index 024098e9cb..5fb3d5083d 100644
--- a/synapse/appservice/api.py
+++ b/synapse/appservice/api.py
@@ -326,7 +326,7 @@ class ApplicationServiceApi(SimpleHttpClient):
         assert service.hs_token is not None
 
         await self.post_json_get_json(
-            uri=f"{service.url}{APP_SERVICE_UNSTABLE_PREFIX}/fi.mau.msc2659/ping",
+            uri=f"{service.url}{APP_SERVICE_PREFIX}/ping",
             post_json={"transaction_id": txn_id},
             headers={"Authorization": [f"Bearer {service.hs_token}"]},
         )