Trim entries in no_proxy list#17462
Conversation
Review Summary by QodoTrim and normalize no_proxy list entries
WalkthroughsDescription• Trim whitespace from no_proxy entries in proxy configuration • Extract no_proxy parsing logic into dedicated no_proxy_list method • Update proxy matching to use trimmed no_proxy list consistently • Add tests for whitespace handling in no_proxy entries Diagramflowchart LR
A["no_proxy string input"] -->|split and trim| B["no_proxy_list method"]
B -->|returns cleaned array| C["as_json serialization"]
B -->|returns cleaned array| D["use_proxy? matching"]
C --> E["Proxy JSON output"]
D --> F["Proxy bypass decision"]
File Changes1. rb/lib/selenium/webdriver/common/proxy.rb
|
Code Review by Qodo
1. Array no_proxy not trimmed
|
|
Persistent review updated to latest commit 6490416 |
|
Persistent review updated to latest commit aab1803 |
🔗 Related Issues
Fixes #17460
💥 What does this PR do?
trims no_proxy list
🔧 Implementation Notes
🤖 AI assistance