diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-08-14 21:24:49 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-08-14 21:24:49 +0200 |
| commit | e35f845c8e0d0dbad454b874e7aa529168fe61b7 (patch) | |
| tree | 96534169645f70035605695f859a833b346966ef | |
| parent | bd9919db7e8cafcf9ff76c3135e574b20aafceea (diff) | |
| download | shrinker-e35f845c8e0d0dbad454b874e7aa529168fe61b7.tar.gz shrinker-e35f845c8e0d0dbad454b874e7aa529168fe61b7.zip | |
fix default queue name
| -rw-r--r-- | worker.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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), |
