You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Saves feedback given data in an event format. This function should only be called by the new feedback consumer's ingest strategy, to process feedback envelopes (feedback v2).
18
-
It is currently instrumented as a task in sentry.tasks.store.
17
+
"""Saves feedback given data in an event format. This function should only
18
+
be called by the new feedback consumer's ingest strategy, to process
19
+
feedback envelopes (feedback v2). It is currently instrumented as a task in
20
+
sentry.tasks.store.
19
21
20
-
If the save is successful and the `associated_event_id` field is present, this will
21
-
also save a UserReport in Postgres (shim to v1). This is to allow queries by the group_id relation, which we don't have in clickhouse.
22
+
If the save is successful and the `associated_event_id` field is present,
23
+
this will also save a UserReport in Postgres (shim to v1). This is to allow
24
+
queries by the group_id relation, which we don't have in clickhouse.
# TODO: this logic should be extracted to a shim_to_userreport function which returns a report dict. After that this function can be removed and the store task can directly call feedback ingest functions.
38
+
# TODO: this logic should be extracted to a shim_to_userreport function
39
+
# which returns a report dict. After that this function can be removed
40
+
# and the store task can directly call feedback ingest functions.
0 commit comments