fix(all): TRUE multicloud.

This commit is contained in:
Rodrigo Rodriguez 2024-08-26 20:01:49 -03:00
parent ba6e9c2767
commit 45eb9fab3c

View file

@ -292,7 +292,7 @@ export class GBVMService extends GBService {
connections.forEach(async con => {
const connectionName = con['storageDriver']
const connectionName = /^\S+/.exec(con['storageDriver'])[0];
const dialect = con['storageDriver'];
const host = con['storageServer'];
@ -363,7 +363,6 @@ export class GBVMService extends GBService {
const connectionName = t.connection;
let con;
if (!con) {
throw new Error(`Invalid connection specified: ${connectionName}.`);
}