We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0fcd088 + 3f56b2d commit 3f09368Copy full SHA for 3f09368
lib/forever/base.rb
@@ -74,7 +74,7 @@ def initialize(options={}, &block)
74
print "[\e[90m%s\e[0m] Process %s with pid \e[1m%d\e[0m with \e[1m%s\e[0m and Forever v.%s\n" %
75
[name, detach != false ? :daemonized : :running, Process.pid, forking ? :fork : :thread, Forever::VERSION]
76
77
- %w(INT TERM KILL).each { |signal| trap(signal) { stop! } }
+ %w(INT TERM).each { |signal| trap(signal) { stop! } }
78
trap(:HUP) do
79
IO.open(1, 'w'){ |s| s.puts config }
80
end
0 commit comments