fix(basic.gblib): Allow MERGE keyword in storage #380. @othonlima

This commit is contained in:
Rodrigo Rodriguez 2024-01-04 11:20:05 -03:00
parent 656f7ccd2b
commit 1abb3d4cca
2 changed files with 8 additions and 8 deletions

View file

@ -332,10 +332,10 @@ export class GBVMService extends GBService {
} }
}, },
pool: { pool: {
max: 32, max: 5,
min: 8, min: 0,
idle: 40000, idle: 10000,
evict: 40000, evict: 10000,
acquire: acquire acquire: acquire
} }
}; };

View file

@ -160,10 +160,10 @@ export class GBCoreService implements IGBCoreService {
} }
}, },
pool: { pool: {
max: 32, max: 5,
min: 8, min: 0,
idle: 40000, idle: 10000,
evict: 40000, evict: 10000,
acquire: acquire acquire: acquire
} }
}; };