We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b2dd099 + 757d294 commit 57c7228Copy full SHA for 57c7228
src/sentry/utils/raven.py
@@ -96,7 +96,11 @@ def send(self, **kwargs):
96
97
kwargs['project'] = project.id
98
try:
99
- data = helper.validate_data(project, kwargs)
+ # 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
104
manager = EventManager(data)
105
data = manager.normalize()
106
tsdb.incr_multi([
0 commit comments