refs #5311 Now put hostname in serverId
gitea/printnatura/pipeline/head This commit looks good Details

This commit is contained in:
Guillermo Bonet 2023-02-27 10:49:21 +01:00
parent e8447ad66a
commit cc5c650c5f
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,6 @@ debug: false
log: true
dryPrint: false
keepFile: false
serverId: 1
concurrency: 4
reconnectTimeout: 10
refreshRate: 1000

View File

@ -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,
os.hostname,
jobId
]);
this.jobLog(jobId, 'debug', 'get: printing');