From: Alberts Muktupāvels Date: Tue, 12 Feb 2019 01:00:21 +0000 (+0200) Subject: core: when we uninstall a job, add unit to dbus queue X-Git-Tag: v241~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=52c6c9eaecb493cc4d8a146bf67d93c8aea862c2;p=platform%2Fupstream%2Fsystemd.git core: when we uninstall a job, add unit to dbus queue Commit e6d05912cb1785d8c75eb40545beb8a7c6753cb9 added unit to dbus queue on job install. Do same on job uninstall to make sure we get PropertiesChanged signal. --- diff --git a/src/core/job.c b/src/core/job.c index cc55bd0..59bb9d2 100644 --- a/src/core/job.c +++ b/src/core/job.c @@ -151,6 +151,8 @@ void job_uninstall(Job *j) { unit_add_to_gc_queue(j->unit); + unit_add_to_dbus_queue(j->unit); /* The Job property of the unit has changed now */ + hashmap_remove_value(j->manager->jobs, UINT32_TO_PTR(j->id), j); j->installed = false; }