This repository has been archived by the owner on Jul 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pudkrong
force-pushed
the
upgrade-to-v4
branch
from
October 26, 2023 16:07
28b4fc5
to
6755ddb
Compare
pudkrong
force-pushed
the
upgrade-to-v4
branch
from
October 27, 2023 11:15
6755ddb
to
96cda12
Compare
coderbyheart
suggested changes
Oct 27, 2023
pudkrong
force-pushed
the
upgrade-to-v4
branch
from
October 30, 2023 13:17
b0d1054
to
445c81d
Compare
pudkrong
force-pushed
the
upgrade-to-v4
branch
from
October 31, 2023 13:22
ac80665
to
bb096de
Compare
pudkrong
force-pushed
the
upgrade-to-v4
branch
from
October 31, 2023 13:38
bb096de
to
1f20b96
Compare
coderbyheart
suggested changes
Oct 31, 2023
EventHub context has `triggerMetadata` property where contains event meta data values. In the triggerMetadata property, there are 2 properties we are interested. - `propertiesArray` - User properties of the event data that the user explicitly added during send operations - It presents as non-empty array - If user does not explicitly add, it will be empty object ``` "propertiesArray: [ {}, {} ] ``` - `systemPropertiesArray` - It is always present
coderbyheart
approved these changes
Oct 31, 2023
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
In response to the absence of the
function.json
file in programming model 4, we will now use thehandler.ts
file as the initial point for the Azure Function. This file will take on the responsibility of registering the function in Azure, following the modifications outlined in thepackage.json
file, with particular attention to themain
property. It's worth noting that during the packaging and deployment process, the file extension will be changed tohandler.mjs
Ref: https://learn.microsoft.com/en-us/azure/azure-functions/functions-node-upgrade-v4?tabs=v4