We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Given a non-existing random URL using HTTP:
$ curl -D - http://bla.blu.bli HTTP/1.1 403 Forbidden Date: Mon, 14 Jun 2021 20:16:38 GMT Server: Apache Content-Length: 202 Content-Type: text/html; charset=iso-8859-1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>403 Forbidden</title> </head><body> ...
I correctly get an error message from wait-on:
wait-on
$ npx wait-on --timeout 2000 http://bla.blu.bli && echo 'foo' npx: installed 13 in 2.019s Error: Timed out waiting for: http://bla.blu.bli
This is perfectly fine! Nevertheless, when using HTTPS on the same random URL, I get:
$ curl -D - https://bla.blu.bli curl: (60) SSL: no alternative certificate subject name matches target host name 'bla.blu.bli' More details here: https://curl.se/docs/sslcerts.html $ npx wait-on --timeout 2000 https://bla.blu.bli && echo 'foo' npx: installed 13 in 2.211s foo
Why does wait-on succeeds here? I tried with other random HTTPS URLS and wait-on always succeeds.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given a non-existing random URL using HTTP:
I correctly get an error message from
wait-on
:This is perfectly fine! Nevertheless, when using HTTPS on the same random URL, I get:
Why does wait-on succeeds here? I tried with other random HTTPS URLS and wait-on always succeeds.
The text was updated successfully, but these errors were encountered: