diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-07-29 12:33:23 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-07-29 12:33:23 +0200 |
| commit | c24a9d4c8d9939fa13f1683f2dc4c666a92eae9d (patch) | |
| tree | 31ae09765bdcfa5903ab7bd92b59a1ae6cd68ddc | |
| parent | 9e3c593ca9e37e81ea40616ef50ffcb3fcb4810f (diff) | |
| download | cruncher-release/2.14.0.tar.gz cruncher-release/2.14.0.zip | |
use float for slowmoderelease/2.14.0
| -rw-r--r-- | worker.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -29,7 +29,7 @@ const RABBITMQ_URI = process.env.RABBITMQ_URI, BATCHSIZE = parseInt(process.env.BATCHSIZE) || 1000, LOAD_TIMEOUT = parseInt(process.env.LOAD_TIMEOUT) || 5, // s // wait time before next batch - SLOWMODE = parseInt(process.env.SLOWMODE) || 0; // s + SLOWMODE = parseFloat(process.env.SLOWMODE) || 0; // s const logger = new (winston.Logger)({ transports: [ |
