aboutsummaryrefslogtreecommitdiffstats
path: root/lib/drb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/drb')
-rw-r--r--lib/drb/extservm.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/drb/extservm.rb b/lib/drb/extservm.rb
index 6367fe5e1c..d29a0802a9 100644
--- a/lib/drb/extservm.rb
+++ b/lib/drb/extservm.rb
@@ -84,7 +84,8 @@ module DRb
return if @servers.include?(name)
@servers[name] = false
end
- Process.spawn("#{command} #{DRb.uri} #{name}")
+ Process.detach(Process.spawn("#{command} #{DRb.uri} #{name}"))
+ true
end
end
end