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 arcId: 1
port: 1234 port: 1234
ip: 10.1.16.1 ip: 1.2.3.4
env: dev env: dev
interval: 1000 interval: 3000
reconnectInterval: 5000 reconnectInterval: 5000
counterInterval: 1000
db: db:
host: db.verdnatura.es host: host
port: 3308 port: 3307
database: vn user: user
user: arc password: password
password: c57180a7bMD% multipleStatements: false
multipleStatements: true insecureAuth: true
insecureAuth: true

View File

@ -9,6 +9,6 @@ export default async(rfids, arcId) => {
await counter(null, arcId); await counter(null, arcId);
} catch (error) { } catch (error) {
console.log(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]);
} }
}; };