diff options
Diffstat (limited to 'integrationtests/cmd/ioworkload/main.go')
| -rw-r--r-- | integrationtests/cmd/ioworkload/main.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/integrationtests/cmd/ioworkload/main.go b/integrationtests/cmd/ioworkload/main.go index 3ed9cb2..1261c9f 100644 --- a/integrationtests/cmd/ioworkload/main.go +++ b/integrationtests/cmd/ioworkload/main.go @@ -11,7 +11,10 @@ import ( "time" ) -const startupDelay = 2 * time.Second +// 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 func main() { scenario := flag.String("scenario", "", "I/O scenario to execute") |
