fix: tracking plan causing a panic in case of transformer non 200 status code response#6653
Merged
fix: tracking plan causing a panic in case of transformer non 200 status code response#6653
Conversation
1dab6c2 to
ea24dbd
Compare
ea24dbd to
21a96b6
Compare
fracasula
approved these changes
Feb 2, 2026
processor/internal/transformer/trackingplan_validation/trackingplan_validation_test.go
Show resolved
Hide resolved
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #6653 +/- ##
=======================================
Coverage 79.72% 79.72%
=======================================
Files 564 564
Lines 63012 63016 +4
=======================================
+ Hits 50237 50242 +5
- Misses 9800 9813 +13
+ Partials 2975 2961 -14 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Jayachand
approved these changes
Feb 2, 2026
🔒 Scanned for secrets using gitleaks 8.30.0
21a96b6 to
637320c
Compare
This was referenced Feb 2, 2026
Closed
Merged
atzoum
pushed a commit
that referenced
this pull request
Feb 2, 2026
🤖 I have created a release *beep* *boop* --- ## [1.67.0-rc.2](v1.66.0...v1.67.0-rc.2) (2026-02-02) ### Features * gateway partition migrator ([#6631](#6631)) ([344c85e](344c85e)) * integrate processor partition migrator in processor and embedded apps ([#6622](#6622)) ([b5ee878](b5ee878)) * processor partition migrator watch for new migrations ([#6611](#6611)) ([8bfb2ca](8bfb2ca)) * source node partition migrator ([#6614](#6614)) ([9e8b458](9e8b458)) * target node partition migrator ([#6617](#6617)) ([1cffea7](1cffea7)) * transformation language support ([#6637](#6637)) ([c989784](c989784)) ### Bug Fixes * negative pending events are recorded for destinations after startup ([#6619](#6619)) ([1e43b02](1e43b02)) * openapi definition validation ([#6643](#6643)) ([905f2ee](905f2ee)) * tracking plan causing a panic in case of transformer non 200 status code response ([#6653](#6653)) ([b51ca68](b51ca68)) ### Miscellaneous * cleanup code to push image to dockerhub for rudder-server ent ([#6628](#6628)) ([cf59323](cf59323)) * ecr builds rate limited ([#6657](#6657)) ([59c2edb](59c2edb)) * migrate from PAT to GitHub App token (SEC-58) ([#6641](#6641)) ([3c78db1](3c78db1)) * sync release v1.66.0 to main branch ([#6618](#6618)) ([c0b9619](c0b9619)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: rudderstack-github-actions[bot] <236995729+rudderstack-github-actions[bot]@users.noreply.github.com>
itsmihir
pushed a commit
that referenced
this pull request
Feb 4, 2026
🤖 I have created a release *beep* *boop* --- ## [1.67.0](v1.66.0...v1.67.0) (2026-02-02) ### Features * gateway partition migrator ([#6631](#6631)) ([344c85e](344c85e)) * integrate processor partition migrator in processor and embedded apps ([#6622](#6622)) ([b5ee878](b5ee878)) * processor partition migrator watch for new migrations ([#6611](#6611)) ([8bfb2ca](8bfb2ca)) * source node partition migrator ([#6614](#6614)) ([9e8b458](9e8b458)) * target node partition migrator ([#6617](#6617)) ([1cffea7](1cffea7)) * transformation language support ([#6637](#6637)) ([c989784](c989784)) ### Bug Fixes * negative pending events are recorded for destinations after startup ([#6619](#6619)) ([1e43b02](1e43b02)) * openapi definition validation ([#6643](#6643)) ([905f2ee](905f2ee)) * tracking plan causing a panic in case of transformer non 200 status code response ([#6653](#6653)) ([b51ca68](b51ca68)) ### Miscellaneous * cleanup code to push image to dockerhub for rudder-server ent ([#6628](#6628)) ([cf59323](cf59323)) * ecr builds rate limited ([#6657](#6657)) ([59c2edb](59c2edb)) * migrate from PAT to GitHub App token (SEC-58) ([#6641](#6641)) ([3c78db1](3c78db1)) * sync release v1.66.0 to main branch ([#6618](#6618)) ([c0b9619](c0b9619)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: rudderstack-github-actions[bot] <236995729+rudderstack-github-actions[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🔒 Scanned for secrets using gitleaks 8.30.0
Description
In case of a non HTTP 200 status code response from trackingplan transformer, the client's formulated response type was not including the original event's payload in the output field, causing a panic later, when we try to augment the event's
contextwith tracking plan information.Linear Ticket
resolves DAW-2915
Security