Open
Description
π Describe the bug
Input Blob Binding name fails with an activity trigger
π€ Expected behavior
activity function takes a string argument (the name of a blob) and uses that value to bind to blob input
β Steps to reproduce
try to bind a blob name to the value passed in an activity trigger
{
"scriptFile": "init.py",
"bindings": [
{
"name": "name",
"type": "activityTrigger",
"direction": "in"
},
{
"name": "inputb",
"direction": "in",
"type": "blob",
"path": "container/{name}.json",
"connection": "AzureWebJobsStorage",
"dataType": "string"
}
]
}
Should work like explained in this link but fails in Pyhon
Azure/azure-functions-durable-extension#172