mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-01 01:09:22 +01:00
IRCNetwork: error when attempting to start multiple connection threads for a network
This commit is contained in:
parent
c3cdf63253
commit
62784a63e4
@ -1294,6 +1294,9 @@ class IRCNetwork(PyLinkNetworkCoreWithUtils):
|
||||
# HACK: Don't thread if we're running tests.
|
||||
self._connect()
|
||||
else:
|
||||
if self.connection_thread and self.connection_thread.is_alive():
|
||||
raise RuntimeError("Refusing to start multiple connection threads for network %r!" % self.name)
|
||||
|
||||
self.connection_thread = threading.Thread(target=self._connect,
|
||||
name="Listener for %s" %
|
||||
self.name)
|
||||
|
Loading…
Reference in New Issue
Block a user