Salim Aboubacar
Salim Aboubacar
This should help: https://github.com/tiangolo/fastapi/issues/717#issuecomment-583826657
This works as well: ```python from fastapi import FastAPI, status, Response app = FastAPI() @app.delete("/", status_code=status.HTTP_204_NO_CONTENT, response_class=Response) def read_root(): return None ```
It's worth noting that it's the 3rd issue related to this topic created this week, so the current state of things is a loss of time for many users
The change was for sure made too fast, there is no way to control the options anymore: https://github.com/marcospereirampj/python-keycloak/pull/531/files#diff-0bbc8509272e0bb1f2f6be00fcb4f0ae29ff7522c88dcc085a305a0224659aa6R542-R547 => What about all the other options ? Like verify_signature, etc