Currently when the middleware is called and a file can't be found in blob storage, it immediately returns a 404.
This short circuits the request pipeline and prevents any other middleware further down the chain the handle it.
With the proposed change when a file can't be found, we simply proceed and call the next middleware in the chain.
Currently when the middleware is called and a file can't be found in blob storage, it immediately returns a 404. This short circuits the request pipeline and prevents any other middleware further down the chain the handle it.
With the proposed change when a file can't be found, we simply proceed and call the next middleware in the chain.