Commands which share the same reply might get Handler Stuck #547
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
As happened with the PAMCAM Handler of Flying Laptop:
Note:
The implementation had to overwrite
enableReplyInReplyMap
to call the default DHB implementation with"useAlternativeId = True"
. The DHB function does not check if the reply is currently in use.Implementations can solve this by checking that a command with the same reply is executing before commanding. I think, that the DHB function
enableReplyInReplyMap
should not overwriteinfo->command = command;
ifisExecuting
is True.