Tag: Azure Function

Set Azure Function timeout without republishing
Set Azure Function timeout without republishing
Blog Posts

A while ago I needed to change an Azure Function timeout but I wanted to avoid, if possible, to republish it. After a little while searching I discovered this page which explain how to overwrite the values specified in the host.json file with the values specified from the Azure configuration. The article states that if you specify… READ MORE

Working with CosmosClient in Azure Functions
Working with CosmosClient in Azure Functions
Blog Posts

Azure Functions allows you to inject an instance of the DocumentClient class to perform, read or write operations on your CosmosDB. This concept is known as input binding and there are multiple bindings available for various Azure resources (See Azure Functions triggers and bindings concepts). Unfortunately, there is no input binding for the new CosmosClient class that is part of the .NET SDK v3. In… READ MORE