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: {
|
pool: {
|
||||||
max: 32,
|
max: 5,
|
||||||
min: 8,
|
min: 0,
|
||||||
idle: 40000,
|
idle: 10000,
|
||||||
evict: 40000,
|
evict: 10000,
|
||||||
acquire: acquire
|
acquire: acquire
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -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
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue