We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de0f0b5 commit 20a9528Copy full SHA for 20a9528
src/home/homed-home.c
@@ -3156,7 +3156,7 @@ int home_wait_for_worker(Home *h) {
3156
r = wait_for_terminate_with_timeout(h->worker_pid, 30 * USEC_PER_SEC);
3157
if (r == -ETIMEDOUT)
3158
log_warning_errno(r, "Waiting for worker process for home %s timed out. Ignoring.", h->user_name);
3159
- else
+ else if (r < 0)
3160
log_warning_errno(r, "Failed to wait for worker process for home %s. Ignoring.", h->user_name);
3161
3162
(void) hashmap_remove_value(h->manager->homes_by_worker_pid, PID_TO_PTR(h->worker_pid), h);
0 commit comments