summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-08 12:06:42 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-08 12:06:42 +0000
commitc79dac1c3ec4477af4e8a115942c80cfc414f648 (patch)
tree2e4488ec07e3f29cc0182707fd40b83a7bf39fec /lib
parenteb636217f619875b7d66a29caa44daddc4d3d0d5 (diff)
* lib/drb/extservm.rb (DRb::ExtServManager#invoke_service_command):
detach spawned process. [ruby-dev:37936] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22128 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/drb/extservm.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/drb/extservm.rb b/lib/drb/extservm.rb
index 7af644a0b1..3b1819e834 100644
--- a/lib/drb/extservm.rb
+++ b/lib/drb/extservm.rb
@@ -79,7 +79,7 @@ module DRb
@servers[name] = false
end
uri = @uri || DRb.uri
- spawn("#{command} #{uri} #{name}")
+ Process.detach spawn("#{command} #{uri} #{name}")
end
end
end