You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the code in __init__.py, the expected cardinality is 1:
defmain(event: func.EventHubEvent):
This was changed in #1179 to update the cardinality to one by chaining both the __init__.py file to take a single event, and renaming the name field in the function.json to reflect this, but the cardinality wasn't updated from many to one to match.
The text was updated successfully, but these errors were encountered:
When creating an event hub trigger using Python, there is a cardinality mismatch.
The
function.json
has the following:Notice
"cardinality": "many"
In the code in
__init__.py
, the expected cardinality is 1:This was changed in #1179 to update the cardinality to one by chaining both the
__init__.py
file to take a single event, and renaming thename
field in thefunction.json
to reflect this, but the cardinality wasn't updated frommany
toone
to match.The text was updated successfully, but these errors were encountered: