forked from p15670423/monkey
Agent: Fix ident not available in constructor
This commit is contained in:
parent
756bfe488b
commit
9ff92d2128
|
@ -24,7 +24,7 @@ class SocketsPipe(Thread):
|
|||
self.source = source
|
||||
self.dest = dest
|
||||
self.timeout = timeout
|
||||
super().__init__(name=f"SocketsPipeThread-{self.ident}", daemon=True)
|
||||
super().__init__(name="SocketsPipeThread", daemon=True)
|
||||
self._pipe_closed = pipe_closed
|
||||
|
||||
def _pipe(self):
|
||||
|
|
Loading…
Reference in New Issue