You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when I create a client with TLS on, it works but when I can drain, I am getting a message:
returning True from eof_received() has no effect when using ssl
Expected behavior
That message should not show.
Server and client version
nats-server: v2.10.12
nats_py-2.7.2
Host environment
macOS 14
Steps to reproduce
my code is really just doing this (contains TLS client certificate too):
nats_client = await nats.connect(**create_nats_options('FW Clients', err_cb))
await nats_client.drain()
and that shows the error.
The text was updated successfully, but these errors were encountered:
Still an issue with python 3.12. This is a known issue with a known fix. The proposed solution solves the issue in nats.py as well, i.e. calling protocol.connection_made(transport) in TcpTransport.connect_tls().
Observed behavior
when I create a client with TLS on, it works but when I can drain, I am getting a message:
returning True from eof_received() has no effect when using ssl
Expected behavior
That message should not show.
Server and client version
nats-server: v2.10.12
nats_py-2.7.2
Host environment
macOS 14
Steps to reproduce
my code is really just doing this (contains TLS client certificate too):
nats_client = await nats.connect(**create_nats_options('FW Clients', err_cb))
await nats_client.drain()
and that shows the error.
The text was updated successfully, but these errors were encountered: