From eafa0486f8d9d68b95d8ee27ef84bf539d286197 Mon Sep 17 00:00:00 2001 From: tidusjar Date: Tue, 17 May 2016 21:24:29 +0100 Subject: [PATCH] Removed SIGHUP from the termination list #220 --- PlexRequests.UI/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PlexRequests.UI/Program.cs b/PlexRequests.UI/Program.cs index 471085c19..1c1fe1415 100644 --- a/PlexRequests.UI/Program.cs +++ b/PlexRequests.UI/Program.cs @@ -93,7 +93,7 @@ static void Main(string[] args) // on mono, processes will usually run as daemons - this allows you to listen // for termination signals (ctrl+c, shutdown, etc) and finalize correctly UnixSignal.WaitAny( - new[] { new UnixSignal(Signum.SIGINT), new UnixSignal(Signum.SIGTERM), new UnixSignal(Signum.SIGQUIT), new UnixSignal(Signum.SIGHUP) }); + new[] { new UnixSignal(Signum.SIGINT), new UnixSignal(Signum.SIGTERM), new UnixSignal(Signum.SIGQUIT) }); } else {