Commit 4e9491f7 authored by Zeger-Jan van de Weg's avatar Zeger-Jan van de Weg

Repository size is Gitaly only

Closes https://gitlab.com/gitlab-org/gitaly/issues/393
parent b487a798
...@@ -403,13 +403,7 @@ module Gitlab ...@@ -403,13 +403,7 @@ module Gitlab
# Return repo size in megabytes # Return repo size in megabytes
def size def size
size = gitaly_migrate(:repository_size) do |is_enabled| size = gitaly_repository_client.repository_size
if is_enabled
size_by_gitaly
else
size_by_shelling_out
end
end
(size.to_f / 1024).round(2) (size.to_f / 1024).round(2)
end end
...@@ -1822,14 +1816,6 @@ module Gitlab ...@@ -1822,14 +1816,6 @@ module Gitlab
commit(sha) commit(sha)
end end
def size_by_shelling_out
popen(%w(du -sk), path).first.strip.to_i
end
def size_by_gitaly
gitaly_repository_client.repository_size
end
# Returns true if the given ref name exists # Returns true if the given ref name exists
# #
# Ref names must start with `refs/`. # Ref names must start with `refs/`.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment