I'm getting the following error
A first chance exception of type 'System.FormatException' occurred in Microsoft.Azure.WebJobs.Host.dll Additional information: Blob identifiers must be in the format container/blob.
public static void ProcessBlob([BlobTrigger("images/{name}")] string input)
{
Console.Write(input);
}
even if i have nothing in the images container
the error went away when i cleared the azure-jobs-host-output and azure-jobs-host-archive folders then came back when i uploaded the job to azure webjobs, any idea?
I downloaded the updated github solution and having the same issue whenever BlobTrigger function gets invoked, queuestrigger is working alright though!