From ef82ce635cbca852886ebf9e49186d3a9aade434 Mon Sep 17 00:00:00 2001 From: waleed Date: Thu, 9 Apr 2026 19:16:54 -0700 Subject: [PATCH] fix(polling): remove extraneous comment from calendar poller --- apps/sim/lib/webhooks/polling/google-calendar.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/apps/sim/lib/webhooks/polling/google-calendar.ts b/apps/sim/lib/webhooks/polling/google-calendar.ts index 068b19e011..ed3ed02b56 100644 --- a/apps/sim/lib/webhooks/polling/google-calendar.ts +++ b/apps/sim/lib/webhooks/polling/google-calendar.ts @@ -118,10 +118,6 @@ export const googleCalendarPollingHandler: PollingProviderHandler = { const events = await fetchChangedEvents(accessToken, calendarId, config, requestId, logger) if (!events.length) { - // Do not advance the timestamp when no events are found — only server-side timestamps - // from actual event responses are used to advance the cursor. Advancing to the client - // clock risks skipping events whose server-side updated timestamp falls in any clock - // skew gap between the client and Google's servers. await markWebhookSuccess(webhookId, logger) logger.info(`[${requestId}] No changed events for webhook ${webhookId}`) return 'success'