diff options
| author | Paul Buetow <paul@buetow.org> | 2026-03-04 20:19:37 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-03-04 20:20:25 +0200 |
| commit | 96225fb6159212a8851043a08d781aba721b4e78 (patch) | |
| tree | abebcaa74594886c3f130a6c03b7aa2691849cf5 /integrationtests/cmd/ioworkload | |
| parent | 1f8b6804f69632914ad0ab64892021315e99f421 (diff) | |
Fix Go mistake findings and stabilize integration timing
Diffstat (limited to 'integrationtests/cmd/ioworkload')
| -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") |
