Luca Battistelli

Results 3 issues of Luca Battistelli

##### Description Textual responses get wrapped in JSON, the current template calls `.json` regardless of output type. ```java if (apiResponse.hasData()) { routingContext.json(apiResponse.getData()); } ``` ##### openapi-generator version 7.2.0 Also checked...

Issue: Bug

##### Description Generated code does not compile for text/plain request bodies. There is a redeclaration like so: ```java RequestParameter body = requestParameters.body(); String body = body != null ? DatabindCodec.mapper().convertValue(body.get(),...

Issue: Bug

**Describe the bug** [_get_conn](https://github.com/aio-libs/aiokafka/blob/master/aiokafka/client.py#L424) refreshes closed connections but [_send](https://github.com/aio-libs/aiokafka/blob/master/aiokafka/client.py#L515) doesn't use `_get_conn` so it will try to send data over a connections that got closed e.g. due to being idle...