We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 747c4ec commit ac8c716Copy full SHA for ac8c716
1 file changed
server/cmd/wrapper/main.go
@@ -566,6 +566,11 @@ func dismissNoSandboxWarning() {
566
}
567
time.Sleep(100 * time.Millisecond)
568
569
+ // Without a settle delay the click can land before the --no-sandbox infobar
570
+ // has finished painting, leaving the warning on screen. The legacy
571
+ // wrapper.sh slept 5s here for the same reason. Runs off the hot path
572
+ // (goroutine fired post-readiness) so this doesn't extend time-to-CDP.
573
+ time.Sleep(5 * time.Second)
574
port := os.Getenv("KERNEL_IMAGES_API_PORT")
575
if port == "" {
576
port = defaultAPIPort
0 commit comments