提交 7c7b2041 编写于 作者: R Rémy Coutable

Merge branch '26773-fix-project-statistics-repository-size' into 'master'

Resolve "Wrong file size on repository page"

Closes #26773

See merge request !8616
......@@ -25,8 +25,9 @@ class ProjectStatistics < ActiveRecord::Base
self.commit_count = project.repository.commit_count
end
# Repository#size needs to be converted from MB to Byte.
def update_repository_size
self.repository_size = project.repository.size
self.repository_size = project.repository.size * 1.megabyte
end
def update_lfs_objects_size
......
---
title: Adjust ProjectStatistic#repository_size with values saved as MB
merge_request: 8616
author:
......@@ -107,7 +107,7 @@ describe ProjectStatistics, models: true do
describe '#update_repository_size' do
before do
allow(project.repository).to receive(:size).and_return(12.megabytes)
allow(project.repository).to receive(:size).and_return(12)
statistics.update_repository_size
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册