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
I'm running on jruby 9.1.13.0 and getting a Errno::EBADF when the webpack dev server is not running. Perhaps it's appropriate to catch all exceptions here and return a false? I can submit a PR if the solution is acceptable.
Catch all exceptions in `DevServer.running?` and return false.
This is required because some ruby implementations (particularly
`jruby 9.1.13.0` throws a `Errno::EBADF`) which ends up being uncaught
and blows up the stack with no indication as to why the error happened.
See similar issue #745.
I'm running on
jruby 9.1.13.0
and getting aErrno::EBADF
when the webpack dev server is not running. Perhaps it's appropriate to catch all exceptions here and return a false? I can submit a PR if the solution is acceptable.webpacker/lib/webpacker/dev_server.rb
Lines 12 to 17 in a9a6a67
The text was updated successfully, but these errors were encountered: