Skip to content

Commit

Permalink
Split Queue Handlers
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcus Kram committed Sep 1, 2018
1 parent 5ffabb2 commit 4a0ec61
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 9 deletions.
9 changes: 9 additions & 0 deletions StartConvertQueueHandler.sh
@@ -0,0 +1,9 @@
#!/bin/bash

Q_BIN="php artisan queue:work --queue=convert --tries=2"

while x=1;
do
$Q_BIN
sleep 1
done
9 changes: 9 additions & 0 deletions StartDownloadQueueHandler.sh
@@ -0,0 +1,9 @@
#!/bin/bash

Q_BIN="php artisan queue:work --queue=download --tries=2"

while x=1;
do
$Q_BIN
sleep 1
done
9 changes: 0 additions & 9 deletions StartQHandler.sh

This file was deleted.

0 comments on commit 4a0ec61

Please sign in to comment.