0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-21 13:39:22 +01:00

feat(err): cymbal for all teams (#26312)

This commit is contained in:
Oliver Browne 2024-11-20 15:06:11 +02:00 committed by GitHub
parent 010e353a80
commit e0e9a67fa6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -259,7 +259,7 @@ export class EventPipelineRunner {
event.team_id
)
if (event.event === '$exception' && event.team_id == 2) {
if (event.event === '$exception' && !event.properties?.hasOwnProperty('$sentry_event_id')) {
const [exceptionAck] = await this.runStep(
produceExceptionSymbolificationEventStep,
[this, rawEvent],

View File

@ -397,7 +397,7 @@ describe('EventPipelineRunner', () => {
'prepareEventStep',
'extractHeatmapDataStep',
'createEventStep',
'emitEventStep',
'produceExceptionSymbolificationEventStep',
])
})
})