Marie Hoeger
Marie Hoeger
Here is roughly my swagger file: ``` { "swagger": "2.0", ... "paths": { "/{connectionId}/v1.0/connection": { "post": { ... "parameters": [ { "name": "body", "in": "body", "required": true, "schema": { "type":...
Whenever I create a copier project **not** at the repository root level of the, update doesn't work as I would expect (changes I made locally just get overwritten). Behavior with...
202 ACCEPTED should also be a valid response status code
In HttpTriggerAttributBindingProvider, we attempt to read the request body as a string [here](https://github.com/Azure/azure-webjobs-sdk-extensions/blob/dev/src/WebJobs.Extensions.Http/HttpTriggerAttributeBindingProvider.cs#L292). However, we often see this throw an exception. Per @mathewc: >We need to determine what types of...
If a user tries to send an event hub trigger message that isn't a valid JSON, the following exception will be thrown: ``` Binding parameters to complex objects (such as...
``` Deployment failed. Correlation ID: f171c78c-ad28-4426-aea4-cd9ae0bf57e9. { "Code": "BadRequest", "Message": "The parameter 'WEBSITE_CONTENTAZUREFILECONNECTIONSTRING' has an invalid value. Details: Cannot specify key vault references not referencing User Assigned Identity on Create...
Remove "queueTrigger" and "blobTrigger" properties in binding data. Binding data should be for metadata related to the message and not the contents of the message itself. Context here: https://github.com/Azure/azure-functions-host/issues/3105
Causes buffer overrun, first reported here: https://github.com/Azure/azure-functions-nodejs-worker/issues/142 The root cause of this issue is that we use a "map" in our protobuf file. From the [protocol buffers docs](https://developers.google.com/protocol-buffers/docs/proto3#maps): > If...
Since generated files will come from other repos, and other repos already .gitignore any change to this repo, having a .gitignore is a noop and is confusing. Context: https://github.com/Azure/azure-functions-nodejs-worker/pull/59
### Checklist - [x] I added a descriptive title - [x] I searched open reports and couldn't find a duplicate ### What happened? Hi there! I'm trying to install a...