-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[darwin-framework-tool] timed Interactions only work with commands that have fields #19427
Comments
This is not intended behavior. It's a bug in the fix for #17998. Fix coming up. |
bzbarsky-apple
added a commit
to bzbarsky-apple/connectedhomeip
that referenced
this issue
Jun 10, 2022
For commands with no fields we were ignoring the params struct we allocated. Fixes project-chip#19427
And for what it's worth, the argument was ignored for commands that have not fields, regardless of whether they require a timed invoke or not. |
bzbarsky-apple
changed the title
[darwin-framework-tool] timed Interactions only work with commands that require them
[darwin-framework-tool] timed Interactions only work with commands that have fields
Jun 10, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Noticed that while testing with darwin-framework-tool that timed interactions (adding --timedInteractionTimeoutMs 200) don't appear to be working with all commands. For example:
Will properly send the off command to the server, but on the server side, I do not see any
TimedRequestMessage
log lines.However running:
Results in the actual timed request being sent to the server.
Not sure if this is really a big deal, but the standard Chip-tool sends a timedInteractionRequest for any command if the
--timedInteractionTimeoutMs
argument is used, regardless of the command.The text was updated successfully, but these errors were encountered: