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 a message object comes through these nodes the same message object should be modified and returned instead of creating a new message and sending that.
The reason for this is a lot of nodes will store data in other attributes that need to be read later down the flow. If you are crafting a new message object these variables will not propagate down the flow.
A good example of why this is a problem is if you wire up an http node, the Xiaomi BLE node, then a http response node the response will not be able to be sent because the request information got deleted from the message object.
The text was updated successfully, but these errors were encountered:
When a message object comes through these nodes the same message object should be modified and returned instead of creating a new message and sending that.
The reason for this is a lot of nodes will store data in other attributes that need to be read later down the flow. If you are crafting a new message object these variables will not propagate down the flow.
A good example of why this is a problem is if you wire up an http node, the Xiaomi BLE node, then a http response node the response will not be able to be sent because the request information got deleted from the message object.
The text was updated successfully, but these errors were encountered: