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
The Azure Function is hosted in B2 App Service Plan, communication goes through private VNet without any public access and everything is deployed in West Europe.
The text was updated successfully, but these errors were encountered:
Expected Behavior
Calling inputEvent.metadata["SystemProperties"]["correlation-id"] should return the correlation id as a string/bytes (inputEvent: azure.functions.EventHubEvent), see:
https://learn.microsoft.com/en-us/python/api/azure-eventhub/azure.eventhub.eventdata?view=azure-python#azure-eventhub-eventdata-system-properties
Actual Behavior
I receive an empty dict {} for the correlation-id. The whole "SystemProperties" dict looks like this:
{'message-id': {}, 'user-id': {'Length': 0, 'IsEmpty': True}, 'correlation-id': {}, 'content-type': 'application/json', 'x-opt-sequence-number-epoch': -1, 'x-opt-sequence-number': 90, 'x-opt-offset': 2479216, 'x-opt-enqueued-time': '2025-01-24T12:17:14.808+00:00', 'SequenceNumber': 90, 'Offset': 2479216, 'PartitionKey': None, 'EnqueuedTimeUtc': '2025-01-24T12:17:14.808'}
Steps to Reproduce
Relevant code being tried
Relevant log output
requirements.txt file
Where are you facing this problem?
Production Environment (explain below)
Additional Information
The Azure Function is hosted in B2 App Service Plan, communication goes through private VNet without any public access and everything is deployed in West Europe.
The text was updated successfully, but these errors were encountered: