This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author [email protected]
Recipients [email protected]
Date 2019-06-24.14:59:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
The only way I could figure out to control it was to do this in a thread;

        for thread in server._threads:  # type: Thread
            if not thread.is_alive():
                server._threads.remove(thread)

Shouldn't the server process do this when the thread is done?
History
Date User Action Args
2019-06-24 14:59:58[email protected]setrecipients: + [email protected]
2019-06-24 14:59:58[email protected]setmessageid: <[email protected]>
2019-06-24 14:59:58[email protected]linkissue37389 messages
2019-06-24 14:59:57[email protected]create