summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2017-08-14 21:24:49 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2017-08-14 21:24:49 +0200
commite35f845c8e0d0dbad454b874e7aa529168fe61b7 (patch)
tree96534169645f70035605695f859a833b346966ef
parentbd9919db7e8cafcf9ff76c3135e574b20aafceea (diff)
downloadshrinker-e35f845c8e0d0dbad454b874e7aa529168fe61b7.tar.gz
shrinker-e35f845c8e0d0dbad454b874e7aa529168fe61b7.zip
fix default queue name
-rw-r--r--worker.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/worker.js b/worker.js
index 67e9637..ac584a7 100644
--- a/worker.js
+++ b/worker.js
@@ -14,7 +14,7 @@ const amqp = require("amqplib"),
const RABBITMQ_URI = process.env.RABBITMQ_URI,
DATABASE_URI = process.env.DATABASE_URI,
- QUEUE = process.env.QUEUE || "process",
+ QUEUE = process.env.QUEUE || "shrink",
LOGGLY_TOKEN = process.env.LOGGLY_TOKEN,
// matches + players, 5 players with 50 matches as default
BATCHSIZE = parseInt(process.env.BATCHSIZE) || 5 * (50 + 1),