Executor-Tyrant-Framework Claude Sonnet 4.6 commited on
Commit
92760f7
·
1 Parent(s): 28a450b

Revert PIPELINE to test_mode: true — SIGSEGV in production mode

Browse files

Production condensation (test_mode: false) caused SIGSEGV in TID within
~80s of startup despite #260 ring improvements + tombstone guard. Reverted
immediately. Root cause investigation required before re-enabling.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

Files changed (1) hide show
  1. rust_core/src/membrane.rs +1 -1
rust_core/src/membrane.rs CHANGED
@@ -492,7 +492,7 @@ static MEMBRANE: std::sync::LazyLock<Mutex<MembraneState>> =
492
  /// 3. recently_freed tombstone (5s): blocks reused addresses after free processing
493
  static PIPELINE: std::sync::LazyLock<Mutex<Pipeline>> =
494
  std::sync::LazyLock::new(|| Mutex::new(Pipeline::new(PipelineConfig {
495
- test_mode: false,
496
  ..PipelineConfig::default()
497
  })));
498
 
 
492
  /// 3. recently_freed tombstone (5s): blocks reused addresses after free processing
493
  static PIPELINE: std::sync::LazyLock<Mutex<Pipeline>> =
494
  std::sync::LazyLock::new(|| Mutex::new(Pipeline::new(PipelineConfig {
495
+ test_mode: true, // REVERTED 2026-06-21: SIGSEGV in production mode
496
  ..PipelineConfig::default()
497
  })));
498