From 337f1efe965afc9d3917bd1b7788553da43254b8 Mon Sep 17 00:00:00 2001 From: "877825076@qq.com" <877825076@qq.com> Date: Sat, 7 Oct 2023 15:19:43 +0800 Subject: [PATCH] fix(monitor):make MonitorTracker thread to daemon --- internlm/monitor/monitor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/internlm/monitor/monitor.py b/internlm/monitor/monitor.py index 6a3b9dc..dbc9dda 100644 --- a/internlm/monitor/monitor.py +++ b/internlm/monitor/monitor.py @@ -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):