Azure / Azure/azure-functions-durable-python

Input Blob Binding name fails with an activity trigger

Open
#282 7 comments 1 reaction 0 assignees View on GitHub
bug fixed-in-v2 P2
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

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.