fix(monitor):make MonitorTracker thread to daemon

pull/393/head
877825076@qq.com 2023-10-07 15:19:43 +08:00
parent 8b65e2e3c4
commit 337f1efe96
1 changed files with 1 additions and 0 deletions

View File

@ -53,6 +53,7 @@ class MonitorTracker(Thread):
self.last_active_time = -1
self.last_loss_value = -1
self.stopped = False
self.daemon = True
self.start()
def run(self):