Replies: 1 comment
-
I haven't tried it, but can you just change the following in config/stripe-webhooks.php to point to a new connection and set that connection to sync? In my local environment, I set QUEUE_CONNECTION=sync, and all the jobs execute immediately. In your case, you probably want to create a new connection and set it to sync just for this use case.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to avoid any delay in working on the webhooks, I know I can avoid the
ShouldQueue
method to make my jobs synchronous, but I see that theSpatie\StripeWebhooks\ProcessStripeWebhookJob
is using anyway the queue (and I suppose it calls my custom job).There is some configuration that I can use to avoid using the queue at all?
Beta Was this translation helpful? Give feedback.
All reactions