jasonrbriggs / stomp.py

“stomp.py” is a Python client library for accessing messaging servers (such as ActiveMQ or RabbitMQ) using the STOMP protocol (versions 1.0, 1.1 and 1.2). It can also be run as a standalone, command-line client for testing.
Apache License 2.0
492 stars 167 forks source link

Remove traceback.print_stack() in protocol.py #291

Closed spurin closed 4 years ago

spurin commented 4 years ago

Hi Jason,

Have tested version 6.0.0 of stomp.py, thanks again for the efforts. It's working well, but, we are seeing a lot of stack traces where we are overcautious on the disconnect. Is this intentional or should this be removed?

Raised the following PR -

https://github.com/jasonrbriggs/stomp.py/pull/290

Have based this on the logic that the debug message, would satisfy this scenario as per previous versions.

Thanks

James Spurin

jasonrbriggs commented 4 years ago

Left that in by mistake after diagnosing another issue. Thx for the PR.