Currently, if one uses PubSub.run_in_thread and neglects to stop the thread before the program exits, the Python process will hang on the processing thread. In my testing, this issue is resolved easily by making the worker thread a daemon before starting it; in this way, the processing thread is terminated when its parent dies.
Are there any issues with daemonizing the worker thread in this way?
Commit: 48ae31a