Skip to content

Commit

Permalink
fix: remove job watch from telescope
Browse files Browse the repository at this point in the history
  • Loading branch information
abourtnik committed Jan 16, 2024
1 parent de0ecde commit 7cba93d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/Providers/TelescopeServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function register(): void

return $entry->isReportableException() ||
$entry->isFailedRequest() ||
$entry->isFailedJob() ||
//$entry->isFailedJob() ||
$entry->isSlowQuery() ||
$entry->isException() ||
$entry->hasMonitoredTag();
Expand Down
2 changes: 1 addition & 1 deletion config/telescope.php
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
'ignore_paths' => [],
],

Watchers\JobWatcher::class => true,
Watchers\JobWatcher::class => false,

Watchers\LogWatcher::class => [
'enabled' => true,
Expand Down

0 comments on commit 7cba93d

Please sign in to comment.