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
I have a message route query on iotHub like below:-
IS_OBJECT($twin.properties.reported.deviceOperations) OR $twin.properties.reported.deviceOperations = null
Expected result:-
Message should be delivered to the endpoint having twin like below:-
this is not getting delivered to the endpoint but it should due to this condition $twin.properties.reported.deviceOperations = null.
And the reported property deviceOperations is getting cleared in twin but somehow not delivered to the endpoint.
Also when i put the message routing query as true I get the message in my endpoint as below
[EventHubMonitor] [9:21:31 AM] Message received:
I have a message route query on iotHub like below:-
IS_OBJECT($twin.properties.reported.deviceOperations) OR $twin.properties.reported.deviceOperations = null
Expected result:-
Message should be delivered to the endpoint having twin like below:-
This is getting delivered and is working fine due to the
IS_OBJECT
query in message routingThe problem/issue arises in the second query for json below
this is not getting delivered to the endpoint but it should due to this condition
$twin.properties.reported.deviceOperations = null
.And the reported property deviceOperations is getting cleared in twin but somehow not delivered to the endpoint.
Also when i put the message routing query as
true
I get the message in my endpoint as below[EventHubMonitor] [9:21:31 AM] Message received:
So only the condition
$twin.properties.reported.deviceOperations = null
in message routing doesn't workAm I missing anything?
Note:- The test works in the Azure UI portal for above JSON.
The text was updated successfully, but these errors were encountered: