feat: enhance DatabaseManagerService and QueryExecuterService with timeout settings, add AxiosPlugin for HTTP requests, and update DatabasePlugin to use query method
This commit is contained in:
@ -61,7 +61,7 @@ export class QueryExecuterService {
|
||||
{
|
||||
removeOnComplete: true,
|
||||
removeOnFail: true,
|
||||
attempts: 3,
|
||||
attempts: 0,
|
||||
}
|
||||
);
|
||||
|
||||
@ -130,6 +130,8 @@ export class QueryExecuterService {
|
||||
|
||||
const vm = new Vm({
|
||||
memoryLimit: 128,
|
||||
timeLimit: BigInt(100e9),
|
||||
cpuTimeLimit: BigInt(5e9),
|
||||
modules: modules,
|
||||
plugins: plugins,
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user