From 8c73865ee01e8b7a5cf365c66650713bc62a7a4a Mon Sep 17 00:00:00 2001 From: "claude[bot]" Date: Mon, 2 Mar 2026 17:02:29 +0000 Subject: [PATCH] fix: update stale doc comment to match MAX_EXEC_MS change MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The comment said "under 2 seconds" but MAX_EXEC_MS was changed to 5000 in commit b46a392. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- tests/test_vsock_connect_stress.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_vsock_connect_stress.rs b/tests/test_vsock_connect_stress.rs index cc08312e..2d0fb780 100644 --- a/tests/test_vsock_connect_stress.rs +++ b/tests/test_vsock_connect_stress.rs @@ -176,7 +176,7 @@ async fn kill_on_drop_stress(pid: u32, label: &str) -> Result<()> { /// Full lifecycle stress test for vsock CONNECT reliability. /// /// Tests exec through: baseline → clone → clone-of-clone → parallel clones → sibling death. -/// Every exec must succeed and complete in under 2 seconds. +/// Every exec must succeed and complete in under MAX_EXEC_MS (5 seconds). #[cfg(feature = "privileged-tests")] #[tokio::test] async fn test_vsock_connect_lifecycle_stress_bridged() -> Result<()> {