diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-04-16 22:14:49 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-04-16 22:14:49 +0200 |
| commit | 26d72ee19e47b15242f79d3d7bcd60cf8539c0cd (patch) | |
| tree | c57f009b214c3458daa246cd852eaf65b231009e | |
| parent | 573ddf8778d295829b943e68878de97a29db75bd (diff) | |
| download | cruncher-26d72ee19e47b15242f79d3d7bcd60cf8539c0cd.tar.gz cruncher-26d72ee19e47b15242f79d3d7bcd60cf8539c0cd.zip | |
fix syntax error on global stats
| -rw-r--r-- | worker.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -124,7 +124,7 @@ var RABBITMQ_URI = process.env.RABBITMQ_URI, console.log("got work to do, let's go", msg.properties.type, player_id); - if (msg.properties.type == "global" && global_done == false) { + if (msg.properties.type == "global") { let records = await calculate_global_point(); if (records != undefined) global_records = global_records.concat(records); |
