From 4b40a43497d782ed9eba33a3f5d66e6a8a34838d Mon Sep 17 00:00:00 2001 From: Felix Bernhard Date: Thu, 4 Sep 2025 20:19:22 +0200 Subject: [PATCH] keep `command` tag after console has finished running --- src/Sentry/Laravel/Features/ConsoleIntegration.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Sentry/Laravel/Features/ConsoleIntegration.php b/src/Sentry/Laravel/Features/ConsoleIntegration.php index a329ee41..de199ff4 100644 --- a/src/Sentry/Laravel/Features/ConsoleIntegration.php +++ b/src/Sentry/Laravel/Features/ConsoleIntegration.php @@ -65,10 +65,6 @@ public function commandFinished(ConsoleEvents\CommandFinished $event): void // Flush any and all events that were possibly generated by the command Integration::flushEvents(); - - Integration::configureScope(static function (Scope $scope): void { - $scope->removeTag('command'); - }); } /**