Skip to content

Commit

Permalink
fix the arg
Browse files Browse the repository at this point in the history
  • Loading branch information
kneeyo1 committed Oct 18, 2024
1 parent 23cb250 commit b3da377
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sentry/consumers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ def ingest_transactions_options() -> list[click.Option]:
"synchronize_commit_group_default": "generic_events_group",
"click_options": _POST_PROCESS_FORWARDER_OPTIONS,
"static_args": {
"eventStreamType": EventStreamEventType.Generic,
"eventstream_type": EventStreamEventType.Generic,
},
},
"post-process-forwarder-transactions": {
Expand All @@ -385,7 +385,7 @@ def ingest_transactions_options() -> list[click.Option]:
"synchronize_commit_group_default": "transactions_group",
"click_options": _POST_PROCESS_FORWARDER_OPTIONS,
"static_args": {
"eventStreamType": EventStreamEventType.Transaction,
"eventstream_type": EventStreamEventType.Transaction,
},
},
"post-process-forwarder-errors": {
Expand All @@ -395,7 +395,7 @@ def ingest_transactions_options() -> list[click.Option]:
"synchronize_commit_group_default": "snuba-consumers",
"click_options": _POST_PROCESS_FORWARDER_OPTIONS,
"static_args": {
"eventStreamType": EventStreamEventType.Error,
"eventstream_type": EventStreamEventType.Error,
},
},
"process-spans": {
Expand Down

0 comments on commit b3da377

Please sign in to comment.