From 165ee53f84892b5ed23b243b61652f7ae56fc799 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20G=C3=BCndling?= Date: Mon, 21 Oct 2024 12:41:33 +0200 Subject: [PATCH] order import tasks (#601) --- src/import.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/import.cc b/src/import.cc index 1181c8f2c..36f9a52df 100644 --- a/src/import.cc +++ b/src/import.cc @@ -405,7 +405,7 @@ data import(config const& c, fs::path const& data_path, bool const write) { {osm_hash, tiles_hash}}; auto tasks = - std::vector{osr, adr, tt, adr_extend, osr_footpath, tiles, matches}; + std::vector{tiles, osr, adr, tt, adr_extend, osr_footpath, matches}; utl::erase_if(tasks, [&](auto&& t) { if (!t.should_run_()) { return true;