From 6a8deb7115822383d0b6b2060d32ff4d2cfd2239 Mon Sep 17 00:00:00 2001 From: Alex Vandiver Date: Mon, 25 Aug 2025 15:55:40 +0000 Subject: [PATCH] export: We expect that zerver_client is written late. This silences a misleading warning; the behaviour changed in f2024ad625281e30089aee73b0b9b9eec4bcbc9e. --- zerver/lib/export.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zerver/lib/export.py b/zerver/lib/export.py index cc2ccb210f..28a98ffd50 100644 --- a/zerver/lib/export.py +++ b/zerver/lib/export.py @@ -314,6 +314,9 @@ MESSAGE_TABLES = { # zerver_reaction belongs here, since it's added late because it # has a foreign key into the Message table. "zerver_reaction", + # zerver_client is also written after we know what clients got + # used + "zerver_client", } # These get their own file as analytics data can be quite large and