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

[HOLD for payment 2023-07-17] [$1000] Dev: After creating a task without assignee “0” displayed #22398

Closed
1 of 6 tasks
kbecciv opened this issue Jul 7, 2023 · 32 comments
Closed
1 of 6 tasks
Assignees
Labels
Awaiting Payment Auto-added when associated PR is deployed to production Bug Something is broken. Auto assigns a BugZero manager. Daily KSv2 Engineering External Added to denote the issue can be worked on by a contributor

Comments

@kbecciv
Copy link

kbecciv commented Jul 7, 2023

If you haven’t already, check out our contributing guidelines for onboarding and email contributors@expensify.com to request to join our Slack channel!


Action Performed:

  1. Open a chat
  2. Go to the “Assign task”
  3. Enter title click on “Confirm task”

Expected Result:

After creating a task without assignee “0” should not be displayed

Actual Result:

After creating a task without assignee “0” displayed after leaving

Workaround:

Unknown

Platforms:

Which of our officially supported platforms is this issue occurring on?

  • Android / native
  • Android / Chrome
  • iOS / native
  • iOS / Safari
  • MacOS / Chrome / Safari
  • MacOS / Desktop

Version Number: 1.3.37-5
Reproducible in staging?: n/a
Reproducible in production?: n/a
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: Any additional supporting documentation

Screen.Recording.2023-07-07.at.2.08.21.AM.mov

Expensify/Expensify Issue URL:
Issue reported by: @ayazhussain79
Slack conversation: https://expensify.slack.com/archives/C049HHMV9SM/p1688677922284949

View all open jobs on GitHub

Upwork Automation - Do Not Edit
  • Upwork Job URL: https://www.upwork.com/jobs/~0128bb3b4ad89ce372
  • Upwork Job ID: 1677273013757554688
  • Last Price Increase: 2023-07-07
@kbecciv kbecciv added DeployBlockerCash This issue or pull request should block deployment Daily KSv2 Bug Something is broken. Auto assigns a BugZero manager. labels Jul 7, 2023
@melvin-bot
Copy link

melvin-bot bot commented Jul 7, 2023

Triggered auto assignment to @MitchExpensify (Bug), see https://stackoverflow.com/c/expensify/questions/14418 for more details.

@melvin-bot
Copy link

melvin-bot bot commented Jul 7, 2023

