aotuai / brainframe-python

🧠🖼️🐍 A Python wrapper around the BrainFrame REST API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

`StatusReceiver` thread is not a daemon

BryceBeagle opened this issue · comments

At one point in time, StatusReceiver used to directly subclass Thread, and this line was used:

When we switched to composition instead of inheritance, the Thread was accidentally not made a daemon:

self._thread = Thread(name="StatusReceiverThread",
target=self._run)

Wow Bryce, I think you just about fixed this one!