diff options
Diffstat (limited to 'service_crunch.js')
| -rw-r--r-- | service_crunch.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/service_crunch.js b/service_crunch.js index b326da8..4f73d0c 100644 --- a/service_crunch.js +++ b/service_crunch.js @@ -166,10 +166,10 @@ module.exports = class Cruncher extends Service { }); // tables are split, and so are services and queues await Promise.map(phases, async (ph) => - await this.forward(this.getTarget(category + "_phase"), ph.id, + await this.forward(this.getTarget(category + "_phase"), ph.id.toString(), { persistent: true })); await Promise.map(phases, async (ph) => - await this.forward(this.getTarget(category + "_ban"), ph.id, + await this.forward(this.getTarget(category + "_ban"), ph.id.toString(), { persistent: true })); // update lphcid & refetch |
