Skip to content

Commit 033d2ee

Browse files
committed
fix(polling): use position-only idempotency key for sheets rows
1 parent 5c53822 commit 033d2ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/sim/lib/webhooks/polling/google-sheets.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ async function processRows(
397397
try {
398398
await pollingIdempotency.executeWithIdempotency(
399399
'google-sheets',
400-
`${webhookData.id}:${spreadsheetId}:${sheetName}:row${rowNumber}:${row.join('|')}`,
400+
`${webhookData.id}:${spreadsheetId}:${sheetName}:row${rowNumber}`,
401401
async () => {
402402
// Map row values to headers
403403
let mappedRow: Record<string, string> | null = null

0 commit comments

Comments
 (0)