Commit 9ec19ddf authored by Robert Speicher's avatar Robert Speicher

Merge branch...

Merge branch '5067-geo-don-t-mark-sync-as-successful-if-repo-does-not-exist-because-of-some-problems' into 'master'

[Geo] Don't mark sync as successful if repo does not exist because of some problems

Closes #5067

See merge request gitlab-org/gitlab-ee!10578
parents 1630114e d8656d6a
......@@ -264,5 +264,13 @@ module Geo
def new_repository?
@new_repository
end
# If repository has a verification checksum, we can assume that it existed on the primary
def repository_presumably_exists_on_primary?
return false unless project.repository_state
checksum = project.repository_state.public_send("#{type}_verification_checksum") # rubocop:disable GitlabSecurity/PublicSend
checksum && checksum != Gitlab::Git::Repository::EMPTY_REPOSITORY_CHECKSUM
end
end
end
......@@ -12,10 +12,14 @@ module Geo
mark_sync_as_successful
rescue Gitlab::Shell::Error, Gitlab::Git::BaseError => e
# In some cases repository does not exist, the only way to know about this is to parse the error text.
# If it does not exist we should consider it as successfully downloaded.
if e.message.include? Gitlab::GitAccess::ERROR_MESSAGES[:no_repo]
log_info('Repository is not found, marking it as successfully synced')
mark_sync_as_successful(missing_on_primary: true)
if repository_presumably_exists_on_primary?
log_info('Repository is not found, but it seems to exist on the primary')
fail_registry!('Repository is not found', e)
else
log_info('Repository is not found, marking it as successfully synced')
mark_sync_as_successful(missing_on_primary: true)
end
else
fail_registry!('Error syncing repository', e)
end
......
......@@ -14,8 +14,13 @@ module Geo
# In some cases repository does not exist, the only way to know about this is to parse the error text.
# If it does not exist we should consider it as successfully downloaded.
if e.message.include? Gitlab::GitAccess::ERROR_MESSAGES[:no_repo]
log_info('Wiki repository is not found, marking it as successfully synced')
mark_sync_as_successful(missing_on_primary: true)
if repository_presumably_exists_on_primary?
log_info('Wiki is not found, but it seems to exist on the primary')
fail_registry!('Wiki is not found', e)
else
log_info('Wiki is not found, marking it as successfully synced')
mark_sync_as_successful(missing_on_primary: true)
end
else
fail_registry!('Error syncing wiki repository', e)
end
......
---
title: "[Geo] Don't mark sync as successful if repo does not exist because of some
problems"
merge_request: 10578
author:
type: changed
......@@ -153,6 +153,24 @@ describe Geo::RepositorySyncService do
expect(Geo::ProjectRegistry.last.resync_repository).to be true
end
context 'repository presumably exists on primary' do
it 'increases retry count if no repository found' do
registry = create(:geo_project_registry, project: project)
create(:repository_state, :repository_verified, project: project)
allow(repository).to receive(:fetch_as_mirror)
.with(url_to_repo, remote_name: 'geo', forced: true)
.and_raise(Gitlab::Shell::Error.new(Gitlab::GitAccess::ERROR_MESSAGES[:no_repo]))
subject.execute
expect(registry.reload).to have_attributes(
resync_repository: true,
repository_retry_count: 1
)
end
end
context 'tracking database' do
context 'temporary repositories' do
include_examples 'cleans temporary repositories' do
......
......@@ -118,6 +118,24 @@ RSpec.describe Geo::WikiSyncService do
expect(Geo::ProjectRegistry.last.resync_wiki).to be true
end
context 'wiki repository presumably exists on primary' do
it 'increases retry count if no wiki repository found' do
registry = create(:geo_project_registry, project: project)
create(:repository_state, :wiki_verified, project: project)
allow(repository).to receive(:fetch_as_mirror)
.with(url_to_repo, remote_name: 'geo', forced: true)
.and_raise(Gitlab::Shell::Error.new(Gitlab::GitAccess::ERROR_MESSAGES[:no_repo]))
subject.execute
expect(registry.reload).to have_attributes(
resync_wiki: true,
wiki_retry_count: 1
)
end
end
context 'tracking database' do
context 'temporary repositories' do
include_examples 'cleans temporary repositories' do
......
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