🐛 Fix system metric emit

This commit is contained in:
Rune Harlyk
2025-11-27 17:30:00 +01:00
parent 8a80559ea7
commit 7d2f384898
4 changed files with 12 additions and 11 deletions
+1 -1
View File
@@ -157,7 +157,7 @@ void IRAM_ATTR serviceLoopEntry(void *) {
for (;;) {
wifiService.loop();
apService.loop();
EXECUTE_EVERY_N_MS(2000, system_service::emitMetrics());
EXECUTE_EVERY_N_MS(2000, system_service::emitMetrics(socket));
vTaskDelay(100 / portTICK_PERIOD_MS);
}