X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/357ba2f64d246706a9bbc7b41c4f1ffdba9f3b40..613586920758da1b36fad0629203e01057a36b7b:/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);