PIKSI 320 Add log message when state msg_id do not match request msg_id#539
Open
jithk wants to merge 3 commits intoaltti/before_Piksi_330from
Open
PIKSI 320 Add log message when state msg_id do not match request msg_id#539jithk wants to merge 3 commits intoaltti/before_Piksi_330from
jithk wants to merge 3 commits intoaltti/before_Piksi_330from
Conversation
sokhealy
reviewed
Jan 12, 2023
src/setting_sbp_cb.c
Outdated
| /* Traverse the pending requests */ | ||
| request_state_t *state = ctx->req_list; | ||
| while (state != NULL) { | ||
| while (state != NULL && state->msg_id == SBP_MSG_SETTINGS_READ_BY_INDEX_REQ) { |
Contributor
There was a problem hiding this comment.
I think you should leave the while loop alone and add an if (state->msg_id == SBP_MSG_SETTINGS_READ_BY_INDEX_REQ) for request_state_signal.
We still need the while loop to call state = state->next;
Author
There was a problem hiding this comment.
That will consume all the remaining states. Is that expected?
Contributor
There was a problem hiding this comment.
I am not 100% sure. I do not know the original intention of this code block, but from the comments it seems like that is the intention, to /* Traverse the pending requests */.
sokhealy
approved these changes
Jan 12, 2023
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Trying to fix https://swift-nav.atlassian.net/browse/PIKSI-320