-
Notifications
You must be signed in to change notification settings - Fork 447
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
Add function group to metadata and sync triggers #9735
Conversation
src/WebJobs.Script.WebHost/Extensions/FunctionMetadataExtensions.cs
Outdated
Show resolved
Hide resolved
87ae6b1
to
bed295e
Compare
Checks appear to be stuck - can't restart them either (web page locks up). Going to close and re-open the PR. |
@jviau I think there is an actual failure:
|
fa8ae66
to
78bb606
Compare
Will re-create PR with branch on this repo. |
Issue describing the changes in this PR
resolves #9732
Pull request checklist
release_notes.md
Additional information
This PR adds function grouping calculation as an extension method
FunctionMetadata.GetFunctonGroup()
. Function grouping is included in sync-triggers payload if it is non-null. Function grouping calculation works as follows:FunctionMetadata.Properties["FunctionGroup"]
is present, return that.http
ordurable
respectively.null
if none of the above checks succeed.Some additional changes include binding & function metadata extensions refactoring.