Skip to content

Commit

Permalink
fix(s3-batch-exports): Do not abort s3 upload (#17829)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasfarias authored Oct 6, 2023
1 parent 42f926a commit 5168895
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions posthog/temporal/workflows/s3_batch_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,10 +230,6 @@ async def __aenter__(self):
return self

async def __aexit__(self, exc_type, exc_value, traceback) -> bool:
if exc_type == asyncio.CancelledError:
# Ensure we clean-up the cancelled upload.
await self.abort()

return False


Expand Down

0 comments on commit 5168895

Please sign in to comment.