Skip to content

Commit

Permalink
chore(batch-exports): Make StringDataRightTruncation non-retryable (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasfarias authored Oct 1, 2024
1 parent 4e41c0f commit 881a017
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions posthog/temporal/batch_exports/postgres_batch_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -672,6 +672,8 @@ async def run(self, inputs: PostgresBatchExportInputs):
"UniqueViolation",
# Something changed in the target table's schema that we were not expecting.
"UndefinedColumn",
# A VARCHAR column is too small.
"StringDataRightTruncation",
],
finish_inputs=finish_inputs,
)

0 comments on commit 881a017

Please sign in to comment.