From f016c02dfbceb0b8bbe5412c02baa4f3b4809448 Mon Sep 17 00:00:00 2001 From: Nawaz Dhandala Date: Fri, 9 Jan 2026 18:39:53 +0000 Subject: [PATCH] fix: Update telemetryServiceId references to serviceId in ExceptionUtil for consistency --- Telemetry/Utils/Exception.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Telemetry/Utils/Exception.ts b/Telemetry/Utils/Exception.ts index 7340f62ea6..6d6fdb192f 100644 --- a/Telemetry/Utils/Exception.ts +++ b/Telemetry/Utils/Exception.ts @@ -240,7 +240,7 @@ export default class ExceptionUtil { query: { fingerprint: fingerprint, projectId: exception.projectId, - telemetryServiceId: exception.serviceId, + serviceId: exception.serviceId, }, select: { _id: true, @@ -275,7 +275,7 @@ export default class ExceptionUtil { const newExceptionStatus: TelemetryException = new TelemetryException(); newExceptionStatus.fingerprint = exception.fingerprint; newExceptionStatus.projectId = exception.projectId; - newExceptionStatus.telemetryServiceId = exception.serviceId; + newExceptionStatus.serviceId = exception.serviceId; newExceptionStatus.lastSeenAt = OneUptimeDate.now(); newExceptionStatus.firstSeenAt = OneUptimeDate.now(); newExceptionStatus.occuranceCount = 1;