Skip to content

Commit

Permalink
chore(batch-exports): Add StringDataRightTruncation error as non-retr…
Browse files Browse the repository at this point in the history
…yable (#25468)
  • Loading branch information
tomasfarias authored Oct 10, 2024
1 parent 60c55eb commit 5a2867a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions posthog/temporal/batch_exports/redshift_batch_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -586,6 +586,9 @@ async def run(self, inputs: RedshiftBatchExportInputs):
"InvalidSchemaName",
# Missing permissions to, e.g., insert into table.
"InsufficientPrivilege",
# A column, usually properties, exceeds the limit for a VARCHAR field,
# usually the max of 65535 bytes
"StringDataRightTruncation",
],
finish_inputs=finish_inputs,
)

0 comments on commit 5a2867a

Please sign in to comment.