I have an azure function app that I have containerized and running in AKS. One of my http endpoints has a query string parameter of code=
. When I call that endpoint I immediately get a 500 response. To rule out anything in the code I only return a 400 just to validate that I am executing the code. The strange thing is that if I change the query string parameter to anything other that code
, for example codeg
, I get back the proper 400 response.
I've enabled debug logging and I am getting a route match so I know the call is getting to the function app. However I am getting no other logs to indicate what might be failing.