We have an azure function that is supposed to scale images down to a smaller size and save them in a storage container. For that we use bindings type: blob, and direction out. Our problem is that approx 1/100 images does not get saved in all formats... (f.eks one image can result in files for small, large, xlarge, but medium is missing) ```{
"bindings": [
{
"name": "newBlob",
"type": "blobTrigger",
"direction": "in",
"path": "raw-images/{name}",
"connection": "AzureWebJobsStorage"
},
{
"name": "smallJpg",
"type": "blob",
"path": "images/small/{name}",
"connection": "AzureWebJobsStorage",
"direction": "out"
},
{
"name": "mediumJpg",
"type": "blob",
"path": "images/medium/{name}",
"connection": "AzureWebJobsStorage",
"direction": "out"
},
{
"name": "largeJpg",
"type": "blob",
"path": "images/large/{name}",
"connection": "AzureWebJobsStorage",
"direction": "out"
},
{
"name": "xlargeJpg",
"type": "blob",
"path": "images/xlarge/{name}",
"connection": "AzureWebJobsStorage",
"direction": "out"
}
],
"scriptFile": "../dist/ImageFileTrigger/index.js"
}