alfechner

Results 30 comments of alfechner

@lipika-pal-partior you refer to [set](https://registry.terraform.io/providers/hashicorp/helm/latest/docs/resources/release#set), [set_list](https://registry.terraform.io/providers/hashicorp/helm/latest/docs/resources/release#set_list) and [set_sensitive](https://registry.terraform.io/providers/hashicorp/helm/latest/docs/resources/release#set_sensitive), right? I wasn't aware of those arguments, thanks for pointing me into that direction. But wouldn't the custom values are applied back...

Hi @RobbeSneyders, really appreciate your helpful input here. The `multipart/form-data` didn't work for me. I looked into the code and I believe that [starlette's form parser reads the entire stream...

No, you're right. It works the exact same way with `from connexion.context import request`. The code above is a leftover from my attempt to work around the `infinitive loop` issue...

> Is the `infinite loop` issue you mention the same as described in #1812? Looks like it, yes 👍

I wanted to have another look at the `multipart/form-data`. I have a request body with (1) a file and (2) some metadata for that file: ```yaml requestBody: required: true content:...

Hi @Khushiyant, thanks so much for your reply and the hint to use `demux`. This parameter is available for the `exec_run` method but not for the `logs` method I'm using....

The `ExceptionMiddleware` implements 3 methods handling the different kind of exceptions: * [`problem_handler`](https://github.com/spec-first/connexion/blob/fcfe151e690c8d8864605ff94923c8b8ce834bfb/connexion/middleware/exceptions.py#L73) * [`http_exception`](https://github.com/spec-first/connexion/blob/fcfe151e690c8d8864605ff94923c8b8ce834bfb/connexion/middleware/exceptions.py#L80) * [`common_error_handler`](https://github.com/spec-first/connexion/blob/fcfe151e690c8d8864605ff94923c8b8ce834bfb/connexion/middleware/exceptions.py#L93) All 3 methods log the exceptions to level `error`. If the middleware does...

We run into a similar issue with the validation in [`connexion.validators.json`](https://github.com/spec-first/connexion/blob/fcfe151e690c8d8864605ff94923c8b8ce834bfb/connexion/validators/json.py#L71). The code (1) logs an error and (2) raises an [BadRequestProblem](https://connexion.readthedocs.io/en/latest/exceptions.html#connexion.exceptions.BadRequestProblem) which again logs an error. I assume that...

Closed in favour of #1925.

We have the same issue for all our Python projects in our organisation.