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 deleteActionHandler mechanism does not invoke the callback when shadows are deleted. To fix, make the deleteAcceptedTopic buffer static in aws_iot_shadow.c:
Hi @johnhopwood,
Thank you for pointing this out. I have added a bugfix to our list of tasks for the next SDK release. I will update this issue and close when the release is out.
Please do let us know if you find any more issues with the SDK or have any further suggestions. Thank you for using AWS IoT.
The deleteActionHandler mechanism does not invoke the callback when shadows are deleted. To fix, make the
deleteAcceptedTopic
buffer static inaws_iot_shadow.c
:static char deleteAcceptedTopic[MAX_SHADOW_TOPIC_LENGTH_BYTES];
Currently, the handler is not found by
_aws_iot_mqtt_internal_deliver_message
b/c the topic was created on the stack.https://github.com/aws/aws-iot-device-sdk-embedded-C/blob/master/src/aws_iot_shadow.c#L92
The text was updated successfully, but these errors were encountered: