From 556ed9b8483d4183b3d3c206253aaa471f3e4d17 Mon Sep 17 00:00:00 2001 From: boris Date: Wed, 8 Jul 2026 04:11:44 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E6=99=AE=E9=80=9A=E6=97=A5?= =?UTF-8?q?=E9=83=A8=E5=88=86=E9=80=80=E5=87=BA=E8=A1=A5=E4=BB=93=E6=A7=BD?= =?UTF-8?q?=E4=BD=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- crates/fidc-core/src/platform_expr_strategy.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/crates/fidc-core/src/platform_expr_strategy.rs b/crates/fidc-core/src/platform_expr_strategy.rs index 8795fd2..dd4aadd 100644 --- a/crates/fidc-core/src/platform_expr_strategy.rs +++ b/crates/fidc-core/src/platform_expr_strategy.rs @@ -8673,7 +8673,9 @@ impl Strategy for PlatformExprStrategy { self.pending_full_close_symbols.remove(&position.symbol); } else { pending_full_close_symbols.insert(position.symbol.clone()); - slot_blocking_symbols.insert(position.symbol.clone()); + if should_block_released_slots_after_top_up { + slot_blocking_symbols.insert(position.symbol.clone()); + } self.pending_full_close_symbols .insert(position.symbol.clone()); } @@ -8809,7 +8811,9 @@ impl Strategy for PlatformExprStrategy { self.pending_full_close_symbols.remove(&position.symbol); } else { pending_full_close_symbols.insert(position.symbol.clone()); - slot_blocking_symbols.insert(position.symbol.clone()); + if should_block_released_slots_after_top_up { + slot_blocking_symbols.insert(position.symbol.clone()); + } self.pending_full_close_symbols .insert(position.symbol.clone()); }