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 2
2
3
3
## Unreleased
4
4
5
+ - Fix not listening to queue events because ` QueueManager ` is registered as ` queue ` in the container and not by it's class name (#568 )
5
6
- Fix status code not populated on transaction if response did not inherit from ` Illuminate\Http\Response ` like ` Illuminate\Http\JsonResponse ` (#573 )
6
7
7
8
## 2.13.0
Original file line number Diff line number Diff line change @@ -72,9 +72,9 @@ private function bindEvents(array $tracingConfig): void
72
72
73
73
$ handler ->subscribe ();
74
74
75
- if ($ this ->app ->bound (QueueManager::class )) {
75
+ if ($ this ->app ->bound (' queue ' )) {
76
76
$ handler ->subscribeQueueEvents (
77
- $ this ->app ->make (QueueManager::class )
77
+ $ this ->app ->make (' queue ' )
78
78
);
79
79
}
80
80
}
You can’t perform that action at this time.
0 commit comments