You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I created a real-time chat module using Reverb and Laravel Echo. In order to broadcast events beyond the waiting of executing queues, I am utilizing sync for QUEUE_CONNECTION and implementing the ShouldBroadcastNow interface. However, I'm receiving the error Pusher error: cURL error 28: Connection timeout after 10001 ms when I send several messages in a single second.
Steps To Reproduce
Set up Reverb in your Laravel project, and configure QUEUE_CONNECTION to sync in the .env file, and then create one event that implements the ShouldBroadcastNow interface. and broadcast this event multiple times within a second.