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 danf@dataforge.on.ca
Recipients danf@dataforge.on.ca
Date 2019-06-24.14:59:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1561388398.02.0.998339394531.issue37389@roundup.psfhosted.org>
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:58danf@dataforge.on.casetrecipients: + danf@dataforge.on.ca
2019-06-24 14:59:58danf@dataforge.on.casetmessageid: <1561388398.02.0.998339394531.issue37389@roundup.psfhosted.org>
2019-06-24 14:59:58danf@dataforge.on.calinkissue37389 messages
2019-06-24 14:59:57danf@dataforge.on.cacreate