httpRequestHandler single request?

Hi - 

With the httpRequestHandler extension point it seems it only handles a single request at a time. This is easily demonstrated by a simple httpRequestHandler with a sleep in it, and sending several requests.

Is there a registry setting or similar where I can change that behaviour? 

I had a similar problem previously until I discovered: Registry.get("ide.rest.api.requests.per.minute").setValue... so I'm hoping for a similarly easy solution.

cheers, jamie

 

0

```

int workerCount = PlatformUtils.isIdeaCommunity() || PlatformUtils.isDatabaseIDE() || PlatformUtils.isCidr() ? 1 : 2;

```

Currently, no setting. For what do you need?

0

请先登录再写评论。