-
Notifications
You must be signed in to change notification settings - Fork 200
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Proxy duplicating header values #596
Comments
Looks like an issue in proxies code when calling a local function. Working on a fix. |
That's too much of a hassle. For now we have a code workaround to handle the duplicate scenario. We will wait for this fix. Thank you. |
The fix is released. |
I have a function and a proxy for that function in my azure env.
I am invoking the proxy from logic app and what I am seeing is that by the time the function receives the request all the header values have been duplicated.
For e.x:= logic app sends x-ms-execution-location as eastus
but when the function receives the request the header value is turned to
x-ms-execution-location : "eastus, eastus"
why is this happening? How do I avoid this kind of duplication?
I tried to do a request override by setting x-ms-execution-location: ""
This simply concatenates the header x-ms-execution-location with a comma "eastus,"
Please help.
The text was updated successfully, but these errors were encountered: