зеркало из https://github.com/github/ruby.git
explicitly stop DRb::ExtServ
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44872 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
38b57c2915
Коммит
bb6a76f999
|
@ -9,7 +9,8 @@ if __FILE__ == $0
|
|||
end
|
||||
|
||||
DRb.start_service('druby://localhost:0', [1, 2, 'III', 4, "five", 6])
|
||||
DRb::ExtServ.new(ARGV.shift, ARGV.shift)
|
||||
es = DRb::ExtServ.new(ARGV.shift, ARGV.shift)
|
||||
DRb.thread.join
|
||||
es.stop_service if es.alive?
|
||||
end
|
||||
|
||||
|
|
|
@ -29,7 +29,8 @@ AQjjxMXhwULlmuR/K+WwlaZPiLIBYalLAZQ7ZbOPeVkJ8ePao0eLAgEC
|
|||
[ ["C","JP"], ["O","Foo.DRuby.Org"], ["CN", "Sample"] ]
|
||||
|
||||
DRb.start_service('drbssl://localhost:0', [1, 2, 'III', 4, "five", 6], config)
|
||||
DRb::ExtServ.new(ARGV.shift, ARGV.shift)
|
||||
es = DRb::ExtServ.new(ARGV.shift, ARGV.shift)
|
||||
DRb.thread.join
|
||||
es.stop_service if es.alive?
|
||||
end
|
||||
|
||||
|
|
|
@ -9,7 +9,8 @@ if __FILE__ == $0
|
|||
end
|
||||
|
||||
DRb.start_service('drbunix:', [1, 2, 'III', 4, "five", 6])
|
||||
DRb::ExtServ.new(ARGV.shift, ARGV.shift)
|
||||
es = DRb::ExtServ.new(ARGV.shift, ARGV.shift)
|
||||
DRb.thread.join
|
||||
es.stop_service if es.alive?
|
||||
end
|
||||
|
||||
|
|
|
@ -30,7 +30,8 @@ AQjjxMXhwULlmuR/K+WwlaZPiLIBYalLAZQ7ZbOPeVkJ8ePao0eLAgEC
|
|||
DRb::DRbServer.default_argc_limit(8)
|
||||
DRb::DRbServer.default_load_limit(4096)
|
||||
DRb.start_service('drbssl://localhost:0', DRbEx.new, config)
|
||||
DRb::ExtServ.new(ARGV.shift, ARGV.shift)
|
||||
es = DRb::ExtServ.new(ARGV.shift, ARGV.shift)
|
||||
DRb.thread.join
|
||||
es.stop_service if es.alive?
|
||||
end
|
||||
|
||||
|
|
|
@ -10,7 +10,8 @@ if __FILE__ == $0
|
|||
DRb::DRbServer.default_argc_limit(8)
|
||||
DRb::DRbServer.default_load_limit(4096)
|
||||
DRb.start_service('drbunix:', DRbEx.new)
|
||||
DRb::ExtServ.new(ARGV.shift, ARGV.shift)
|
||||
es = DRb::ExtServ.new(ARGV.shift, ARGV.shift)
|
||||
DRb.thread.join
|
||||
es.stop_service if es.alive?
|
||||
end
|
||||
|
||||
|
|
|
@ -25,6 +25,7 @@ if __FILE__ == $0
|
|||
end
|
||||
|
||||
DRb.start_service('druby://localhost:0', Bar.new)
|
||||
DRb::ExtServ.new(ARGV.shift, ARGV.shift)
|
||||
es = DRb::ExtServ.new(ARGV.shift, ARGV.shift)
|
||||
DRb.thread.join
|
||||
es.stop_service if es.alive?
|
||||
end
|
||||
|
|
|
@ -26,6 +26,7 @@ if __FILE__ == $0
|
|||
$SAFE = 1
|
||||
|
||||
DRb.start_service('druby://localhost:0', EvalAttack.new, {:safe_level => 2})
|
||||
DRb::ExtServ.new(ARGV.shift, ARGV.shift)
|
||||
es = DRb::ExtServ.new(ARGV.shift, ARGV.shift)
|
||||
DRb.thread.join
|
||||
es.stop_service if es.alive?
|
||||
end
|
||||
|
|
|
@ -32,7 +32,8 @@ if __FILE__ == $0
|
|||
DRb::DRbServer.default_argc_limit(3)
|
||||
DRb::DRbServer.default_load_limit(100000)
|
||||
DRb.start_service('druby://localhost:0', DRbLarge.new)
|
||||
DRb::ExtServ.new(ARGV.shift, ARGV.shift)
|
||||
es = DRb::ExtServ.new(ARGV.shift, ARGV.shift)
|
||||
DRb.thread.join
|
||||
es.stop_service if es.alive?
|
||||
end
|
||||
|
||||
|
|
|
@ -9,6 +9,7 @@ if __FILE__ == $0
|
|||
end
|
||||
|
||||
DRb.start_service('druby://:8473', [1, 2, 'III', 4, "five", 6])
|
||||
DRb::ExtServ.new(ARGV.shift, ARGV.shift)
|
||||
es = DRb::ExtServ.new(ARGV.shift, ARGV.shift)
|
||||
DRb.thread.join
|
||||
es.stop_service if es.alive?
|
||||
end
|
||||
|
|
|
@ -10,6 +10,7 @@ if __FILE__ == $0
|
|||
|
||||
DRb.start_service('druby://localhost:0', [1, 2, 'III', 4, "five", 6],
|
||||
{:safe_level => 1})
|
||||
DRb::ExtServ.new(ARGV.shift, ARGV.shift)
|
||||
es = DRb::ExtServ.new(ARGV.shift, ARGV.shift)
|
||||
DRb.thread.join
|
||||
es.stop_service if es.alive?
|
||||
end
|
||||
|
|
Загрузка…
Ссылка в новой задаче