summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2017-08-16 20:21:05 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2017-08-16 20:21:05 +0200
commit34637251dae4e5117ff6982947d1c52198549190 (patch)
tree336b4ed2f50b9d908bff8867353a9347b085ebb5
parentf5258c495d489ba1ea7fef8f30a671f2e21bc453 (diff)
downloadbridge-34637251dae4e5117ff6982947d1c52198549190.tar.gz
bridge-34637251dae4e5117ff6982947d1c52198549190.zip
fix queue defaults
-rw-r--r--service_crunch.js2
-rw-r--r--service_telemetry.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/service_crunch.js b/service_crunch.js
index ad5ba8d..71053f0 100644
--- a/service_crunch.js
+++ b/service_crunch.js
@@ -10,7 +10,7 @@ const logger = global.logger,
CRUNCH_BAN_QUEUE = process.env.CRUNCH_BAN_QUEUE || "crunch_ban",
CRUNCH_PHASE_QUEUE = process.env.CRUNCH_PHASE_QUEUE || "crunch_phase",
CRUNCH_PLAYER_QUEUE = process.env.CRUNCH_PLAYER_QUEUE || "crunch_player",
- CRUNCH_TOURNAMENT_QUEUE = process.env.CRUNCH_TOURNAMENT_QUEUE || "crunch_tournament",
+ CRUNCH_TOURNAMENT_QUEUE = process.env.CRUNCH_TOURNAMENT_QUEUE || "crunch_global_tournament",
SHOVEL_SIZE = parseInt(process.env.SHOVEL_SIZE) || 1000;
module.exports = class Cruncher extends Service {
diff --git a/service_telemetry.js b/service_telemetry.js
index b7690cc..7dfac51 100644
--- a/service_telemetry.js
+++ b/service_telemetry.js
@@ -7,7 +7,7 @@ const Promise = require("bluebird"),
const logger = global.logger,
SAMPLE_QUEUE = process.env.SAMPLE_QUEUE || "telesuck",
- SAMPLE_TOURNAMENT_QUEUE = process.env.SAMPLE_TOURNAMENT_QUEUE || "telesuck";
+ SAMPLE_TOURNAMENT_QUEUE = process.env.SAMPLE_TOURNAMENT_QUEUE || "telesuck_tournament";
module.exports = class Analyzer extends Service {
constructor() {