From a041d34f139f2eaf3e31274e2c9561c6f99fb250 Mon Sep 17 00:00:00 2001 From: MATILLAT Quentin Date: Tue, 10 Dec 2024 20:55:35 +0100 Subject: [PATCH] feat(warmup): Make warm_up_wait crate local Signed-off-by: MATILLAT Quentin --- crates/core/src/repository.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/core/src/repository.rs b/crates/core/src/repository.rs index e4d94fad..f2f4c830 100644 --- a/crates/core/src/repository.rs +++ b/crates/core/src/repository.rs @@ -756,7 +756,7 @@ impl Repository { /// /// * If the command could not be parsed. /// * If the thread pool could not be created. - pub fn warm_up_wait( + pub(crate) fn warm_up_wait( &self, packs: impl ExactSizeIterator + Clone, ) -> RusticResult<()> {