On 17/10/15 13:44, David Härdeman wrote: > Turns out that gnome-keyring-daemon isn't running and > gnome-settings-daemon does a sync dbus call to gnome-keyring-daemon for every > media key press (see set_launch_context_env() in > gnome-settings-daemon-3.18.1/plugins/media-keys/gsd-media-keys-manager.c), > a call with a 25s timeout.
Given your description, I'm surprised those calls time out. Normally, a D-Bus call to a service that isn't running and can't be autostarted will complete quickly (a fraction of a second), with a NameHasNoOwner error reply sent back by the dbus-daemon itself. The only calls that should time out are: * a call to a service that is running, but doesn't reply for some reason, for instance because of a bug or because it was SIGSTOP'd * a call that triggers autostarting, but where the autostart attempt doesn't work fast enough to get a reply within the time limit Please check your syslog (or systemd Journal) for any warning messages that look relevant? S