Azure / Azure/azure-functions-durable-python
Input Blob Binding name fails with an activity trigger
- Dominant language
- Python
- Stars
- 157
- Forks
- 70
- Avg merge
- 2d 10h
- Merged PRs (30d)
- 2
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
https://github.com/Azure/azure-functions-durable-extension/pull/172
Contributor guide
Assessment
This issue has not been assessed yet.