job: when cancelling jobs, make sure to propagate this properly to depending jobs

This commit is contained in:
Lennart Poettering 2011-02-24 03:23:14 +01:00
parent 312732cfaf
commit c77bc38d28
3 changed files with 4 additions and 2 deletions

2
TODO
View File

@ -19,6 +19,8 @@ F15:
* Make systemd-cryptsetup cancellable
* udev should be able to upgrade its database on its own
Features:
* introduce simple way to do mandatory conditions

View File

@ -97,7 +97,7 @@ static DBusHandlerResult bus_job_message_dispatch(Job *j, DBusConnection *connec
if (!(reply = dbus_message_new_method_return(message)))
goto oom;
job_free(j);
job_finish_and_invalidate(j, JOB_CANCELED);
} else
return bus_default_message_handler(j->manager, connection, message, INTROSPECTION, properties);

View File

@ -1823,7 +1823,7 @@ void manager_clear_jobs(Manager *m) {
transaction_abort(m);
while ((j = hashmap_first(m->jobs)))
job_free(j);
job_finish_and_invalidate(j, JOB_CANCELED);
}
unsigned manager_dispatch_run_queue(Manager *m) {