diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-04-03 16:33:28 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-04-03 16:33:28 +0200 |
| commit | 3ab7ff81923d4472c6aa04e5a9a5f36e64d6fdd8 (patch) | |
| tree | fe6575d3e5199fc108939145fffb5d596a6c2017 | |
| parent | fda35295a35e807709e1ef8b8d4dfb1e443f4d8a (diff) | |
| download | compiler-3ab7ff81923d4472c6aa04e5a9a5f36e64d6fdd8.tar.gz compiler-3ab7ff81923d4472c6aa04e5a9a5f36e64d6fdd8.zip | |
do not log queries
| -rw-r--r-- | worker.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ var RABBITMQ_URI = process.env.RABBITMQ_URI || "amqp://localhost", IDLE_TIMEOUT = process.env.PROCESSOR_IDLETIMEOUT || 500; // ms (async () => { - let seq = new Seq(DATABASE_URI), + let seq = new Seq(DATABASE_URI, { logging: () => {} }), model = require("../orm/model")(seq, Seq), rabbit = await amqp.connect(RABBITMQ_URI), ch = await rabbit.createChannel(); |
