fix(GRO-574): switch rate limit to memory storage to unblock UAT #273

Merged
lint-roller-qa[bot] merged 4 commits from GRO-574-rate-limit-migration into main 2026-04-12 12:20:00 +00:00
Showing only changes of commit b6246754e1 - Show all commits
+2 -2
View File
@@ -94,7 +94,7 @@ export async function initAuth(): Promise<void> {
enabled: true,
max: 10,
window: 60,
storage: "database",
storage: "memory",
},
plugins: [
genericOAuth({
@@ -187,7 +187,7 @@ export async function initAuth(): Promise<void> {
enabled: true,
max: 10,
window: 60,
storage: "database",
storage: "memory",
},
account: {
storeStateStrategy: "cookie" as const,