Merge branch 'master' into develop
All checks were successful
IntegryManagementSystem_Multi/pipeline/head This commit looks good

This commit is contained in:
2025-01-28 12:10:40 +01:00
2 changed files with 1 additions and 3 deletions

View File

@@ -89,7 +89,6 @@ public class MultiDBTransactionManager implements AutoCloseable {
public void Destroy() throws Exception {
this.commitAll();
this.closeAll();
this.dbDatasources.clear();
this.dbPrimary = null;
}

View File

@@ -43,6 +43,7 @@ import java.util.List;
public class InventarioService {
@Autowired
private MultiDBTransactionManager multiDBTransactionManager;
@Autowired
private SetupGest setupGest;
@@ -458,8 +459,6 @@ public class InventarioService {
// CANCELLAZIONE TABELLE TEMPORANEE
UtilityDB.dropTmpTable(conn, tmpTable);
multiDBTransactionManager.closeAll();
return mtbInvent;
}