Open cjk7989 opened 1 year ago
When I changed the resource to “tcp:localhost:4200”, waitOn() worked fine. So I guess it’s not that waitOn() does not support ipv6, it’s just that the regex check in line 342 of wait-on.js does not handle ipv6 format addresses. Maybe this can be fixed in a future update. Am I right? : )
Hi, I'm wondering if wait-on does not support ipv6, because I got an error when I tried to use it with an ipv6 address. Here are the details:
I opened an ipv6 address: [::1]:4200, but when I run the code:
I got an error with message:
But when I use psping or browser, "[::1]:4200" can be connected.
I find the code in line 342 of wait-on.js is:
Where
and tcpPath in my case maybe "tcp:[::1]:4200" or "[::1]:4200", both of them indeed do not match this regular expression.
Some additional information:
Thank you for your help. I appreciate your work on this library.