We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb2ac35 commit 6558bf8Copy full SHA for 6558bf8
βsrc/backend/core/mda/inbound.pyβ
@@ -139,7 +139,7 @@ def deliver_inbound_message(
139
channel=channel,
140
)
141
logger.info(
142
- "Queued inbound message %s for spam processing (recipient: %s)",
+ "Queued inbound message %s (recipient: %s)",
143
inbound_message.id,
144
recipient_email,
145
βsrc/backend/core/mda/selfcheck.pyβ
@@ -321,6 +321,10 @@ def run_selfcheck() -> Dict[str, Any]:
321
logger.error("Selfcheck failed: %s", e, exc_info=True)
322
323
finally:
324
+ # Wait a bit for indexation, thread.update_stats() to be done in order
325
+ # to avoid race conditions on deleted objects.
326
+ time.sleep(5)
327
+
328
if message:
329
_cleanup_test_data(message)
330
if received_message:
0 commit comments