Commit f11bf3bb authored by Kamil Trzciński's avatar Kamil Trzciński

Merge branch 'zj-disk-path-import-error' into 'master'

Log disk_path instead of path for importer

See merge request gitlab-org/gitlab!54568
parents 488f79b2 6a8993a1
...@@ -42,7 +42,7 @@ module Gitlab ...@@ -42,7 +42,7 @@ module Gitlab
def ensure_repository_does_not_exist! def ensure_repository_does_not_exist!
if repository.exists? if repository.exists?
shared.logger.info( shared.logger.info(
message: %Q{Deleting existing "#{repository.path}" to re-import it.} message: %Q{Deleting existing "#{repository.disk_path}" to re-import it.}
) )
Repositories::DestroyService.new(repository).execute Repositories::DestroyService.new(repository).execute
......
...@@ -46,7 +46,7 @@ RSpec.describe Gitlab::ImportExport::RepoRestorer do ...@@ -46,7 +46,7 @@ RSpec.describe Gitlab::ImportExport::RepoRestorer do
context 'when the repository already exists' do context 'when the repository already exists' do
it 'deletes the existing repository before importing' do it 'deletes the existing repository before importing' do
allow(project.repository).to receive(:exists?).and_return(true) allow(project.repository).to receive(:exists?).and_return(true)
allow(project.repository).to receive(:path).and_return('repository_path') allow(project.repository).to receive(:disk_path).and_return('repository_path')
expect_next_instance_of(Repositories::DestroyService) do |instance| expect_next_instance_of(Repositories::DestroyService) do |instance|
expect(instance).to receive(:execute).and_call_original expect(instance).to receive(:execute).and_call_original
......
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