Fix: Prevent URL malformation causing 'getaddrinfo ENOTFOUND http' errors #45
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.
Problem
Fixed a critical bug in
extract_host_port()that caused malformed URLs likehttp://http://localhost:3000when the target already contained a protocol scheme.The
extract_host_port()function was using naive string splitting on:which incorrectly parsed URLs:Example of the bug:
http://localhost:3000("http://localhost", 3000)❌f"http://{host}:{port}/login"http://http://localhost:3000/login❌getaddrinfo ENOTFOUND httpThis manifested on macOS (and potentially Linux) as DNS resolution errors when the agent attempted HTTP requests.
Solution
Rewrote
extract_host_port()to useurllib.parse.urlparsewhich properly handles URL parsing:http://localhost:3000("localhost", 3000)✅f"http://{host}:{port}/login"http://localhost:3000/login✅Changes
extract_host_port()inhttp_parser.pyto useurlparselocalhost:3000Testing
All 15 tests pass, including critical test for protocol duplication prevention.
Impact
This fix resolves the issue where agents running on macOS (and potentially Linux) were unable to perform HTTP requests due to malformed URLs.
🤖 Generated with Claude Code