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
Currently wait option times out always when you try to refer to protected URL. Specifying user auth info in URL does not make any difference.
I added some logging to HttpPingChecker and reason is http error 401:
... [DEBUG] DOCKER> wait url 'http://user:pass@host/someurl' exception: Read timed out [DEBUG] DOCKER> wait url 'http://user:pass@host/someurl' response code: 401 ...
WaitUtil.HttpPingChecker uses java.net.HttpURLConnection and this is probable reason.
I think there are two options to allow user auth info:
I tested HttpClient option and can supply pull request for that.
The text was updated successfully, but these errors were encountered:
Allow specification of user in wait url
32c00d0
Fixes #211 (integrated from PR #212)
8acf869
No branches or pull requests
Currently wait option times out always when you try to refer to protected URL.
Specifying user auth info in URL does not make any difference.
I added some logging to HttpPingChecker and reason is http error 401:
WaitUtil.HttpPingChecker uses java.net.HttpURLConnection and this is probable reason.
I think there are two options to allow user auth info:
I tested HttpClient option and can supply pull request for that.
The text was updated successfully, but these errors were encountered: