mirror of
https://gitea.invidious.io/iv-org/shard-kemal.git
synced 2024-08-15 00:53:36 +00:00
Move to Process.on_interupt
I remember this change was implemented before, I see that it is reverted now and I want that change back because developers on Windows are complaining that it broke their builds.
This commit is contained in:
parent
cb9adcd188
commit
ba7cd7e701
1 changed files with 2 additions and 2 deletions
|
@ -89,10 +89,10 @@ module Kemal
|
||||||
end
|
end
|
||||||
|
|
||||||
private def self.setup_trap_signal
|
private def self.setup_trap_signal
|
||||||
Signal::INT.trap do
|
Process.on_interrupt {
|
||||||
log "#{Kemal.config.app_name} is going to take a rest!" if Kemal.config.shutdown_message
|
log "#{Kemal.config.app_name} is going to take a rest!" if Kemal.config.shutdown_message
|
||||||
Kemal.stop
|
Kemal.stop
|
||||||
exit
|
exit
|
||||||
end
|
}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue