Skip to content

Handle socket init errors, e.g., when IPv6 is disabled #2476

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

Merged
merged 2 commits into from
Feb 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion kafka/conn.py
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,11 @@ def connect(self):
log.debug('%s: creating new socket', self)
assert self._sock is None
self._sock_afi, self._sock_addr = next_lookup
self._sock = socket.socket(self._sock_afi, socket.SOCK_STREAM)
try:
self._sock = socket.socket(self._sock_afi, socket.SOCK_STREAM)
except (socket.error, OSError) as e:
self.close(e)
return self.state

for option in self.config['socket_options']:
log.debug('%s: setting socket option %s', self, option)
Expand Down