We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47d270d commit 7456b2eCopy full SHA for 7456b2e
1 file changed
pubnub/request_handlers/httpx.py
@@ -113,8 +113,8 @@ def _force_shutdown_connections(session):
113
sock.shutdown(socket.SHUT_RDWR)
114
except (OSError, Exception):
115
pass
116
- except Exception:
117
- pass
+ except Exception as e:
+ logger.debug(f"Error iterating connection pool: {e}")
118
try:
119
session.close()
120
except Exception as e:
0 commit comments