-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
[$2000] Attachment is being displayed as the last message on LHN instead of the actual last message #16530
Comments
Triggered auto assignment to @dylanexpensify ( |
Bug0 Triage Checklist (Main S/O)
|
Job added to Upwork: https://www.upwork.com/jobs/~016f332cd8af2af20b |
Current assignee @dylanexpensify is eligible for the External assigner, not assigning anyone new. |
Triggered auto assignment to Contributor-plus team member for initial proposal review - @s77rt ( |
Triggered auto assignment to @pecanoro ( |
ProposalPlease re-state the problem that we are trying to solve in this issue.If we send an attachment, then immediately send a text message, LHN will preview the attachment instead of the newest text. What is the root cause of that problem?Let's look at the current flow of the situation Send attachment -> Submit to API -> Send text -> Receive text pusher notification -> Receive attachment pusher notification. Notice that the pusher notification from the latter text is received first. This is reasonable since uploading and processing an attachment should take much longer than sending a simple text. Since the pusher notification contains What changes do you think we should make in order to solve the problem?We should have a logic to check if the information coming from Onyx is the latest message. We will not update the report data rendered by In SidebarUtils.js, we can have some check like this + // only update if the updated onyx data is the most recent
+ if (!chatReports[key] || chatReports[key].lastVisibleActionCreated < report.lastVisibleActionCreated)
chatReports[key] = report; What alternative solutions did you explore? (Optional)We can apply the same check, but with some other indicative fields such as Alternatively, we could apply the check in the Onyx update function. If the new data is not more recent, we will not update it in Onyx in the first place. However, I don't think this will be as clean as the change mentioned above. ResultWorking well after the fix Screen.Recording.2023-03-27.at.11.42.47.mov |
I think the issue will be fixed once we stop send Pusher event back to the client from which the event originated. https://expensify.slack.com/archives/C01GTK53T8Q/p1678131839265059?thread_ts=1678029220.184279&cid=C01GTK53T8Q cc @roryabraham |
@pecanoro Let's wait for @roryabraham input here. |
This comment was marked as off-topic.
This comment was marked as off-topic.
ProposalPlease re-state the problem that we are trying to solve in this issue.Attachment is being displayed as the last message on LHN instead of the actual last message What is the root cause of that problem?The reason is the same as this issue #15998, it is the order problem of updating onyx after the socket receives the messages What changes do you think we should make in order to solve the problem?so I would suggest using the same solution What alternative solutions did you explore? (Optional)Not Yet |
Yes, I can confirm this is an instance of the "replay effect", which @neil-marcellini has been implementing here. Putting this on HOLD |
Still on HOLD! |
@s77rt Thanks for your feedback. The root cause of the problem lies in this line When an array of objects are passed into Onyx.update(), the updates are not guaranteed to happen in the same order of array items as Onyx.update implementation does not guarantee that. The solution would be to iterate through QueuedOnyxUpdates and ensure that each Onyx.update is successfully done before proceeding with the next one. Please let me know if the RCA sounds good to you and I can update the proposal accordingly. |
@rojiphil Thanks for the quick follow up. The onyx update part in our case seems to be handled by Lines 611 to 619 in 5296b4e
Thus your RCA does not seem correct, even if we replace QueuedOnyxUpdates.queueOnyxUpdates with Onyx.update the issue would still be reproducible.
|
@s77rt Yes. You are right. Even if we replace QueuedOnyxUpdates.queueOnyxUpdates with Onyx.update, the issue would still be reproducible. However, please note that the problem is when we pass an array of updates into the Onyx.update. Instead, if we call Onyx.update for individual updates and wait for it to return before calling the next one, the data would be stored correctly.
I do not understand how, in our case, the onyx update part comes to this. Can you please share more details on this? What I observed was that once QueuedOnyxUpdates.queueOnyxUpdates is called, the data stored in indexedDB was incorrect even though the API responses were in order. This resulted in Meanwhile, I also tested this out and it seems to solve the issue. I have updated the proposal with a test video too. Kindly check. |
@rojiphil It's not clear to me if this is the actual root cause, or if there is some other more simple explanation. Let's wait to retest this until we deploy a backend fix to properly avoid sending Push events to the requesting client. I'll provide updates about that on the replay effect tracking issue. #12775 That being said, I agree that the updates are not guaranteed to happen in order. I did an investigation on that here. Please feel free to check that out and comment there, DM me on NewDot, or create an issue in react-native-onyx. If we decide it needs to be fixed than we should fix it in Onyx. |
@rojiphil I think something is wrong about |
@pecanoro or @neil-marcellini Can we put this on hold again for #12775? |
Back to on hold 😄 I have hope it will get resolved this time 🤞 |
Making this Weekly to match the cadence of #12775 |
No change this week; still held on #12775 |
Still on hold? @neil-marcellini |
Yes unfortunately, but it should be off hold soon. See the update here. |
Off hold, you can retest on staging! |
I will do so tomorrow! |
Alright, so, this is no longer reproducible on staging! I vote we pay the bug reporter (@adeel0202) and close this out. Any disagreement? Unless I hear otherwise, I'll do that tomorrow |
📣 It's been a week! Do we have any satisfactory proposals yet? Do we need to adjust the bounty for this issue? 💸 |
Ok, I'm now paying @adeel0202 and then closing this out |
Contract sent to @adeel0202 via Upwork |
Accepted, thanks. |
And paid. All done, closing out. Thanks! |
Thanks @conorpendergrast. Please end the contract on Upwork too. |
@adeel0202 Upwork wouldn't let me do it on Friday, and that's done now! |
If you haven’t already, check out our contributing guidelines for onboarding and email [email protected] to request to join our Slack channel!
Action Performed:
Expected Result:
The text sent after attachment should be displayed on LHN
Actual Result:
Attachment is being displayed as the last message on LHN
Workaround:
Can the user still use Expensify without this being fixed? Have you informed them of the workaround?
Platforms:
Which of our officially supported platforms is this issue occurring on?
Version Number: 1.2.89-0
Reproducible in staging?: y
Reproducible in production?: y
If this was caught during regression testing, add the test name, ID and link from TestRail:
Email or phone of affected tester (no customers):
Logs: https://stackoverflow.com/c/expensify/questions/4856
Notes/Photos/Videos:
Expensify/Expensify Issue URL:
Issue reported by: @adeel0202
Slack conversation: https://expensify.slack.com/archives/C049HHMV9SM/p1679851671259879
View all open jobs on GitHub
Recording.65.mp4
Screen.Recording.2023-03-26.at.10.16.11.PM.mov
Upwork Automation - Do Not Edit
The text was updated successfully, but these errors were encountered: