Skip to content

Fix bug where passing -w to pg-upgrade aborted the process

Balasankar 'Balu' C requested to merge fix-postgres-upgrade-wait into master

If user passed -w, we set options[:wait] = false. So, status will have a nil value (because the conditional is not satisfied). This triggers the unless status statement below, thus aborting the process.

Merge request reports