From 64ebf8292e435d8ea4a64e8ab956313614b5bdc4 Mon Sep 17 00:00:00 2001 From: Keenan Nemetz Date: Wed, 12 Jun 2024 15:12:22 -0700 Subject: [PATCH] remove WARNING text from bufferedBus docs --- event/buffered_bus.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/event/buffered_bus.go b/event/buffered_bus.go index fde2329336..fcd48e5b40 100644 --- a/event/buffered_bus.go +++ b/event/buffered_bus.go @@ -38,7 +38,7 @@ type bufferedBus struct { // It is important that all stuff gets sent through this single channel to ensure // that the order of operations is preserved. // - // WARNING: This does mean that non-event commands can block the database if the buffer + // This does mean that non-event commands can block the database if the buffer // size is breached (e.g. if many subscribe commands occupy the buffer). commandChannel chan any eventBufferSize int