fix(all): TRUE multicloud.

This commit is contained in:
Rodrigo Rodriguez 2024-08-26 19:55:16 -03:00
parent 1dc5c0ce83
commit 61bfb367b6

View file

@ -341,14 +341,6 @@ export class GBVMService extends GBService {
if (!min[connectionName]) { if (!min[connectionName]) {
GBLogEx.info(min, `Loading custom connection ${connectionName}...`); GBLogEx.info(min, `Loading custom connection ${connectionName}...`);
min[connectionName] = new Sequelize(storageName, username, password, sequelizeOptions); min[connectionName] = new Sequelize(storageName, username, password, sequelizeOptions);
if (connectionName === 'llm') {
min[`llm`] = {
type: dialect,
username,
database: storageName,
password
};
}
} }
}); });