Disable health thread on windows (#18066)
Disable on windows
Stelios Fragkakis committed
Jul 3, 2024 at 22:43 UTC
ee0d31ea863c3da8bd5368fdebc88e9bc8fbd9c6
1 file changed
+4
src/daemon/static_threads.c
+4
@@ -30,7 +30,11 @@ const struct netdata_static_thread static_threads_common[] = {
30
.name = "HEALTH",
31
.config_section = NULL,
32
.config_name = NULL,
33
+#ifdef OS_WINDOWS
34
.enabled = 0,
35
+#else
36
+ .enabled = 1,
37
+#endif
38
.thread = NULL,
39
.init_routine = NULL,
40
.start_routine = health_main