[py] improve socket resource management with proper shutdown sequence#15453
Merged
cgoldberg merged 2 commits intoSeleniumHQ:trunkfrom Mar 20, 2025
Merged
[py] improve socket resource management with proper shutdown sequence#15453cgoldberg merged 2 commits intoSeleniumHQ:trunkfrom
cgoldberg merged 2 commits intoSeleniumHQ:trunkfrom
Conversation
Contributor
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
Contributor
PR Code Suggestions ✨Explore these optional code suggestions:
|
|||||||||
sandeepsuryaprasad
pushed a commit
to sandeepsuryaprasad/selenium
that referenced
this pull request
Mar 23, 2025
…SeleniumHQ#15453) fix: add socket.shutdown() before close() to ensure timely closing Co-authored-by: Corey Goldberg <1113081+cgoldberg@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
User description
Description
This PR adds a resource management improvement to socket handling by implementing the recommended shutdown-then-close pattern in the error handling path of socket connections.
Benefits
Technical details
The Python documentation explicitly recommends this approach:
This change adds properly exception-handled shutdown() calls before close() to ensure sockets are terminated gracefully even in error conditions.
Impact
This is a low-risk improvement that brings the codebase more in line with networking best practices. The change is minimal but meaningful for overall reliability.
Types of changes
Checklist
PR Type
Bug fix
Description
Added
socket.shutdown()beforeclose()for proper socket termination.Ensured exception handling around
shutdown()to prevent crashes.Improved resource management and reliability in socket handling.
Changes walkthrough 📝
utils.py
Improve socket resource management in `is_connectable`py/selenium/webdriver/common/utils.py
socket.shutdown(socket.SHUT_RDWR)beforeclose()inis_connectable.shutdown()in a try-except block to handle potentialexceptions.