You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
We had a process attempt to shut down the same room using two, separate calls to the Admin API:
DELETE /_synapse/admin/v1/rooms/{roomId}
POST /_synapse/admin/v1/{roomId}/delete
Both of these method handlers eventually call RoomShutdownHandler.shutdown_room, and there doesn't look to be any code that deduplicates requests anywhere.
This lead to a state where two long-running shutdown processes for the same room occurred and choked the main processes' CPU, resulting in the need to restart the main process to recover its performance.
The text was updated successfully, but these errors were encountered:
We had a process attempt to shut down the same room using two, separate calls to the Admin API:
DELETE /_synapse/admin/v1/rooms/{roomId}
POST /_synapse/admin/v1/{roomId}/delete
Both of these method handlers eventually call RoomShutdownHandler.shutdown_room, and there doesn't look to be any code that deduplicates requests anywhere.
This lead to a state where two long-running shutdown processes for the same room occurred and choked the main processes' CPU, resulting in the need to restart the main process to recover its performance.
The text was updated successfully, but these errors were encountered: