Skip to content
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

Allow priority requests to go to the front of the sequential queue #23669

Merged
merged 28 commits into from
Aug 11, 2023

Conversation

tgolen
Copy link
Contributor

@tgolen tgolen commented Jul 26, 2023

Details

When the app reconnects to the network and needs to get incremental OnyxUpdates from the server, that request needs to be prioritized at the front of the sequential queue so that it is processed immediately and the pending updates are applied to the most recent data from the server.

Fixed Issues

$ https://github.com/Expensify/Expensify/issues/299547

Tests

Note: This can only be tested on Web by internal engineers for now

  1. Have two clients (A - web and B - any other platform) signed into the same account
  2. On client A, open the JS console and filter for [OnyxUpdates]
  3. On client A, switch to a different tab
  4. On client B, change the language setting
  5. On client A, reopen the tab for NewDot
  6. On client A, verify the language preference updated
  7. On client A, verify the JS console shows the logs showing that a gap in the IDs was detected:

image

For C+ tester

Do a general test on the app and confirm that everything still works as intended.

  • Verify that no errors appear in the JS console

Offline tests

None

QA Steps

Same as tests

  • Verify that no errors appear in the JS console

PR Author Checklist

  • I linked the correct issue in the ### Fixed Issues section above
  • I wrote clear testing steps that cover the changes made in this PR
    • I added steps for local testing in the Tests section
    • I added steps for the expected offline behavior in the Offline steps section
    • I added steps for Staging and/or Production testing in the QA steps section
    • I added steps to cover failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
    • I tested this PR with a High Traffic account against the staging or production API to ensure there are no regressions (e.g. long loading states that impact usability).
  • I included screenshots or videos for tests on all platforms
  • I ran the tests on all platforms & verified they passed on:
    • Android / native Note: this is only testable on web
    • Android / Chrome Note: this is only testable on web
    • iOS / native Note: this is only testable on web
    • iOS / Safari Note: this is only testable on web
    • MacOS / Chrome / Safari
    • MacOS / Desktop Note: this is only testable on web
  • I verified there are no console errors (if there's a console error not related to the PR, report it or open an issue for it to be fixed)
  • I followed proper code patterns (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick)
    • I verified that the left part of a conditional rendering a React component is a boolean and NOT a string, e.g. myBool && <MyComponent />.
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
      • If any non-english text was added/modified, I verified the translation was requested/reviewed in #expensify-open-source and it was approved by an internal Expensify engineer. Link to Slack message:
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is approved by marketing by adding the Waiting for Copy label for a copy review on the original GH to get the correct copy.
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I followed the guidelines as stated in the Review Guidelines
  • I tested other components that can be impacted by my changes (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar are working as expected)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.js or at the top of the file that uses the constant) are defined as such
  • I verified that if a function's arguments changed that all usages have also been updated correctly
  • If a new component is created I verified that:
    • A similar component doesn't exist in the codebase
    • All props are defined accurately and each prop has a /** comment above it */
    • The file is named correctly
    • The component has a clear name that is non-ambiguous and the purpose of the component can be inferred from the name alone
    • The only data being stored in the state is data necessary for rendering and nothing else
    • If we are not using the full Onyx data that we loaded, I've added the proper selector in order to ensure the component only re-renders when the data it is using changes
    • For Class Components, any internal methods passed to components event handlers are bound to this properly so there are no scoping issues (i.e. for onClick={this.submit} the method this.submit should be bound to this in the constructor)
    • Any internal methods bound to this are necessary to be bound (i.e. avoid this.submit = this.submit.bind(this); if this.submit is never passed to a component event handler like onClick)
    • All JSX used for rendering exists in the render method
    • The component has the minimum amount of code necessary for its purpose, and it is broken down into smaller components in order to separate concerns and functions
  • If any new file was added I verified that:
    • The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(themeColors.componentBG))
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.
  • I have checked off every checkbox in the PR author checklist, including those that don't apply to this PR.

