fix: añadido segunda parametro y cambiado config
gitea/vn-rfid/pipeline/head This commit looks good Details

This commit is contained in:
Vicent Llopis 2023-03-30 13:43:03 +02:00
parent 83af061bf0
commit 0ef0f2bfc0
2 changed files with 10 additions and 10 deletions

View File

@ -1,14 +1,14 @@
arcId: 1
port: 1234
ip: 10.1.16.1
ip: 1.2.3.4
env: dev
interval: 1000
interval: 3000
reconnectInterval: 5000
counterInterval: 1000
db:
host: db.verdnatura.es
port: 3308
database: vn
user: arc
password: c57180a7bMD%
multipleStatements: true
insecureAuth: true
host: host
port: 3307
user: user
password: password
multipleStatements: false
insecureAuth: true

View File

@ -9,6 +9,6 @@ export default async(rfids, arcId) => {
await counter(null, arcId);
} catch (error) {
console.log(error);
await con.query(`UPDATE vn.arcRead SET error = ?, counter = NULL WHERE id = ?;`, [error]);
await con.query(`UPDATE vn.arcRead SET error = ?, counter = NULL WHERE id = ?;`, [error, arcId]);
}
};