This forum has moved to a new location and is in read-only mode. Please visit talk.octobercms.com to access the new location.
I am trying to push jobs to a queue, using octobers inbuilt driver, i am using queue:listen --timeout=6
but i am getting an exception  [Symfony\Component\Process\Exception\ProcessTimedOutException]                         
The process ""/usr/local/php5-5.4.14-20130505-195324/bin/php" artisan queue:work  --que
ue="default" --delay=0 --memory=128 --sleep=3 --tries=0 --env=production" exceeded the 
timeout of 6 seconds.                                                                    
when i try to view the failed jobs i get another Exception
[Illuminate\Database\QueryException]                                                   
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'october.failed_jobs' doesn't
exist (SQL: select * from failed_jobs order by id desc)      
I this an problem with October? or am i doing something wrong?
My markup
//push the job      
$cron = new CronQueue;
    $lg = $cron->push('Some\Plugin\Classes\AmazonS3', array('image_path' => '$uploadSuccess'));
//callback
class AmazonS3 {
public function fire($job, $data)
{
    \Log::info('Amazon');
    $job->delete();
}}
1-1 of 1