This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add support for no_proxy and case insensitive env variables #9372
Add support for no_proxy and case insensitive env variables #9372
Changes from 8 commits
f4fc27a
cac17ed
e258497
d84117f
1807473
b2653d9
2cc9d19
dc9a1b4
b468bd8
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there any point in using
ProxyAgent
withoutuse_proxy=True
? I kept this default here to match the same behaviour as before if you didn't specify either ofhttp_proxy
orhttps_proxy
but seems like it may be redundant now that this is combined into a single parameterThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you're right. Outside of proxying (and a single debug log)
ProxyAgent
doesn't provide much on top of twisted's defaultAgent
(as it shouldn't!).I think we could try just using an
Agent
ifuse_proxy=False
is passed toSimpleHttpClient
.Similarly in tests.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think I'd rather leave this out of this PR for now to avoid making more significant changes to the code but sounds like it could be worth a follow up!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds sensible, OK 🙂