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'm scheduling a few jobs to be queued every minute. It has been working fine during past few days when testing. Then yesterday I added manual tags and it was working fine for couple of hours, but when server hit midnight UTC time something weird started to happen. Redis is saying wrong type fault?
Of 3 jobs only the first one would be added to the queue. Error log:
public function handle()
{
$service = new MonitorAppController();
$service->cleanUpEventData();
}
public function tags()
{
return ['monitoring'];
}
Adding tags to jobs are not mentioned in https://laravel.com/docs/5.6/queues. Unsure where this really belongs. Adding job to queue fails (which is not part of Horizon) but tags() are added by Horizon.
I'm using Laravel 5.6.12 with Apache/2.4.10 (Debian), PHP 7.2.7 and Redis server v=4.0.10.
Any help appreciated. :)
The text was updated successfully, but these errors were encountered:
Hi,
I'm scheduling a few jobs to be queued every minute. It has been working fine during past few days when testing. Then yesterday I added manual tags and it was working fine for couple of hours, but when server hit midnight UTC time something weird started to happen. Redis is saying wrong type fault?
Of 3 jobs only the first one would be added to the queue. Error log:
This kept going on for next several hours until I removed the manual tags from job class. The setup is fairly simple:
And jobs look like:
Adding tags to jobs are not mentioned in https://laravel.com/docs/5.6/queues. Unsure where this really belongs. Adding job to queue fails (which is not part of Horizon) but tags() are added by Horizon.
I'm using Laravel 5.6.12 with Apache/2.4.10 (Debian), PHP 7.2.7 and Redis server v=4.0.10.
Any help appreciated. :)
The text was updated successfully, but these errors were encountered: