From 63781c49531a13f9e86768f21e39de998eae61aa Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Sat, 26 Jan 2019 15:01:39 +0100 Subject: [PATCH] set import_status when indexing only Makes sure that things work as expected when running `--import-osmosis --no-index` and `--index` separately. Fixes #1284. --- utils/update.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/utils/update.php b/utils/update.php index 3086a70b..f4decdf1 100644 --- a/utils/update.php +++ b/utils/update.php @@ -305,6 +305,8 @@ if ($aResult['index']) { } runWithEnv($sCmd, $aProcEnv); + + $oDB->query('update import_status set indexed = true'); } if ($aResult['update-address-levels']) { -- 2.43.2