From 0f908397544811f60f33aab4ab277041c21aa089 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Thu, 16 Apr 2015 08:10:33 -0400 Subject: [PATCH] core: fix spurious warning about cpuacct-usage-base deserialization The key was parsed properly, but the warning was still generated. --- src/core/unit.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/unit.c b/src/core/unit.c index 3aa1bf25f7..494dee4156 100644 --- a/src/core/unit.c +++ b/src/core/unit.c @@ -2776,6 +2776,7 @@ int unit_deserialize(Unit *u, FILE *f, FDSet *fds) { if (r < 0) log_debug("Failed to parse CPU usage %s", v); + continue; } else if (streq(l, "cgroup")) { char *s; -- 2.25.1