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:
authorAsh McKenzie <amckenzie@gitlab.com>2019-06-04 07:44:02 +0300
committerAsh McKenzie <amckenzie@gitlab.com>2019-06-05 02:08:10 +0300
commit977ba4cc150092107944f3a46734b2540d321dcf (patch)
tree23b8f60ad5efed565fb5390be95346e88d952323 /app/workers/pages_domain_verification_cron_worker.rb
parent75e11922026db90ccb81b0125b18b0bd2ffbb7fb (diff)
Ensure DB is writable before continuing jobs
In the context of a Geo setup, some jobs can be running on a Geo secondary where the database is read-only and therefore we should guard against various jobs attempting to write.
Diffstat (limited to 'app/workers/pages_domain_verification_cron_worker.rb')
-rw-r--r--app/workers/pages_domain_verification_cron_worker.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/workers/pages_domain_verification_cron_worker.rb b/app/workers/pages_domain_verification_cron_worker.rb
index 92d62a15aee..60703c83e9e 100644
--- a/app/workers/pages_domain_verification_cron_worker.rb
+++ b/app/workers/pages_domain_verification_cron_worker.rb
@@ -5,6 +5,8 @@ class PagesDomainVerificationCronWorker
include CronjobQueue
def perform
+ return if Gitlab::Database.read_only?
+
PagesDomain.needs_verification.find_each do |domain|
PagesDomainVerificationWorker.perform_async(domain.id)
end