Skip to content

Commit bd38f39

Browse files
committed
👷 Remove expired telemetry
1 parent 3ab990f commit bd38f39

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

‎packages/core/src/domain/session/sessionManager.ts‎

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -210,19 +210,7 @@ function detectSessionIdChange(configuration: Configuration, initialSessionState
210210
const newSessionState = toSessionState(changed.value)
211211
if (newSessionState.id && newSessionState.id !== initialSessionState.id) {
212212
stop()
213-
const time = dateNow() - sdkInitTime
214-
getSessionCookies()
215-
.then((cookie) => {
216-
// monitor-until: 2025-10-01, after investigation done
217-
addTelemetryDebug('Session cookie changed', {
218-
time,
219-
session_age: sessionAge,
220-
old: initialSessionState,
221-
new: newSessionState,
222-
cookie,
223-
})
224-
})
225-
.catch(monitorError)
213+
getSessionCookies().catch(monitorError)
226214
}
227215
}
228216
}

0 commit comments

Comments
 (0)