Add latest changes from gitlab-org/gitlab@master

This commit is contained in:
GitLab Bot
2021-09-09 09:11:16 +00:00
parent 8602c59966
commit 54573816ab
81 changed files with 960 additions and 382 deletions

View File

@ -22,8 +22,8 @@ module Backup
end
args = []
args += ['-parallel', @parallel.to_s] if type == :create && @parallel
args += ['-parallel-storage', @parallel_storage.to_s] if type == :create && @parallel_storage
args += ['-parallel', @parallel.to_s] if @parallel
args += ['-parallel-storage', @parallel_storage.to_s] if @parallel_storage
@stdin, stdout, @thread = Open3.popen2(ENV, bin_path, command, '-path', backup_repos_path, *args)