From d3c0baea7fefb4a5d851128759a9ffec37d3e663 Mon Sep 17 00:00:00 2001 From: David Estes Date: Thu, 5 Dec 2024 14:00:45 -0700 Subject: [PATCH] chore: fmt --- event-svc/src/event/ordering_task.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/event-svc/src/event/ordering_task.rs b/event-svc/src/event/ordering_task.rs index 79c7c753..34665df7 100644 --- a/event-svc/src/event/ordering_task.rs +++ b/event-svc/src/event/ordering_task.rs @@ -24,7 +24,7 @@ const LOG_EVERY_N_ENTRIES: usize = 10_000; /// The max number of tasks we'll spawn when ordering events. /// Each stask is given a chunk of streams and wil order them const MAX_STREAM_PROCESSING_TASKS: usize = 16; -/// The minimum number of streams each task will process to ensure we don't spawn tasks when we don't have much work. +/// The minimum number of streams each task will process to ensure we don't spawn tasks when we don't have much work. /// If there are many streams, each batch will be the size of `(num_streams_to_process) / MAX_STREAM_PROCESSING_TASKS`. const MIN_NUM_STREAMS_PER_BATCH: usize = 25; /// The number of events we initially pull from the channel when doing startup undelivered batch processing.