From 3cefb081fff5bc1378fb77ddf9cf37588b147b1c Mon Sep 17 00:00:00 2001 From: not-matthias Date: Mon, 9 Feb 2026 15:37:27 +0100 Subject: [PATCH] fix(runner): panic if integration doesn't support memory profiling --- src/executor/memory/executor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/executor/memory/executor.rs b/src/executor/memory/executor.rs index 8c8b44b6..e6e86b91 100644 --- a/src/executor/memory/executor.rs +++ b/src/executor/memory/executor.rs @@ -196,7 +196,7 @@ impl MemoryExecutor { }; if cur_version < min_version { - return Ok(Some(FifoCommand::Err)); + panic!("{INVALID_INTEGRATION_ERROR}") } } FifoCommand::SetVersion(protocol_version) => {