-
Notifications
You must be signed in to change notification settings - Fork 40
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
HttpScheduler.AsyncRequest<T> Ignores withCredentials Parameter #517
Comments
My memory of this is that I wanted to make a change whereby the credentials were passed down through the Http framework from the caller to the lower layers explicit as credentials arguments, rather than being added to the headers or params. This would allow the credentials to be applied where needed, and would also generalise to handling of proxy credentials as well as the regular endpoint credentials. However, this work was never completed, and we were left with this vestigial I think it should be deleted. |
@paddybyers ok :) I'll make a PR today |
The class HttpScheduler.AsyncRequest takes
withCredentials
boolean flag as constructor parameter, but does nothing with it.Should we remove it or implement some logic based on it?
The text was updated successfully, but these errors were encountered: