From 52816ce63076d99efc795411820490f1e73d79c0 Mon Sep 17 00:00:00 2001 From: Ruihang Xia Date: Thu, 2 Apr 2026 02:48:47 +0800 Subject: [PATCH] fix typo Signed-off-by: Ruihang Xia --- src/catalog/src/process_manager.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/catalog/src/process_manager.rs b/src/catalog/src/process_manager.rs index 1eebfec627..8796d948e1 100644 --- a/src/catalog/src/process_manager.rs +++ b/src/catalog/src/process_manager.rs @@ -395,7 +395,7 @@ impl SlowQueryTimer { impl Drop for SlowQueryTimer { fn drop(&mut self) { - // Calculate the elaspsed duration since the timer is created. + // Calculate the elapsed duration since the timer is created. let elapsed = self.start.elapsed(); if elapsed > self.threshold { // Only capture a portion of slow queries based on sample_ratio.