Screenshots/Videos

Web

image

Mobile Web - Chrome

Note: this is only testable on web

Mobile Web - Safari

Note: this is only testable on web

Desktop

Note: this is only testable on web

iOS

Note: this is only testable on web

Android

Note: this is only testable on web

@tgolen tgolen marked this pull request as ready for review August 7, 2023 21:55
@tgolen tgolen requested a review from a team as a code owner August 7, 2023 21:55
@melvin-bot melvin-bot bot removed the request for review from a team August 7, 2023 21:55
@melvin-bot
Copy link

melvin-bot bot commented Aug 7, 2023

@thesahindia Please copy/paste the Reviewer Checklist from here into a new comment on this PR and complete it. If you have the K2 extension, you can simply click: [this button]

@melvin-bot melvin-bot bot requested a review from thesahindia August 7, 2023 21:55
@tgolen tgolen requested review from danieldoglas and a team and removed request for thesahindia August 7, 2023 21:55
@melvin-bot melvin-bot bot requested review from thesahindia and removed request for a team August 7, 2023 21:55
@melvin-bot
Copy link

melvin-bot bot commented Aug 7, 2023

@thesahindia @ One of you needs to copy/paste the Reviewer Checklist from here into a new comment on this PR and complete it. If you have the K2 extension, you can simply click: [this button]

Copy link
Contributor

@danieldoglas danieldoglas left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR looks great, but there's one change we should do for clarity.

I tested and everything worked as we expected for this PR. let's just call the correct method and we should be good!

Comment on lines 588 to 589
App.reconnectApp(onyxUpdatesLastUpdateID, pushJSONLastUpdateID, true);
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@tgolen I think you missed this, but you created a GetMissingOnyxMessages method in the API to use exactly on this situation instead of using ReconnectApp. I think we should use it here for clarity.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK, I will switch to using this.

Comment on lines 574 to 575
console.debug('[OnyxUpdates] The lastUpdateID the client received was', onyxUpdatesLastUpdateID);

Copy link
Contributor

@danieldoglas danieldoglas Aug 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
console.debug('[OnyxUpdates] The lastUpdateID the client received was', onyxUpdatesLastUpdateID);
console.debug('[OnyxUpdates] The lastUpdateID the client had was', onyxUpdatesLastUpdateID);

Just for clarity, I was confused if this was the one I received or the one we had when just looking at the logs

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I will update!

@tgolen
Copy link
Contributor Author

tgolen commented Aug 9, 2023

OK, I had to do a pretty major rewrite in order to DRY the code between Pusher responses and HTTPS responses.

The problem was that the middleware for SaveResponseInOnyx.js can't directly import any code that uses the API lib (eg. for calling GetMissingOnyxUpdates) because the API lib is importing and using the middleware.

I got around the problem by using Onyx keys and a callback function to listen for when the updateIDs sent from the server have changed.

Copy link
Contributor

@danieldoglas danieldoglas left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looking great, just a few NAB comments and one thing we need to fix!

