From e35f845c8e0d0dbad454b874e7aa529168fe61b7 Mon Sep 17 00:00:00 2001 From: schneefux Date: Mon, 14 Aug 2017 21:24:49 +0200 Subject: fix default queue name --- worker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'worker.js') 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), -- cgit v1.3.1