Clarify pubsub durability boundary

This commit is contained in:
Eric Wendland 2026-05-21 01:42:13 +02:00
commit 2b690d6b42
5 changed files with 13 additions and 8 deletions

View file

@ -43,7 +43,7 @@ pub fn validate_message(message: &str) -> Result<(), PubsubError> {
#[must_use]
pub fn pubsub_storage_warning() -> &'static str {
"pubsub is lossy notification transport, not authoritative storage"
"pubsub is lossy notification transport, not authoritative storage; durable facts belong in CAS, KV, documents, or DB resources"
}
#[cfg(test)]