@@ -136,7 +136,7 @@ function bindEventToChannel(channel, eventName, eventCallback = () => {}) {
try {
data = _.isObject(eventData) ? eventData : JSON.parse(eventData);
} catch (err) {
Log.alert('[Pusher] Unable to parse JSON response from Pusher', {error: err, eventData});
Log.alert('[Pusher] Unable to parse JSON response from Pusher 1', {error: err, eventData});
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

NAB: is this intentional?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sort of, yeah, I can do it better though. The same log happens from two different places and it wasn't possible to tell from which spot I was seeing an error.

@@ -168,10 +168,11 @@ function bindEventToChannel(channel, eventName, eventCallback = () => {}) {
try {
eventCallback(JSON.parse(chunkedEvent.chunks.join('')));
} catch (err) {
Log.alert('[Pusher] Unable to parse chunked JSON response from Pusher', {
Log.alert('[Pusher] Unable to parse chunked JSON response from Pusher 2', {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

NAB: is this intentional?

src/libs/Pusher/pusher.js Show resolved Hide resolved
// getMissingOnyxUpdates will fetch updates starting from the last update this client got and going to the last update the server sent.
if (lastUpdateIDAppliedToClient && previousUpdateIDFromServer && lastUpdateIDAppliedToClient < previousUpdateIDFromServer) {
console.debug('[OnyxUpdates] Gap detected in update IDs so fetching incremental updates');
Log.info('Gap detected in update IDs from Pusher so fetching incremental updates', true, {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Log.info('Gap detected in update IDs from Pusher so fetching incremental updates', true, {
Log.info('Gap detected in update IDs from server so fetching incremental updates', true, {

NAB: Just suggest we change this from server since this will be triggered from both Pusher and HTTPs requests

@@ -16,7 +35,7 @@ function SaveResponseInOnyx(response, request) {

// For most requests we can immediately update Onyx. For write requests we queue the updates and apply them after the sequential queue has flushed to prevent a replay effect in
// the UI. See https://github.com/Expensify/App/issues/12775 for more info.
const updateHandler = request.data.apiRequestType === CONST.API_REQUEST_TYPE.WRITE ? QueuedOnyxUpdates.queueOnyxUpdates : Onyx.update;
const updateHandler = request.data.apiRequestType === CONST.API_REQUEST_TYPE.WRITE ? QueuedOnyxUpdates.queueOnyxUpdates : updateOnyx;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we should change both requests here, not only the usage of Onyx.Update.

I say that because write requests are the ones that actually generate an onyx response for all clients. If you call OpenInitialSettings, which is a read, we don't send data through onyx to it since it's just for the local client, it won't change anything. So that's not written in onyxUpdates.

But if you call OpenReport, which is a write and returns lastUpdateID and previousUpdateID (since we update the lastRead property of the report), we're not saving updating those properties locally

So let's say we're sending messages to someone, then we go from report A to report B and receive a new message, that would trigger GetOnyxUpdates, which is not ideal.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for pointing that out. Makes sense!

Copy link
Contributor

@danieldoglas danieldoglas left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added a few more considerations after testing

Comment on lines 270 to 272
// Update the local values to be the same as the values stored in Onyx
onyxUpdates.lastUpdateIDFromServer = lastUpdateIDFromServer || 0;
onyxUpdates.previousUpdateIDFromServer = previousUpdateIDFromServer || 0;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why? We are not using this local variables for anything

Comment on lines 242 to 245
const onyxUpdates = {
lastUpdateIDFromServer: 0,
previousUpdateIDFromServer: 0,
};
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This object is set and updated, but we never read from it. we can remove it since we use the values directly from Onyx in the function below

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I rewrote this so many times yesterday I got tunnelvision. Thanks for your fresh eyes on this! I've cleaned it up to remove this.

Comment on lines 275 to 276
Onyx.merge(ONYXKEYS.ONYX_UPDATES_LAST_UPDATE_ID_APPLIED_TO_CLIENT, lastUpdateIDFromServer || 0);
},
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

From your PR I was able to see something I wasn't seeing before: We also send GetOnyxUpdate responses through Pusher, so we're updating the current client and sending those updates to other clients. I think that's fine since if we're sending it to all clients, the changes the clients are updated are bigger.

What that does is:

  • Client A and B are using account 1
  • Client A has OnyxUpdatesLastUpdateIDAppliedToClient with 51
  • Client B as OnyxUpdatesLastUpdateIDAppliedToClient with 47
  • Account 2 sends a message to Account 1 which will be updateID 55
  • Client B for some reason doesn't receive it
  • Client A receives, and calls GetOnyxUpdates with from: 51 and to: 55
  • Client B, that has it's connection working now, receives the GetOnyxUpdates from Pusher, sees that the previousUpdateID in that update is bigger than 47, and calls GetOnyxUpdates with values from: 47 and to: 51, and gets up to date.

This works OK!

Now we have an edge case that happened when I was testing.

  • Client A and B are using account 1
  • Client B as OnyxUpdatesLastUpdateIDAppliedToClient with 47
  • Account 2 sends a message to Account 1 which will be updateID 55
  • Client A receives it instantly and now has OnyxUpdatesLastUpdateIDAppliedToClient with 55. Then it does some actions, and that number rises to 60
  • Client B for some reason doesn't receive those
  • Client B connects and receives update 60. It notices it didn't have 47-59, and does a GetOnyxUpdates with those
  • Client A receives those updates since we're testing. It won't apply those, since the ID is less than the one it currently has BUT it will save OnyxUpdatesLastUpdateIDAppliedToClient with lastUpdateID 58 that was sent in the pusher update body.
  • So next time it tries to do anything, it will call GetMissingOnyxUpdates again

I think we solve that by adding this to the if statement above.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK, to make sure I understand your proposed change clearly, you are suggesting to only update OnyxUpdatesLastUpdateIDAppliedToClient if the lastUpdateIDFromServer is larger. Right? That way the value will never decrease, only increase.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, that's correct!

danieldoglas
danieldoglas previously approved these changes Aug 10, 2023
Copy link
Contributor

@danieldoglas danieldoglas left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, thanks!

src/libs/Pusher/pusher.js Show resolved Hide resolved
@danieldoglas
Copy link
Contributor

@thesahindia can you please review this?

@danieldoglas danieldoglas requested review from rushatgabhane and removed request for thesahindia August 11, 2023 00:59
@rushatgabhane
Copy link
Member

rushatgabhane commented Aug 11, 2023

Reviewer Checklist

  • I have verified the author checklist is complete (all boxes are checked off).
  • I verified the correct issue is linked in the ### Fixed Issues section above
  • I verified testing steps are clear and they cover the changes made in this PR
    • I verified the steps for local testing are in the Tests section
    • I verified the steps for Staging and/or Production testing are in the QA steps section
    • I verified the steps cover any possible failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
  • I checked that screenshots or videos are included for tests on all platforms
  • I included screenshots or videos for tests on all platforms
  • I verified tests pass on all platforms & I tested again on:
    • Android / native
    • Android / Chrome
    • iOS / native
    • iOS / Safari
    • MacOS / Chrome / Safari
    • MacOS / Desktop
  • If there are any errors in the console that are unrelated to this PR, I either fixed them (preferred) or linked to where I reported them in Slack
  • I verified proper code patterns were followed (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick).
    • I verified that the left part of a conditional rendering a React component is a boolean and NOT a string, e.g. myBool && <MyComponent />.
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is approved by marketing by adding the Waiting for Copy label for a copy review on the original GH to get the correct copy.
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I verified that this PR follows the guidelines as stated in the Review Guidelines
  • I verified other components that can be impacted by these changes have been tested, and I retested again (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar have been tested & I retested again)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.js or at the top of the file that uses the constant) are defined as such
  • If a new component is created I verified that:
    • A similar component doesn't exist in the codebase
    • All props are defined accurately and each prop has a /** comment above it */
    • The file is named correctly
    • The component has a clear name that is non-ambiguous and the purpose of the component can be inferred from the name alone
    • The only data being stored in the state is data necessary for rendering and nothing else
    • For Class Components, any internal methods passed to components event handlers are bound to this properly so there are no scoping issues (i.e. for onClick={this.submit} the method this.submit should be bound to this in the constructor)
    • Any internal methods bound to this are necessary to be bound (i.e. avoid this.submit = this.submit.bind(this); if this.submit is never passed to a component event handler like onClick)
    • All JSX used for rendering exists in the render method
    • The component has the minimum amount of code necessary for its purpose, and it is broken down into smaller components in order to separate concerns and functions
  • If any new file was added I verified that:
    • The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(themeColors.componentBG)
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.
  • I have checked off every checkbox in the PR reviewer checklist, including those that don't apply to this PR.

Screenshots/Videos

Web
Screen.Recording.2023-08-11.at.15.12.20.mov
Screen.Recording.2023-08-11.at.15.09.32.mov
Mobile Web - Chrome

WhatsApp Image 2023-08-11 at 16 52 11

Mobile Web - Safari
Screen.Recording.2023-08-11.at.16.36.27.mov
Desktop
Screen.Recording.2023-08-11.at.16.36.27.mov
iOS
9f60bd04-d856-4e20-8e5c-7e945be19055.mp4
Android image

Copy link
Member

@rushatgabhane rushatgabhane left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!
Did a general test on the app and confirmed that everything works as intended


// If the previous update from the server does not match the last update the client got, then the client is missing some updates.
// getMissingOnyxUpdates will fetch updates starting from the last update this client got and going to the last update the server sent.
if (lastUpdateIDAppliedToClient && previousUpdateIDFromServer && lastUpdateIDAppliedToClient < previousUpdateIDFromServer) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if expensify goes to mars and beyond, we mayy have more than 2^63 - 1 server updates for users by then.

and then they'll stop getting any updates.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If that's the case, I'll happily come back here and update the logic 😄

src/ONYXKEYS.js Outdated
// The access token to be used with the Mapbox library
MAPBOX_ACCESS_TOKEN: 'mapboxAccessToken',
// Information about the onyx updates IDs that were received from the server
ONYX_UPDATES: 'onyxUpdates',
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

NAB: These are server updates only. I would have named them ONYX_SERVER_UPDATES

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated branch and renamed this to ONYX_UPDATES_FROM_SERVER following your suggestion (I think the name matches the other key better).

@melvin-bot melvin-bot bot requested a review from cristipaval August 11, 2023 11:29
@melvin-bot
Copy link

melvin-bot bot commented Aug 11, 2023

@cristipaval Please copy/paste the Reviewer Checklist from here into a new comment on this PR and complete it. If you have the K2 extension, you can simply click: [this button]

@melvin-bot
Copy link

melvin-bot bot commented Aug 11, 2023

🎯 @rushatgabhane, thanks for reviewing and testing this PR! 🎉

An E/App issue has been created to issue payment here: #24418.

@danieldoglas danieldoglas merged commit 39ae317 into main Aug 11, 2023
13 checks passed
@danieldoglas danieldoglas deleted the tgolen-priorityRequestQueue branch August 11, 2023 16:54
@OSBotify
Copy link
Contributor

✋ This PR was not deployed to staging yet because QA is ongoing. It will be automatically deployed to staging after the next production release.

@OSBotify
Copy link
Contributor

🚀 Deployed to staging by https://github.com/danieldoglas in version: 1.3.54-0 🚀

platform result
🤖 android 🤖 failure ❌
🖥 desktop 🖥 success ✅
🍎 iOS 🍎 failure ❌
🕸 web 🕸 success ✅

1 similar comment
@OSBotify
Copy link
Contributor

🚀 Deployed to staging by https://github.com/danieldoglas in version: 1.3.54-0 🚀

platform result
🤖 android 🤖 failure ❌
🖥 desktop 🖥 success ✅
🍎 iOS 🍎 failure ❌
🕸 web 🕸 success ✅

@mvtglobally
Copy link

@tgolen are we ok to check it off? As its internal

@tgolen
Copy link
Contributor Author

tgolen commented Aug 15, 2023

Yep, you can check it off. We'll be manually testing it this week

@OSBotify
Copy link
Contributor

🚀 Deployed to production by https://github.com/yuwenmemon in version: 1.3.54-13 🚀

platform result
🤖 android 🤖 success ✅
🖥 desktop 🖥 success ✅
🍎 iOS 🍎 success ✅
🕸 web 🕸 success ✅

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants