Jason Judge
Jason Judge
Cool. I know little python, so cannot help much during development. However, I am here for testing.
Trying an option format like this: php artisan rabbitmq:exchange-declare ${RABBITMQ_EXCHANGE_NAME} --option="alternate-exchange|${RABBITMQ_EXCHANGE_NAME}.unrouted"
I'll work on this over the next few weeks.
Running Laravel 9 and using this driver neither the `->afterCommit()` method nor the `'after_commit' => true` config option were working. That left if scratching our heads for some time -...
Cool :-) We are going to be running some high load tests tomorrow with this PR included, so can let you know how it goes, if that helps at all....
Just as an aside, we are developing a service that needs to route emails from multiple sources after parsing the contents. We may have multiple IMAP boxes, web hooks, a...
At a minimum, the `App\Providers\AppServiceProvider` needs to be aware that the package may not be installed. ```php ... use Wn\Generators\CommandsServiceProvider; ... class AppServiceProvider extends ServiceProvider { public function register() {...
Even simpler in `bootstrap/app.php`: ```php if (class_exists(Wn\Generators\CommandsServiceProvider::class)) { $app->register(Wn\Generators\CommandsServiceProvider::class); } ```
I'll just throw this here, in case it raises any interest. `bash` allows a default value to be used if the referenced variable is not set or null, like this:...
Sorry, not had time to look at this yet. Solution posted by [Hinzaldi](https://wordpress.org/support/users/hinzaldi/) looks like a fix: > line 109: > > replace > $product_id = $product->id; > > with:...