Bug0 Triage Checklist (Main S/O)

  • This "bug" occurs on a supported platform (ensure Platforms in OP are ✅)
  • This bug is not a duplicate report (check E/App issues and #expensify-bugs)
    • If it is, comment with a link to the original report, close the issue and add any novel details to the original issue instead
  • This bug is reproducible using the reproduction steps in the OP. S/O
    • If the reproduction steps are clear and you're unable to reproduce the bug, check with the reporter and QA first, then close the issue.
    • If the reproduction steps aren't clear and you determine the correct steps, please update the OP.
  • This issue is filled out as thoroughly and clearly as possible
    • Pay special attention to the title, results, platforms where the bug occurs, and if the bug happens on staging/production.
  • I have reviewed and subscribed to the linked Slack conversation to ensure Slack/Github stay in sync

@github-actions github-actions bot added Engineering Hourly KSv2 and removed Daily KSv2 labels Jul 7, 2023
@OSBotify
Copy link
Contributor

OSBotify commented Jul 7, 2023

👋 Friendly reminder that deploy blockers are time-sensitive ⏱ issues! Check out the open StagingDeployCash deploy checklist to see the list of PRs included in this release, then work quickly to do one of the following:

  1. Identify the pull request that introduced this issue and revert it.
  2. Find someone who can quickly fix the issue.
  3. Fix the issue yourself.

@melvin-bot
Copy link

melvin-bot bot commented Jul 7, 2023

Triggered auto assignment to @MariaHCD (Engineering), see https://stackoverflow.com/c/expensify/questions/4319 for more details.

@Julesssss Julesssss removed the DeployBlockerCash This issue or pull request should block deployment label Jul 7, 2023
@Julesssss
Copy link
Contributor

FYI I kicked off the release less than 5 minutes ago and I'm worried the existence of a new deploy blocker will cause issues. I'll re-add it once the new checklist is up!

@situchan
Copy link
Contributor

situchan commented Jul 7, 2023

Proposal

Please re-state the problem that we are trying to solve in this issue.

After creating task without assignee, "0" is displayed

What is the root cause of that problem?

Issue happens on this line:

{assigneeAccountID && assigneeAccountID > 0 && (

assigneeAccountID is number and when no assignee, this fallbacks to 0.
And 0 && 0 > 0 && <></> returns 0

What changes do you think we should make in order to solve the problem?

remove this redundant condition: assigneeAccountID &&

Fixed code will look like this:

 {assigneeAccountID > 0 && (

@melvin-bot melvin-bot bot added Daily KSv2 and removed Hourly KSv2 labels Jul 7, 2023
@Julesssss Julesssss added the DeployBlockerCash This issue or pull request should block deployment label Jul 7, 2023
@MariaHCD
Copy link
Contributor

MariaHCD commented Jul 7, 2023

Able to reproduce on dev:

Screenshot 2023-07-07 at 2 49 34 PM

@situchan's proposed solution seems to fix this.

I see that logic was added in #20689 that was deployed 2 weeks ago. Not sure why we're just catching this now.

cc: @hoangzinh @mollfpr @joelbettner

@situchan
Copy link
Contributor

situchan commented Jul 7, 2023

@MariaHCD this bug existed from the beginning but recent PR just revealed this.
I'd say #20689 is not a regression as the bad logic already existed and deployed to production 2 weeks ago.

-                               {props.report.managerID && props.report.managerID > 0 && (
+                               {assigneeAccountID && assigneeAccountID > 0 && (

@MariaHCD
Copy link
Contributor

MariaHCD commented Jul 7, 2023

assigneeAccountID is number and when no assignee, this fallbacks to 0.
And 0 && 0 > 0 && <></> returns 0

Confirmed that getTaskAssigneeAccountID does indeed return 0 if no assignee is set because the managerID in Onyx is 0:

Screenshot 2023-07-07 at 3 04 10 PM

Let's prioritize fixing this and go with @situchan's solution!

@MariaHCD MariaHCD assigned situchan and unassigned situchan Jul 7, 2023
@MariaHCD MariaHCD added the External Added to denote the issue can be worked on by a contributor label Jul 7, 2023
@melvin-bot melvin-bot bot changed the title Dev: After creating a task without assignee “0” displayed [$1000] Dev: After creating a task without assignee “0” displayed Jul 7, 2023
@melvin-bot
Copy link

melvin-bot bot commented Jul 7, 2023

Job added to Upwork: https://www.upwork.com/jobs/~0128bb3b4ad89ce372

@melvin-bot melvin-bot bot added the Help Wanted Apply this label when an issue is open to proposals by contributors label Jul 7, 2023
@melvin-bot
Copy link

melvin-bot bot commented Jul 7, 2023

Current assignee @MitchExpensify is eligible for the External assigner, not assigning anyone new.

@melvin-bot
Copy link

melvin-bot bot commented Jul 7, 2023

📣 @ayazhussain79 We're missing your Upwork ID to automatically send you an offer for the Reporter role.
Once you apply to the Upwork job, your Upwork ID will be stored and you will be automatically hired for future jobs!

@MariaHCD
Copy link
Contributor

MariaHCD commented Jul 7, 2023

Summary: we're going with @situchan's fix as outlined here to fix this deploy blocker. Will need @aimane-chnaif's help to review and test!

@hoangzinh
Copy link
Contributor

I see that logic was added in #20689 that was deployed 2 weeks ago. Not sure why we're just catching this now.

cc: @hoangzinh @mollfpr @joelbettner

@MariaHCD I think the reason why we're just catching this now is from this PR https://github.com/Expensify/App/pull/21781/files#diff-941175f813fc9ba999d5f8221c16657a8f274cc7a803657578d5e4f01ae26da4R650

Before we will return null if childManagerEmail is a falsy value, but with above change, we might return 0.
But I agree with @situchan proposal above #22398 (comment)

@MariaHCD
Copy link
Contributor

MariaHCD commented Jul 7, 2023

Before we will return null if childManagerEmail is a falsy value, but with above change, we might return 0.

Ah, nice catch, @hoangzinh. Thanks for sharing!

@melvin-bot
Copy link

melvin-bot bot commented Jul 7, 2023

🎯 ⚡️ Woah @aimane-chnaif / @situchan, great job pushing this forwards! ⚡️

The pull request got merged within 3 working days of assignment, so this job is eligible for a 50% #urgency bonus 🎉

  • when @situchan got assigned: 2023-07-07 11:07:30 Z
  • when the PR got merged: 2023-07-07 12:09:18 UTC

On to the next one 🚀

@Julesssss
Copy link
Contributor

Thanks for the quick fix all, I'm going to check it off the deploy checklist.

@Julesssss Julesssss removed the DeployBlockerCash This issue or pull request should block deployment label Jul 7, 2023
@MitchExpensify
Copy link
Contributor

Invites sent to @ayazhussain79 @situchan for eventual payment 👍

@ayazhussain79
Copy link
Contributor

@MitchExpensify Offer accepted, Thank you

@melvin-bot melvin-bot bot added Weekly KSv2 Awaiting Payment Auto-added when associated PR is deployed to production and removed Daily KSv2 labels Jul 10, 2023
@melvin-bot melvin-bot bot changed the title [$1000] Dev: After creating a task without assignee “0” displayed [HOLD for payment 2023-07-17] [$1000] Dev: After creating a task without assignee “0” displayed Jul 10, 2023
@melvin-bot
Copy link

melvin-bot bot commented Jul 10, 2023

Reviewing label has been removed, please complete the "BugZero Checklist".

@melvin-bot melvin-bot bot removed the Reviewing Has a PR in review label Jul 10, 2023
@melvin-bot
Copy link

melvin-bot bot commented Jul 10, 2023

The solution for this issue has been 🚀 deployed to production 🚀 in version 1.3.38-7 and is now subject to a 7-day regression period 📆. Here is the list of pull requests that resolve this issue:

If no regressions arise, payment will be issued on 2023-07-17. 🎊

After the hold period is over and BZ checklist items are completed, please complete any of the applicable payments for this issue, and check them off once done.

  • External issue reporter
  • Contributor that fixed the issue
  • Contributor+ that helped on the issue and/or PR

As a reminder, here are the bonuses/penalties that should be applied for any External issue:

  • Merged PR within 3 business days of assignment - 50% bonus
  • Merged PR more than 9 business days after assignment - 50% penalty

@melvin-bot
Copy link

melvin-bot bot commented Jul 10, 2023

BugZero Checklist: The PR fixing this issue has been merged! The following checklist (instructions) will need to be completed before the issue can be closed:

  • [@aimane-chnaif] The PR that introduced the bug has been identified. Link to the PR:
  • [@aimane-chnaif] The offending PR has been commented on, pointing out the bug it caused and why, so the author and reviewers can learn from the mistake. Link to comment:
  • [@aimane-chnaif] A discussion in #expensify-bugs has been started about whether any other steps should be taken (e.g. updating the PR review checklist) in order to catch this type of bug sooner. Link to discussion:
  • [@aimane-chnaif] Determine if we should create a regression test for this bug.
  • [@aimane-chnaif] If we decide to create a regression test for the bug, please propose the regression test steps to ensure the same bug will not reach production again.
  • [@MitchExpensify] Link the GH issue for creating/updating the regression test once above steps have been agreed upon:

@MitchExpensify
Copy link
Contributor

Reminder set to pay out on 7/17 👍

Lets square off the BZ steps above in advance of that @aimane-chnaif 🚀

@melvin-bot melvin-bot bot added Daily KSv2 and removed Weekly KSv2 labels Jul 17, 2023
@MitchExpensify
Copy link
Contributor

Payments issued! Friendly bump on @aimane-chnaif on the BZ steps :)

@melvin-bot melvin-bot bot added the Overdue label Jul 20, 2023
@MitchExpensify
Copy link
Contributor

friendly bump @aimane-chnaif 👍

@aimane-chnaif
Copy link
Contributor

BugZero Checklist: The PR fixing this issue has been merged! The following checklist (instructions) will need to be completed before the issue can be closed:

No need regression test step. It's already in checklist:

  • I verified that the left part of a conditional rendering a React component is a boolean and NOT a string, e.g. myBool && <MyComponent />.

@MitchExpensify
Copy link
Contributor

Awesome, thank you @aimane-chnaif !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Awaiting Payment Auto-added when associated PR is deployed to production Bug Something is broken. Auto assigns a BugZero manager. Daily KSv2 Engineering External Added to denote the issue can be worked on by a contributor
Projects
None yet
Development

No branches or pull requests

9 participants