Skip to content

Commit

Permalink
chore(batch-exports): Do not retry on endpoint errors (#24544)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasfarias authored Aug 27, 2024
1 parent f5b03ab commit dcfbd8e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions posthog/temporal/batch_exports/s3_batch_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -725,6 +725,8 @@ async def run(self, inputs: S3BatchExportInputs):
"ClientError",
# An S3 bucket doesn't exist.
"NoSuchBucket",
# Couldn't connect to custom S3 endpoint
"EndpointConnectionError",
],
finish_inputs=finish_inputs,
)

0 comments on commit dcfbd8e

Please sign in to comment.