You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From your setup it looks like you are not using this library, but exoego's fork. That fork never upgraded to scalajs-jsenv-podejs 1.2.1, which has the fix for #12.
Moreover, since it's Mill, apparently they themselves have a fork or a wrapper around the exoego env. For all I know they don't have the fix either.
Please file an issue in the appropriate repos. We can reopen here if there is evidence that it is still an issue for the library defined here.
I'm seeing this on Node.js 18, using sbt-scalajs. The metaproject tells me I'm using org.scala-js:scalajs-js-envs_2.12:1.4.0, which would be the latest. Shall I create an issue, or is it more likely that I'm doing something wrong?
If it is truly with scalajs-js-envs >= 1.2.1, it is likely a different issue, even if it has the same symptoms. Feel free to open a separate issue with a reproduction.
Apparently error reported in #12 returned recently.
Had to add the same workaround, adding
List("--dns-result-order=ipv4first")
as an argument to node and it fixed.As I use mill, I added:
def jsEnvConfig = T(JsEnvConfig.ExoegoJsDomNodeJs(args = List("--dns-result-order=ipv4first")))
.Don't know if the error is in this lib or mill itself but the workaround above worked.
The text was updated successfully, but these errors were encountered: