diff options
author | Tulir Asokan <tulir@maunium.net> | 2023-05-09 22:02:36 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-09 15:02:36 -0400 |
commit | 86d541f37c1bc9197a6f561b31f3aa359740b4bd (patch) | |
tree | c5ffe070e1933f8ff0bb202ec1b9ee2ab6f36c1c /synapse/appservice | |
parent | HTTP Replication Client (#15470) (diff) | |
download | synapse-86d541f37c1bc9197a6f561b31f3aa359740b4bd.tar.xz |
Stabilize MSC2659 support for AS ping endpoint. (#15528)
Diffstat (limited to 'synapse/appservice')
-rw-r--r-- | synapse/appservice/api.py | 2 |
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}"]}, ) |