discourse/script/demon_test/parent.rb
Sam Saffron 30990006a9 DEV: enable frozen string literal on all files
This reduces chances of errors where consumers of strings mutate inputs
and reduces memory usage of the app.

Test suite passes now, but there may be some stuff left, so we will run
a few sites on a branch prior to merging
2019-05-13 09:31:32 +08:00

28 lines
421 B
Ruby

# frozen_string_literal: true
require File.expand_path("../../../config/environment", __FILE__)
puts "Parent is now loaded"
class ForkExecDemon < Demon::Base
def self.prefix
"fork-exec-child"
end
def run
if @pid = fork
write_pid_file
return
end
exec "./child #{parent_pid}"
end
end
ForkExecDemon.start(1, verbose: true)
while true
ForkExecDemon.ensure_running
sleep 0.1
end