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
When we set the value of a property in the device twin to null, it seems that its presence keeps getting toggled on and off every time we set it to null.
For example, in device explorer, and starting from a clean device twin, if we:
Step #
Send
Resulted document
Notification sent to client
1
“a” : “1”
“a” : “1”
Yes (a, null)
2
“a” : null
<nothing>
Yes (a, null)
3
“a” : null
“a” : null
Yes (a, null)
4
“a” : null
<nothing>
Yes (a, null)
5
“a” : null
“a” : null
Yes (a, null)
I expect that setting a value to null will always yield the same result.
The text was updated successfully, but these errors were encountered:
When we set the value of a property in the device twin to null, it seems that its presence keeps getting toggled on and off every time we set it to null.
For example, in device explorer, and starting from a clean device twin, if we:
I expect that setting a value to null will always yield the same result.
The text was updated successfully, but these errors were encountered: