File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/Sentry/Laravel/Tracing Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 22
33## Unreleased
44
5+ - Fix not listening to queue events because ` QueueManager ` is registered as ` queue ` in the container and not by it's class name (#568 )
56- Fix status code not populated on transaction if response did not inherit from ` Illuminate\Http\Response ` like ` Illuminate\Http\JsonResponse ` (#573 )
67
78## 2.13.0
Original file line number Diff line number Diff line change @@ -72,9 +72,9 @@ private function bindEvents(array $tracingConfig): void
7272
7373 $ handler ->subscribe ();
7474
75- if ($ this ->app ->bound (QueueManager::class )) {
75+ if ($ this ->app ->bound (' queue ' )) {
7676 $ handler ->subscribeQueueEvents (
77- $ this ->app ->make (QueueManager::class )
77+ $ this ->app ->make (' queue ' )
7878 );
7979 }
8080 }
You can’t perform that action at this time.
0 commit comments