Blame SOURCES/0021-daemon-Don-t-try-to-infinitely-kill-monolithic-when-.patch

a562b3
From 9d732a65008b54b10ea57eb33ae3648cab1fb41d Mon Sep 17 00:00:00 2001
a562b3
From: David Rosca <nowrep@gmail.com>
a562b3
Date: Sat, 7 Feb 2015 14:11:53 +0100
a562b3
Subject: [PATCH 21/21] daemon: Don't try to infinitely kill monolithic when it
a562b3
 fails
a562b3
a562b3
Killing monolithic may fail for various reasons (eg. it may not
a562b3
be running in the first place). Don't try to kill it again when it
a562b3
fails.
a562b3
a562b3
BUG: 343682
a562b3
---
a562b3
 src/daemon/kded/BlueDevilDaemon.cpp | 1 -
a562b3
 1 file changed, 1 deletion(-)
a562b3
a562b3
diff --git a/src/daemon/kded/BlueDevilDaemon.cpp b/src/daemon/kded/BlueDevilDaemon.cpp
a562b3
index 12efc73..1a4c250 100644
a562b3
--- a/src/daemon/kded/BlueDevilDaemon.cpp
a562b3
+++ b/src/daemon/kded/BlueDevilDaemon.cpp
a562b3
@@ -375,7 +375,6 @@ void BlueDevilDaemon::monolithicQuit(QDBusPendingCallWatcher* watcher)
a562b3
     QDBusPendingReply<void> reply = *watcher;
a562b3
     if (reply.isError()) {
a562b3
         qDebug() << "Error response: " << reply.error().message();
a562b3
-        killMonolithic();
a562b3
     }
a562b3
 }
a562b3
 
a562b3
-- 
a562b3
2.1.0
a562b3