diff --git a/README.md b/README.md index f7df4ce..ba7b077 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,15 @@ Build Create file named "config.local.yml" and put your private configuration: ``` -debug: true +debug: false +log: true +dryPrint: false +keepFile: false +serverId: null +concurrency: 4 +reconnectTimeout: 10 +refreshRate: 1000 +tmpDir: /dev/shm/printnatura db: host: localhost port: 3306 @@ -29,8 +37,7 @@ db: salix: url: http://localhost:3000 user: user -reconnectTimeout: 30 -refreshRate: 1000 + password: password ``` ## How to use diff --git a/config.yml b/config.yml index 6e63ea6..31c230b 100644 --- a/config.yml +++ b/config.yml @@ -2,7 +2,7 @@ debug: false log: true dryPrint: false keepFile: false -serverId: 1 +serverId: null concurrency: 4 reconnectTimeout: 10 refreshRate: 1000 diff --git a/print-server.js b/print-server.js index a452bcf..27a6712 100644 --- a/print-server.js +++ b/print-server.js @@ -5,6 +5,7 @@ const path = require('path'); const colors = require('colors'); const axios = require('axios'); const yml = require('require-yml'); +const os = require("os"); const selectQuery = fs.readFileSync(`sql/selectQueued.sql`).toString(); const jobDataQuery = fs.readFileSync(`sql/jobData.sql`).toString(); @@ -172,7 +173,7 @@ class PrintServer { now(), null, null, - this.conf.serverId, + this.conf.serverId || os.hostname, jobId ]); this.jobLog(jobId, 'debug', 'get: printing');