From cc23e5781e4d09de7c744ea45dfd197e46d2fbff Mon Sep 17 00:00:00 2001 From: Yujong Lee Date: Sat, 19 Sep 2026 18:22:06 +0000 Subject: [PATCH] refactor(rust): drop a comment that repeats the reserve doc Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- litellm-rust/crates/host-python/src/fork_gate.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/litellm-rust/crates/host-python/src/fork_gate.rs b/litellm-rust/crates/host-python/src/fork_gate.rs index cdf269deaec..c4842dd9223 100644 --- a/litellm-rust/crates/host-python/src/fork_gate.rs +++ b/litellm-rust/crates/host-python/src/fork_gate.rs @@ -58,8 +58,6 @@ impl ForkGate { pub(crate) fn reserve(&self, pid: u32) -> Result<(), RuntimeAlreadyStarted> { self.fork_only_pid.store(pid, Ordering::SeqCst); if self.runtime_pid.load(Ordering::SeqCst) == pid { - // Nothing may change for a process that already runs the runtime: its children - // must still be refused. let _ = self.fork_only_pid .compare_exchange(pid, UNSET, Ordering::SeqCst, Ordering::SeqCst);