Page MenuHomePhabricator

Don't compute a nonsensical assigned task count for logged-out users
ClosedPublic

Authored by epriestley on Nov 19 2014, 9:00 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Mar 5, 5:53 PM
Unknown Object (File)
Feb 10 2024, 4:33 AM
Unknown Object (File)
Feb 9 2024, 8:04 AM
Unknown Object (File)
Feb 7 2024, 1:13 PM
Unknown Object (File)
Dec 30 2023, 2:31 PM
Unknown Object (File)
Dec 26 2023, 2:49 PM
Unknown Object (File)
Dec 25 2023, 11:51 AM
Unknown Object (File)
Dec 25 2023, 11:50 AM
Tokens
"Mountain of Wealth" token, awarded by 20after4.

Details

Summary

When a logged-out user views the home page, we currently compute a meaningless "assigned tasks" count which just counts every open task. Don't do this.

Ideally ManiphestTaskQuery should get some tightening up too (that is, withOwners(array(null)) should not select every task), but that might affect other stuff and the performance implications of counting every open task are affecting WMF, so just fix the immediate issue for now.

Test Plan
  • Viewed homepage as a logged out user, no assigned task count.
  • Viewed homepage as a logged-in user, still saw assigned task count.

Diff Detail

Repository
rP Phabricator
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

epriestley retitled this revision from to Don't compute a nonsensical assigned task count for logged-out users.
epriestley updated this object.
epriestley edited the test plan for this revision. (Show Details)
epriestley added reviewers: btrahan, chad, chasemp.

I guess withOwners(array(null)) is internal shorthand for "unowned", so this is actually just counting unassigned tasks. Still broken and junky but the API which allowed the error is at least somewhat defensible.

chasemp edited edge metadata.

Thank you for your expediciousness :)

This revision is now accepted and ready to land.Nov 19 2014, 9:05 PM
This revision was automatically updated to reflect the committed changes.