Agent: Fix ident not available in constructor

This commit is contained in:
Kekoa Kaaikala 2022-09-09 21:03:25 +00:00
parent 756bfe488b
commit 9ff92d2128
1 changed files with 1 additions and 1 deletions

View File

@ -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):