Skip to content
Snippets Groups Projects
Commit d8604e7a authored by Robert Marshall's avatar Robert Marshall
Browse files

Detect potential previous pg-upgrade failures

- Warn the administrator if a `pg-upgrade` detects a data directory
  named for the current major version. This allows time to recover from
  upgrade failures and not risk split-brain or other terrible scenarios
  that may happen if this fails and the service tries to auto-start of
  its own accord.

Closes https://gitlab.com/gitlab-org/omnibus-gitlab/-/issues/8247

Changelog: changed
parent 3a3a9c7e
No related branches found
No related tags found
1 merge request!137Remerge after conversion fixups
......@@ -182,6 +182,13 @@
log "Upgrading PostgreSQL to #{@db_worker.target_version}"
if GitlabCtl::Util.progress_message('Checking for previous failed upgrade attempts') do
File.exist?("#{@db_worker.tmp_data_dir}.#{@db_worker.initial_version.major}")
end
$stderr.puts "Detected a potential failed upgrade. Directory #{@db_worker.tmp_data_dir}.#{@db_worker.initial_version.major} already exists."
Kernel.exit 1
end
deprecation_message if @db_worker.target_version.major.to_f < 13
target_data_dir = "#{@db_worker.tmp_data_dir}.#{@db_worker.target_version.major}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment