Skip to content

Commit

Permalink
Merge pull request #16681 from themsaid/preventLoggingSync
Browse files Browse the repository at this point in the history
Use 'sync' as queue name for Sync Queues
  • Loading branch information
taylorotwell authored Dec 6, 2016
2 parents 2354db8 + f4747c2 commit 0869e0b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/Illuminate/Queue/Jobs/SyncJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,14 @@ public function getJobId()
{
return '';
}

/**
* Get the name of the queue the job belongs to.
*
* @return string
*/
public function getQueue()
{
return 'sync';
}
}

0 comments on commit 0869e0b

Please sign in to comment.