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
fix(jobs): increase retry delay to be greater than timeout
> The --timeout value should always be at least several seconds shorter than your retry_after configuration value. This will ensure that a worker processing a given job is always killed before the job is retried. If your --timeout option is longer than your retry_after configuration value, your jobs may be processed twice.
https://laravel.com/docs/6.x/queues#job-expirations-and-timeouts
refactor(core): move AbstractSeatPlugin from services to seat package (……#597)
in order to keep consistency with packages, AbstractSeatPlugin is
moved to main package - as it will be extended by every single seat
packages (core and third party).
implement a dedicated permission registration method