dsmiley opened a new pull request, #4572: URL: https://github.com/apache/solr/pull/4572
I observed the Docker nightly GHA based CI build is failing on main branch alone -- [see here](https://github.com/apache/solr/actions/runs/28417554859). Claude's analysis: > Root Cause: The Ktor upgrade from 3.2.2 → 3.4.2 (commit 995b450a3df) introduced node:net usage in the CIO engine's wasmJs target. CIO on wasmJs uses Node.js socket APIs, which work for wasmJs-Node but not for wasmJs-Browser (which is what webpack builds for). Webpack rightfully refuses to bundle node:net in a browser target. > Proposed Fix: Move ktor-client-cio from commonMain dependencies to desktopMain only, and add a wasmJs-specific source set that uses the Ktor JS/WasmJs engine (ktor-client-js) which uses fetch() — the correct HTTP API for browser environments. This PR implements that change. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
