Skip to content

Commit

Permalink
fix: crawl
Browse files Browse the repository at this point in the history
  • Loading branch information
mogery committed Mar 6, 2025
1 parent a1e6c13 commit 39b1390
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/api/src/services/idempotency/validate.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Request } from "express";
import { supabase_service } from "../supabase";
import { supabase_rr_service, supabase_service } from "../supabase";
import { validate as isUuid } from "uuid";
import { logger } from "../../../src/lib/logger";

Expand All @@ -18,7 +18,7 @@ export async function validateIdempotencyKey(req: Request): Promise<boolean> {
return false;
}

const { data, error } = await supabase_service
const { data, error } = await supabase_rr_service
.from("idempotency_keys")
.select("key")
.eq("key", idempotencyKey);
Expand Down

0 comments on commit 39b1390

Please sign in to comment.