-
Notifications
You must be signed in to change notification settings - Fork 460
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
EdgeHub fails to parse valid D2C creation time UTC string #7294
Comments
@stefanb2 Thanks for reporting this. It does appear to be a bug in Edge Hub: I believe the example in the docs would also cause the exception you reported because it doesn't include a fraction value before the "Z". I'm a little reluctant to make any changes here because this code has been in place since the beginning of the project. I worry that any changes here might break someone else who relied on the existing behavior. But perhaps it would be good to investigate whether "downgrading" the parsing call from |
Closing this as "won't fix" as there is a workaround and changing the behaviour may introduce unexpected consequences. Please reopen if you are unable to work around this issue. |
This solution is not acceptable. Pointing to a workaround is invalid, because this broken behavior is not documented.
That option is disabled: "You do not have permission to reopen this issue". |
Reopening issue, sorry I didnt mean to dismiss this issue so quickly, I think I misunderstood the documentation explicitly not aligning with the functionality. Talking to @damonbarry, perhaps the codepath that @stefanb2 pointed, we could a catch the exception from ParseExact, and then try again with a Parse. This might reduce a chance of a regression? |
We are investigating more. In the meantime, @PatAltimore and @bishal41 can you help with correcting the doc issue @damonbarry mentioned? Also can we document this as a known issue? |
Expected Behavior
I follow the System Properties of D2C IoT messages table and add a creation time property to event messages. Those messages will be routed
FROM /message/modules/<MODULE>/outputs/<OUTPUT>
)edgeHub
INTO $upstream
)Message creation & sending:
This works fine when module uses
MQTT
protocol to connect toedgeHub
:Current Behavior
When I switch the module from
MQTT
toAMQP
protocol (NOTE: no other changes to the code!):then messages are no longer routed from the Azure IoT Edge device to the Azure IoT Hub.
Instead you can now see an exception in
edgeHub
log, f.ex.The traceback points to this line in the
edgeHub
source code in DeviceClientMessageConverter.cs:The
"o"
format in the above line only seems to acceptYYYY-MM-DDTHH:MM:SS.1234567Z
as valid. I confirmed this by applying the following workaround to my code:With the workaround in place the errors disappeared from the log and messages were routed again from the Azure IoT Edge device to the Azure IoT Hub.
Steps to Reproduce
Context (Environment)
Device Information
Debian GNU/Linux 12 (bookworm)
(tailored build of Raspberry Pi OS)arm64
Runtime Versions
1.5.0
1.5
1.5
26.1.2
Additional Information
What is the intention behind the strict
DateTime.ParseExact(..., "o", ...)
("The round-trip ("O", "o") format specifier" according to .NET documentation)? It should accept any valid UTC ISO-8601 string.The text was updated successfully, but these errors were encountered: