From 0b603f97c6d36aaa48288f168cce4e5c9b5968a7 Mon Sep 17 00:00:00 2001
From: Jan David Mol <mol@astron.nl>
Date: Wed, 30 Jun 2021 10:21:40 +0200
Subject: [PATCH] Fix endless recursion

---
 devices/clients/sst_client.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/devices/clients/sst_client.py b/devices/clients/sst_client.py
index 4aa4e3c68..af021d2a0 100644
--- a/devices/clients/sst_client.py
+++ b/devices/clients/sst_client.py
@@ -183,7 +183,7 @@ class UDP_Receiver(Thread):
         self.stream_on = False
         logging.info("Sent shutdown to UDP thread for {}:{}".format(self.host, self.port))
 
-        self.join(timeout)
+        super().join(timeout)
 
         if self.isAlive():
             # happens if timeout is hit
-- 
GitLab