fix(basic.gblib): Allow MERGE keyword in storage #380. @othonlima
This commit is contained in:
parent
656f7ccd2b
commit
1abb3d4cca
2 changed files with 8 additions and 8 deletions
|
@ -332,10 +332,10 @@ export class GBVMService extends GBService {
|
|||
}
|
||||
},
|
||||
pool: {
|
||||
max: 32,
|
||||
min: 8,
|
||||
idle: 40000,
|
||||
evict: 40000,
|
||||
max: 5,
|
||||
min: 0,
|
||||
idle: 10000,
|
||||
evict: 10000,
|
||||
acquire: acquire
|
||||
}
|
||||
};
|
||||
|
|
|
@ -160,10 +160,10 @@ export class GBCoreService implements IGBCoreService {
|
|||
}
|
||||
},
|
||||
pool: {
|
||||
max: 32,
|
||||
min: 8,
|
||||
idle: 40000,
|
||||
evict: 40000,
|
||||
max: 5,
|
||||
min: 0,
|
||||
idle: 10000,
|
||||
evict: 10000,
|
||||
acquire: acquire
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue