This commit is contained in:
legop3
2026-04-29 14:50:18 -04:00
parent 9be91c22bd
commit 810c465040
3 changed files with 5 additions and 2 deletions
+3
View File
@@ -0,0 +1,3 @@
- discord verification and access requests dont work
- home assistant idle lights are all messed up. remove from home assistant and make new idle service
- snapshots are not working
+1 -1
View File
@@ -8,7 +8,7 @@ const { getRoomCameras } = require('../roomCameraService');
const { getRoomCameraState } = require('../roomCameraService');
const { getReplayHealthSnapshot } = require('../replayEngineV2');
const SNAPSHOT_DIR = path.resolve(__dirname, '..', '..', 'data', 'rover-snapshots');
const SNAPSHOT_DIR = path.resolve(__dirname, '..', '..', '..', 'data', 'rover-snapshots');
const HEALTH_INTERVAL_MS = 5000;
const ROOM_CAMERA_STALE_MS = 5000;
const ROVER_SNAPSHOT_STALE_MS = 5000;
@@ -6,7 +6,7 @@ const fs = require('fs/promises');
const path = require('path');
const logger = require('../../globals/logger').child('roverSnapshot');
const SNAPSHOT_DIR = path.resolve(__dirname, '..', '..', 'data', 'rover-snapshots');
const SNAPSHOT_DIR = path.resolve(__dirname, '..', '..', '..', 'data', 'rover-snapshots');
const POLL_INTERVAL_MS = 300;
const roverState = new Map();
const events = new EventEmitter();