Jesse Glick

Results 604 comments of Jesse Glick
trafficstars

@raul-arabaolaza label `bug`

> just take into account security updated GitHub automatically files Dependabot PRs for dependencies with published CVEs, whether you configure Dependabot or not.

I ran into the same `RejectedExecutionException` when connections are being fairly rapidly opened and closed. I was attempting to use a single `WebSocketContainer` for the same reason outlined in #669:...

Using 1.30.0 on Ubuntu 22.04.1, I still get this error with ```java Playwright.create().firefox().launch(new BrowserType.LaunchOptions().setHeadless(false).setFirefoxUserPrefs(Map.of("browser.privacySegmentation.preferences.show", false))).newContext().newPage(); ``` even after ```bash rm -rf ~/.cache/ms-playwright/firefox-1372 ``` First a popup is shown > Failed...

Hmm, I see 1.31.1 on https://mcr.microsoft.com/en-us/product/playwright/tags (curiously `skopeo list-tags docker://mcr.microsoft.com/playwright/java` does not show anything newer than 1.30.0), but for Java https://repo1.maven.org/maven2/com/microsoft/playwright/playwright/ seems stuck on 1.30.0.

This also caused test failures during an attempt to migrate CloudBees CI (based on Jenkins) to Jetty 12. The new behavior seems fine and the fix was straightforward, but it...

Also see https://github.com/jenkinsci/jenkins-test-harness/pull/289#issuecomment-809560892 & JENKINS-73138.

I successfully prototyped a different approach in #1593 which seems simpler, avoids a special `JenkinsRule` subclass (an obstacle for the Jetty upgrade effort), and avoids the need to think about...

The slow request records component already includes thread dumps, at least for the thread handling the HTTP request (and IIRC for any thread it is blocked on as well); what...