-
Notifications
You must be signed in to change notification settings - Fork 842
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Node: invalid argument, uv_interface_addresses #1343
Comments
We're aware of this issue, and the fix will be pushed out soon, thanks. |
This bug is still apparent in build 14971, is a fix still inbound? |
@antcook According to their latest Bash on Windows Release Notes, they were unable to push any changes in the last release. |
Hi @antcook, any chance you could test on build 14986? From the release notes:
|
@russalex Just updated to 14986 and I can confirm that the issue is no longer present. (Node v7.0.1) |
"Note that the Linux "ip" utility contains a bug where it will crash if WSL reports a 32-byte hardware address. This is a bug in "ip", not WSL. The “ip” utility hard-codes the length of the string buffer used to print the hardware address, and that buffer is too small to print a 32-byte hardware address."
Seriously??? Even on Windows with
|
@therealkenc Thanks for your feedback, what you are saying does make sense, we've decided to truncate the physical address length returned by lxcore to 16 bytes. |
The teredo issue should be fixed in 15007 |
Any ETA for when this fix will be available for people not able to use Insider preview builds (work computer)? |
@Markus-ipse - Windows 10 Creator's update due later this year. |
Haha, could we get something a tad more specific than "later this year", since we're not even out of January yet? 😁 Edit: |
@Markus-ipse - we have not yet announced a release date beyond "Spring 2017" |
I already had this issue and I'm doing this as a workaround: // hack for Ubuntu on Windows
try {
require('os').networkInterfaces();
}
catch (e) {
require('os').networkInterfaces = () => ({});
} Place that code in a file and require it in |
@buzinas Brilliant. I love you. I didn't need to put it into a separate file, I just put it at the top of my Webpack config. |
@buzinas Amazing!!! |
Almost as amazing as when it was posted by @ghost last august. 😉 |
@buzinas Good!!! |
Closing the issue out since it is fixed in the insider builds. |
@sunilmut Thank you! When will it be available for folks who do not use the insider builds? |
@cbier1 I'm running well on Windows 10 Creators Update 😁 |
Node 7.0
Windows build 14965.1001
Create test.js:
Output:
In my case i was trying to run webpack with css-loader (the error comes from it).
The text was updated successfully, but these errors were encountered: