feat: refs #5846 Requested changes

This commit is contained in:
Guillermo Bonet 2024-03-11 09:25:43 +01:00
parent dfa1db1432
commit 7d68eaa3ac
2 changed files with 9 additions and 9 deletions

View File

@ -156,11 +156,19 @@ class Push extends Command {
throw new Error(`Cannot obtain exclusive lock, used by connection ${isUsed}`);
}
async function eventScheduler(isActive) {
await conn.query(
`SET GLOBAL event_scheduler = ${isActive ? 'ON' : 'OFF'}`
);
}
async function releaseLock() {
await conn.query(`DO RELEASE_LOCK('myt_push')`);
await eventScheduler(true);
}
try {
await eventScheduler(false);
await this.push(myt, opts, conn);
} catch(err) {
try {
@ -225,7 +233,6 @@ class Push extends Command {
// Apply versions
this.emit('applyingVersions');
await this.eventScheduler(false);
let nVersions = 0;
let nChanges = 0;
@ -343,7 +350,6 @@ class Push extends Command {
await conn.query('FLUSH PRIVILEGES');
await conn.query(`DROP TEMPORARY TABLE tProcsPriv`);
}
await this.eventScheduler(true);
}
for (const change of changes)
@ -535,12 +541,6 @@ class Push extends Command {
return a.path.localeCompare(b.path);
});
}
async eventScheduler(isActive) {
await conn.query(
`SET GLOBAL event_scheduler = ${isActive ? 'ON' : 'OFF'}`
);
}
}
const typeMap = {

View File

@ -1,6 +1,6 @@
{
"name": "@verdnatura/myt",
"version": "1.6.8",
"version": "1.6.9",
"author": "Verdnatura Levante SL",
"description": "MySQL version control",
"license": "GPL-3.0",