We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e29396f commit e77e255Copy full SHA for e77e255
src/app/_common/monitoring/session.ts
@@ -2,7 +2,7 @@ import { v4 as uuidv4 } from "uuid";
2
3
export const SESSION_TAG = "session";
4
export const SESSION_ID_TAG = "sessionId";
5
-const SESSION_MAX_DURATION_MS = 60 * 1000; // 24 hours in milliseconds
+const SESSION_MAX_DURATION_MS = 24 * 60 * 60 * 1000; // 24 hours in milliseconds
6
7
export function getSessionId(): string {
8
let session: { id: string; timestamp: number } | null = null;
0 commit comments