Raven
Raven copied to clipboard
Custom Queues config
Added ability to specify the queue connection and the actual queue to write errors to via config
'queue' => [
/*
|--------------------------------------------------------------------------
| Connection
|--------------------------------------------------------------------------
|
| Set the connection to use from the list in config/queue.php
|
*/
'connection' => '',
/*
|--------------------------------------------------------------------------
| Queue
|--------------------------------------------------------------------------
|
| Set the queue to use for raven
|
*/
'queue' => ''
]
Fixed tests
updated readme
Great thanks! I'll try to find some time over the next couple of days to review & merge.
Also improves error handling with queue jobs.
Improving the error handling would be much welcome, as currently I sometimes find Beanstalkd crashed because it accumulated 70K tasks of exceptions that can't be sent to Sentry and thus get into a loop of trying to send exception, fails so throws exception, which it tries to send to Sentry, which fails and thus generates a new exception, which it tries to send to Sentry, which fails... ad aeternum, or until Beanstalkd keels over.
Any word on this?
Any news on this?