From 2b2dbb114bd9f4ead57afa006833543f80d8b06a Mon Sep 17 00:00:00 2001 From: Walter Boring Date: Tue, 9 Dec 2025 17:06:23 -0500 Subject: [PATCH] ensure join has timeout --- aprsd/threads/service.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aprsd/threads/service.py b/aprsd/threads/service.py index 6971c51..4ccb02f 100644 --- a/aprsd/threads/service.py +++ b/aprsd/threads/service.py @@ -36,7 +36,7 @@ class ServiceThreads: for thread in self.threads: thread.start() - def join(self): + def join(self, timeout=None): """Join all the threads in the list""" for thread in self.threads: - thread.join() + thread.join(timeout=timeout)