hi
i use this package to create zoom meetings and it works fine
now i need to repeat meetings on daily bases , so i created a job and call that job via scheduler
protected function schedule(Schedule $schedule)
{
$schedule->job(new ZoomJob())->everyMinute();
}
in my ZoomJob i have simple request to get a user and log it in database ApiReport table
i was surprised to find my user in db log is null , after playing around with my code i found that if i change my queue driver to sync it works fine and i get the user ... but if i set the driver to database it wont work
hi i use this package to create zoom meetings and it works fine now i need to repeat meetings on daily bases , so i created a job and call that job via scheduler
in my
ZoomJob
i have simple request to get a user and log it in databaseApiReport
tablei was surprised to find my user in db log is null , after playing around with my code i found that if i change my queue driver to sync it works fine and i get the user ... but if i set the driver to database it wont work
any idea why this is happening ?