-
Notifications
You must be signed in to change notification settings - Fork 197
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change node event hub cardinality #430
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Have requested a few changes.
Also test the template updates in prod portal.
Follow the steps here https://github.com/Azure/azure-webjobs-sdk-templates#testing-via-azure-functions-portal
Bindings/bindings.json
Outdated
{ | ||
"name": "cardinality", | ||
"value": "enum", | ||
"resource": "EventHub", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove "resource": "EventHub". This opening blades for resource selection like storage, eventhub connection
Bindings/bindings.json
Outdated
], | ||
"label": "$eventHubTrigger_cardinality_label", | ||
"help": "$eventHubTrigger_cardinality_help", | ||
"placeholder": "$selectCardinality" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't need placeholder. It is only for textbox. This would be a dropdown.
Bindings/bindings.json
Outdated
"display": "many" | ||
} | ||
], | ||
"label": "$eventHubTrigger_cardinality_label", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add corresponding values for $eventHubTrigger_cardinality_label and $eventHubTrigger_cardinality_help in resource files.
Here is a sample .
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Didn't show up in the diff, funky.
@soninaren gonna need you on this one, we need to discuss what lights up in the portal / how much of that we want to do :)
resolves #429