X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/76082ac7cb9bfe4651eff27fbc87bfd93226285d..64ace51e02790bf88e162a15236c5ac2af865c5e:/utils/check_import_finished.php diff --git a/utils/check_import_finished.php b/utils/check_import_finished.php index b81cace1..42d834c8 100755 --- a/utils/check_import_finished.php +++ b/utils/check_import_finished.php @@ -28,7 +28,7 @@ function isReverseOnlyInstallation() echo 'Checking database got created ... '; -if ($oDB->databaseExists()) { +if ($oDB->checkConnection()) { $print_success(); } else { $print_fail(); @@ -133,7 +133,8 @@ foreach ($aExpectedIndices as $sExpectedIndex) { $print_fail(); echo <<< END Hints: - * Rerun the setup.php --create-search-indices step + * Run './utils/setup.php --create-search-indices --ignore-errors' to + create missing indices. END; exit(1);