Agent: Fix TCPRelay missing _interrupted member

This commit is contained in:
Kekoa Kaaikala 2022-09-08 15:56:51 +00:00 committed by Mike Salvatore
parent 6051cfa29a
commit d335c4081a
1 changed files with 1 additions and 0 deletions

View File

@ -34,6 +34,7 @@ class TCPRelay(Thread, InterruptableThreadMixin):
],
)
super().__init__(name="MonkeyTcpRelayThread", daemon=True)
InterruptableThreadMixin.__init__(self)
self._lock = Lock()
def run(self):