From 7bf65015d2d405578740a01321f6b7e0757e4820 Mon Sep 17 00:00:00 2001 From: Lyn Nagara Date: Mon, 17 Oct 2022 16:03:10 -0700 Subject: [PATCH] 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. --- src/sentry/runner/commands/run.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/sentry/runner/commands/run.py b/src/sentry/runner/commands/run.py index 9dcfdb4e306b2a..cb639c24f3995b 100644 --- a/src/sentry/runner/commands/run.py +++ b/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).", )