From f4cedd01d14c9f27f7ec6bcb239e3233ce1d2bc3 Mon Sep 17 00:00:00 2001 From: Mac Anderson Date: Fri, 14 Aug 2026 12:02:32 -0700 Subject: [PATCH] fix(stella-core): drop the duplicate Mutex import two unbreak PRs both added MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #3263 and #3265 diagnosed the same red main independently and landed the same repair. Both added `use std::sync::Mutex;` to restore.rs's test module, at different lines, so git merged both and `stella-core` stopped compiling again — E0252, `Mutex` is defined multiple times. Removes the second one. The rest of the two repairs converged on identical text (both pointed the starvation witnesses at `SkillTools`), so this import is the whole delta. Keeps the placement #3263 chose, since it landed first. --- crates/stella-core/src/driver/restore.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/stella-core/src/driver/restore.rs b/crates/stella-core/src/driver/restore.rs index 2e73371d4..8f4928a45 100644 --- a/crates/stella-core/src/driver/restore.rs +++ b/crates/stella-core/src/driver/restore.rs @@ -423,7 +423,6 @@ mod tests { use async_trait::async_trait; use serde_json::Value; - use std::sync::Mutex; use stella_protocol::{ CompletionMessage, CompletionRequestRef, CompletionResult, CompletionUsage, MessageRole, Provider, ProviderError, ToolOutput, ToolSchema,