I'm getting the following error when running my continuous webjob.
An unhandled exception of type 'Microsoft.WindowsAzure.Storage.StorageException' occurred in Microsoft.Azure.WebJobs.Host.dll
Additional information. The client could not finish the operation within specified timeout.
My webjob is triggered by an Azure Storage Queue. The webjob starts fine and runs for around 8-10 minutes when a message arrives in the queue, before then it just stops running. At this point it starts processing that message again and the webjob again runs for 8-10 minutes. This loop continues until I stop the webjob manually.
I managed to get the error above by remotely debugging the webjob. I get a popup in visual studio after 8-10 minutes - StorageException was unhandled.
Is there a default timeout between the webjob and the Azure Queue / Blob storage?
Really stuck with this one, so any help appreciated.
RequestInformation
property of the exception, you should see more details. Can you please share that? – Gaurav Mantri