https://bugs.kde.org/show_bug.cgi?id=494840
--- Comment #1 from CUI Hao <cuihao....@gmail.com> --- Looks like this change between 6.2.0 and 6.2.1 caused the issue: ``` diff --git a/startkde/systemd/plasma-ksplash-ready.service.in b/startkde/systemd/plasma-ksplash-ready.service.in index 3f6744f378..0bd88e6c92 100644 --- a/startkde/systemd/plasma-ksplash-ready.service.in +++ b/startkde/systemd/plasma-ksplash-ready.service.in @@ -6,5 +6,5 @@ PartOf=graphical-session.target [Service] Type=oneshot -ExecStart=-@QtBinariesDir@/qdbus org.kde.KSplash /KSplash org.kde.KSplash.setStage ready +ExecStart=dbus-send --session --reply-timeout=1 --dest=org.kde.KSplash /KSplash org.kde.KSplash.setStage string:ready Slice=session.slice ``` I try to use the previous qdbus version and the long waiting time is gong: ``` $ cat /home/cuihao/.config/systemd/user/plasma-ksplash-ready.service.d/override.conf [Service] ExecStart= ExecStart=/usr/bin/qdbus org.kde.KSplash /KSplash org.kde.KSplash.setStage ready ``` -- You are receiving this mail because: You are watching all bug changes.