diff options
Diffstat (limited to 'integrationtests/cmd')
| -rw-r--r-- | integrationtests/cmd/ioworkload/main.go | 6 |
1 files changed, 3 insertions, 3 deletions
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") |
