Rafael Pol
Rafael Pol
Looking at the error it seems like a permission error. Could you check if you are setting the correct az cli credentials? You can do that either with `az account...
Yeah the maintainers would need to open a PR to the serverless documentation to update it. They have config documentation here: https://github.com/serverless/serverless-azure-functions/blob/master/docs/CONFIG.md Also, I find it useful to look at...
It seems that azure removed the ability to have multiple languages in one function app with their v2 function core runtime. https://github.com/Azure/app-service-announcements/issues/129 > Function App can only have functions of...
We just tried it again with and without x-azure-settings and it is adding the cardinality to the host.json in both cases. Not able to reproduce and we tried the same...
We just migrated to 2.1.0 to be able to deploy node12 and v3 function runtime and stumbled again with this issue. We have our own fork and by adding the...
We fixed it by adding the following item to the eventHubTrigger binding settings array ``` { "name": "cardinality", "value": "enum", "required": false, "defaultValue": "many", "enum": [ { "value": "one", "display":...
Unfortunately, azure seems to have abandoned this project. The community might need to fork it to fix bugs and add new features. Function app has been adding features to hook...
We stumble upon this issue some time ago since we are using premium APIM and want to reuse it among all our functions app. I pushed a change to my...
npm install removes resolved and integrity properties from package-lock.json if installed from cache
I had this happened to me during npm solving merge conflicts with `npm-merge-driver`. Similarly to @rbell-mfj, I restored package-lock.json before merge conflict resolution, applied the updates manually, integrity and resolved...