deepgram / deepgram-python-sdk

Official Python SDK for Deepgram's automated speech recognition APIs.
https://developers.deepgram.com
MIT License
175 stars 47 forks source link

Don't Set Thread References to None #372

Closed dvonthenen closed 2 months ago

dvonthenen commented 2 months ago

Proposed changes

Addresses issue: https://github.com/deepgram/deepgram-python-sdk/issues/370

I believe this is similar to this issue fixed in PR https://github.com/deepgram/deepgram-python-sdk/pull/366. The threads should have already exited (because of the join and gather) but in the event that hasn't happened yet, this keeps the thread references around until a reconnect has happened (ie they will be replaced with new thread references).

Also, found in testing an additional place where an exception can be thrown on a successful exit.

Types of changes

What types of changes does your code introduce to the community Python SDK? Put an x in the boxes that apply

Checklist

Put an x in the boxes that apply. You can also fill these out after creating the PR. If you're unsure about any of them, don't hesitate to ask. We're here to help! This is simply a reminder of what we are going to look for before merging your code.

Further comments

Tested AsyncLive and Live Clients for all examples.