.netazureazure-blob-trigger

Can't have 2 blob trigger functions in the same FA listening on the same container


I have single FA that contains 2 functions. Both are triggered from the same container, but on different filters.

When I do that, I get following error:

enter image description here

Function 1

enter image description here

Function 2

enter image description here

I event tried creating a new container, and having 2 different containers in functions, but result is the same. Can't find anything on the official MSDN docs.


Solution

  • The problem was with the length of the blob name. Emulator allows blob name with 256 chars, so after I changed AzureWebJobsStorage to use storage ACC (it allows 1000 chars), everything continued working as expected