summary refs log tree commit diff
path: root/synapse/handlers/room.py
diff options
context:
space:
mode:
authorMathieu Velten <mathieuv@matrix.org>2023-06-09 15:14:59 +0200
committerMathieu Velten <mathieuv@matrix.org>2023-06-09 15:14:59 +0200
commit5b83e0df39a22d0e18c0ea4b942cd8139d2bd019 (patch)
treec9e2e51ea86c0d2712fcbe991145e924dfa43c3b /synapse/handlers/room.py
parentLess quotes (diff)
downloadsynapse-5b83e0df39a22d0e18c0ea4b942cd8139d2bd019.tar.xz
Address comments
Diffstat (limited to 'synapse/handlers/room.py')
-rw-r--r--synapse/handlers/room.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/synapse/handlers/room.py b/synapse/handlers/room.py

index b070ec39c3..0f04038068 100644 --- a/synapse/handlers/room.py +++ b/synapse/handlers/room.py
@@ -1815,12 +1815,12 @@ class DeleteStatus: return by get_delete_status. """ + STATUS_SHUTTING_DOWN = "shutting_down" + # Scheduled purge waiting to be launch at a specific time + STATUS_SCHEDULED_PURGE = "scheduled_purge" STATUS_PURGING = "purging" STATUS_COMPLETE = "complete" STATUS_FAILED = "failed" - STATUS_SHUTTING_DOWN = "shutting_down" - # Purge waiting to be launch at a specific time - STATUS_WAIT_PURGE = "wait_purge" # Tracks whether this request has completed. # One of STATUS_{PURGING,COMPLETE,FAILED,SHUTTING_DOWN,WAIT_PURGE}.