Skip to content

Avoid race condition on startup

David Edmundson requested to merge work/d_ed/i_enjoy_queuing into master

The activities list needs to be loaded at the time the first DBus call is processed. Otherwise kamd will return an empty list.

updateSortedActivityList was queued as it needs to run after some other code in the main KAMD constructor, but this was racey as we could get DBus traffic in the meantime.

This was relatively easy to hit as this is not in the main thread where the connection is registered and there is a blocking DBus call in the Activies constructor.

BUG: 422682

Merge request reports