Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDJ Mountney <david@twkie.net>2018-05-12 00:07:56 +0300
committerAhmad Hassan <ahmad.hassan612@gmail.com>2018-05-15 16:43:04 +0300
commitd5bd61e82f425288397b53ba077eb59782fb12ca (patch)
treee2d1bb7b3ff2abe3ddef816a8bfde14824dd459e /lib/backup
parent4ea9458bbeb28d0a9ba70b45810bda9433467ddd (diff)
Output project name before restoring each project repo
Diffstat (limited to 'lib/backup')
-rw-r--r--lib/backup/repository.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/backup/repository.rb b/lib/backup/repository.rb
index 02897a11fac..0e12f70a066 100644
--- a/lib/backup/repository.rb
+++ b/lib/backup/repository.rb
@@ -96,6 +96,7 @@ module Backup
prepare_directories
gitlab_shell = Gitlab::Shell.new
Project.find_each(batch_size: 1000) do |project|
+ progress.print " * #{project.name} ... "
path_to_project_bundle = path_to_bundle(project)
path_to_project_repo = path_to_repo(project)
project.ensure_storage_path_exists