Skip to content
Snippets Groups Projects
Commit 4bb3675b authored by Oswaldo Ferreir's avatar Oswaldo Ferreir
Browse files

Fix Project#update_repository_size to convert MB to Bytes properly

parent 65046d9a
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -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
Loading
Loading
---
title: Adjust ProjectStatistic#repository_size with values saved as MB
merge_request: 8616
author:
Loading
Loading
@@ -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
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment