mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-10 23:42:36 -07:00
Removed SIGHUP from the termination list #220
This commit is contained in:
parent
fb1d3a9e92
commit
eafa0486f8
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ namespace PlexRequests.UI
|
||||||
// on mono, processes will usually run as daemons - this allows you to listen
|
// on mono, processes will usually run as daemons - this allows you to listen
|
||||||
// for termination signals (ctrl+c, shutdown, etc) and finalize correctly
|
// for termination signals (ctrl+c, shutdown, etc) and finalize correctly
|
||||||
UnixSignal.WaitAny(
|
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
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue