Its my 30th time trying to figure this out :( i have an azure function with blob trigger. I got this error when i upload 5+ files with 45 mb average.
2020-08-07T06:13:56.240 [Error] Singleton lock renewal failed for blob 'func-eres-integration-dev/host' with error code 409: LeaseIdMismatchWithLeaseOperation. The last successful renewal completed at 2020-08-07T06:13:37.9Z (18340 milliseconds ago) with a duration of 221 milliseconds. The lease period was 15000 milliseconds.
trigger looks like this
[FunctionName("ParseAndLoad")]
public async System.Threading.Tasks.Task RunAsync([BlobTrigger("pbar-staging/{name}", Connection = "pbarBlobConnectionVault")] Stream myBlob, string name, ILogger log, ExecutionContext exCtx)
{
Any help will be appreciated.