We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When creating an Azure Function call in ADF, it demands a valid body for a POST request.
Entering an empty body { } is accepted, however when the changes are published, and refreshed the body section remains empty.
{ }
This causes future publish changes to fail because the body is empty and triggers the validation error.
Expected behavior: After publishing changes, the body should contain { } instead of being empty.
Work-around: enter the default {"body":{"myMessage":"Sample"}} in the body and publish changes.
{"body":{"myMessage":"Sample"}}
This just seems like a bug to me, am I missing something?
The text was updated successfully, but these errors were encountered:
We are also having this issue.
Sorry, something went wrong.
No branches or pull requests
When creating an Azure Function call in ADF, it demands a valid body for a POST request.
Entering an empty body
{ }
is accepted, however when the changes are published, and refreshed the body section remains empty.This causes future publish changes to fail because the body is empty and triggers the validation error.
Expected behavior: After publishing changes, the body should contain
{ }
instead of being empty.Work-around: enter the default
{"body":{"myMessage":"Sample"}}
in the body and publish changes.This just seems like a bug to me, am I missing something?
The text was updated successfully, but these errors were encountered: