Browse Source

ref: Remove the default entity from the post process forwarder (#40131)

This is no longer a good default (and should probably be eventually
deprecated all together) since errors and transactions are now being
mapped to different topics by default in Sentry and Snuba (which
prevents this from working properly). This change forces the user to
pass a value here.
Lyn Nagara 2 years ago
parent
commit
7bf65015d2
1 changed files with 0 additions and 1 deletions
  1. 0 1
      src/sentry/runner/commands/run.py

+ 0 - 1
src/sentry/runner/commands/run.py

@@ -349,7 +349,6 @@ def cron(**options):
 )
 @click.option(
     "--entity",
-    default="all",
     type=click.Choice(["all", "errors", "transactions"]),
     help="The type of entity to process (all, errors, transactions).",
 )