From 02103e57162946b5ac620c552123ff5e305a2791 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Mon, 31 Aug 2020 20:44:00 +0200 Subject: [PATCH] core: always try to reload not-found unit This check was added in d904afc730268d50502f764dfd55b8cf4906c46f. It would only apply in the case where the cache hasn't been loaded yet. I think we pretty much always have the cache loaded when we reach this point, but even if we didn't, it seems better to try to reload the unit. So let's drop this check. --- src/core/manager.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/core/manager.c b/src/core/manager.c index 03599997845..b2878c236d9 100644 --- a/src/core/manager.c +++ b/src/core/manager.c @@ -1956,9 +1956,6 @@ bool manager_unit_cache_should_retry_load(Unit *u) { if (u->load_state != UNIT_NOT_FOUND) return false; - if (u->manager->unit_cache_mtime == 0) - return false; - /* The cache has been updated since the last time we tried to load the unit. There might be new * fragment paths to read. */ if (u->manager->unit_cache_mtime != u->fragment_not_found_time) -- 2.39.5