This commit is contained in:
Jan Prochazka
2024-09-12 15:53:56 +02:00
parent 3c4fad108b
commit 6f32e27eec

View File

@@ -115,7 +115,7 @@ async function handleDatabaseOp(op, { msgid, name }) {
const dmp = driver.createDumper();
dmp[op](name);
logger.info({ sql: dmp.s }, 'Running script');
await driver.query(systemConnection, dmp.s);
await driver.query(systemConnection, dmp.s, { discardResult: true });
}
await handleRefresh();