You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's a bug with the languages percentage for all the orgs (/api/languages):
The calculation is being done with bytes, we should use the sum of org percentages.
So, it does not affect if there is a repo with a LOT of bytes of one language, instead of the percentage of that language in the org.
The GitLab API retrieves language percentages and not bytes, so the number of bytes couldn't be used to calculate totals anymore.
Proposed solution:
Calculate the total of lang % using the aggregation of org lang %.
Get rid of bytes where it is not needed.
Fix the index chart with the languages accumulating the org percentages (it will be impacted in react models, etc)
The text was updated successfully, but these errors were encountered:
There's a bug with the languages percentage for all the orgs (
/api/languages
):So, it does not affect if there is a repo with a LOT of bytes of one language, instead of the percentage of that language in the org.
Proposed solution:
The text was updated successfully, but these errors were encountered: