From 5775bcb999cbf11ae6c3030e0afcb611ef8432c1 Mon Sep 17 00:00:00 2001 From: casulit Date: Thu, 31 Oct 2024 15:22:48 +0800 Subject: [PATCH] feat(deno-kv): Increase query limit from 3 to 10 in listenQueue function --- config/deno-kv.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/deno-kv.ts b/config/deno-kv.ts index 613e293..538393e 100644 --- a/config/deno-kv.ts +++ b/config/deno-kv.ts @@ -199,7 +199,7 @@ export async function listenQueue(kv: Deno.Kv) { AND json_data->'dataLayer'->'location'->>'region' IS NOT NULL AND json_data->'dataLayer'->'location'->>'city' IS NOT NULL AND json_data->'dataLayer'->'attributes'->>'listing_area' IS NOT NULL - LIMIT 3 + LIMIT 10 `, );