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

Making an Azure Function Reddit Bot
Making an Azure Function Reddit Bot
Blog Posts

Around the time I was celebrating my 100th post, I made a big to-do about opening my own subreddit at /r/FoxDeploy. I had great intentions, I would help people in an easier to read format than here in the comments…but then, I just kind of, you know, forgot to check the sub for four months. But no… READ MORE