↧
Answer by Matias Quaranta for COSMOS DB Trigger Azure Function changefeed error
The reason is explained in the error you are seeing: Function1: The listener for function 'Function1' was unable to start. Microsoft.Azure.WebJobs.Extensions.DocumentDB: Either the source collection...
View ArticleAnswer by Ross Dargan for COSMOS DB Trigger Azure Function changefeed error
For the function trigger to work it needs to create a collection called leases. You can do this your self, or update the CosmosDBTrigger trigger to tell the function host it can make it if it doesn't...
View ArticleCOSMOS DB Trigger Azure Function changefeed error
I am using azure function 1.0.13 SDK with 1.2.0 DocumentDB extension. The following is the code that i am trying to run: [FunctionName("Function1")] public static void Run([CosmosDBTrigger(...
View ArticleAnswer by Anil C for COSMOS DB Trigger Azure Function changefeed error
You should check the Cosmos DB connection string. Try opening the same via Cosmos DB Explorer
View Article