From e2953a382b0811140ce4a0d3c8b8d132df95fe7f Mon Sep 17 00:00:00 2001 From: DMleadgen Date: Fri, 10 Apr 2026 16:17:35 -0600 Subject: [PATCH] fix: point eBay refresh cron at public action --- convex/crons.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/convex/crons.ts b/convex/crons.ts index 0b5d2814..4de9c6a2 100644 --- a/convex/crons.ts +++ b/convex/crons.ts @@ -1,12 +1,12 @@ import { cronJobs } from "convex/server" -import { internal } from "./_generated/api" +import { api } from "./_generated/api" const crons = cronJobs() crons.interval( "ebay-manual-parts-refresh", { hours: 24 }, - internal.ebay.refreshCache, + api.ebay.refreshCache, { reason: "cron" } )