From 96225fb6159212a8851043a08d781aba721b4e78 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Wed, 4 Mar 2026 20:19:37 +0200 Subject: Fix Go mistake findings and stabilize integration timing --- integrationtests/cmd/ioworkload/main.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'integrationtests/cmd') diff --git a/integrationtests/cmd/ioworkload/main.go b/integrationtests/cmd/ioworkload/main.go index 1261c9f..0276a9c 100644 --- a/integrationtests/cmd/ioworkload/main.go +++ b/integrationtests/cmd/ioworkload/main.go @@ -12,9 +12,9 @@ import ( ) // Give ior enough time to attach tracepoints before scenarios emit syscalls. -// Under parallel integration load, 2s can be too short and cause missed -// first-call events for single-shot scenarios. -const startupDelay = 5 * time.Second +// Under slower CI or locally saturated systems, 5s can still miss first-call +// events for single-shot scenarios. Use a slightly larger delay for stability. +const startupDelay = 8 * time.Second func main() { scenario := flag.String("scenario", "", "I/O scenario to execute") -- cgit v1.2.3