Skip to content

Commit

Permalink
order import tasks (#601)
Browse files Browse the repository at this point in the history
  • Loading branch information
felixguendling authored Oct 21, 2024
1 parent 923d51c commit 165ee53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/import.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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<task>{osr, adr, tt, adr_extend, osr_footpath, tiles, matches};
std::vector<task>{tiles, osr, adr, tt, adr_extend, osr_footpath, matches};
utl::erase_if(tasks, [&](auto&& t) {
if (!t.should_run_()) {
return true;
Expand Down

0 comments on commit 165ee53

Please sign in to comment.