Skip to content

Commit 57c7228

Browse files
committed
Merge pull request #3158 from getsentry/feature/no-raven-normalize
Disable internal raven normalize
2 parents b2dd099 + 757d294 commit 57c7228

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/sentry/utils/raven.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,11 @@ def send(self, **kwargs):
9696

9797
kwargs['project'] = project.id
9898
try:
99-
data = helper.validate_data(project, kwargs)
99+
# This in theory is the right way to do it because validate
100+
# also normalizes currently, but we just send in data already
101+
# normalised in the raven client now.
102+
# data = helper.validate_data(project, kwargs)
103+
data = kwargs
100104
manager = EventManager(data)
101105
data = manager.normalize()
102106
tsdb.incr_multi([

0 commit comments

Comments
 (0)