about summary refs log tree commit homepage
path: root/bin
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2011-06-10 23:54:47 +0000
committerEric Wong <normalperson@yhbt.net>2011-06-11 00:23:57 +0000
commit5d2284afdc2d4f4ff122394ae5fd78a32cb8c09e (patch)
tree5dcdc08565def75ba7d7f106f30d45de9a6de1e2 /bin
parent987b9496171b090e62de488ddc7b9a175c4c8d33 (diff)
downloadunicorn-5d2284afdc2d4f4ff122394ae5fd78a32cb8c09e.tar.gz
This reduces the size of `caller` by 5 frames,
which should make backtraces easier-to-read, raising
exceptions less expensive, and reduce GC runtime.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/unicorn2
-rwxr-xr-xbin/unicorn_rails2
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/unicorn b/bin/unicorn
index f8c20dc..f476a33 100755
--- a/bin/unicorn
+++ b/bin/unicorn
@@ -117,4 +117,4 @@ if $DEBUG
 end
 
 Unicorn::Launcher.daemonize!(options) if rackup_opts[:daemonize]
-Unicorn.run(app, options)
+Unicorn::HttpServer.new(app, options).start.join
diff --git a/bin/unicorn_rails b/bin/unicorn_rails
index 58c232b..860a9ce 100755
--- a/bin/unicorn_rails
+++ b/bin/unicorn_rails
@@ -205,4 +205,4 @@ if rackup_opts[:daemonize]
   options[:pid] = "tmp/pids/unicorn.pid"
   Unicorn::Launcher.daemonize!(options)
 end
-Unicorn.run(app, options)
+Unicorn::HttpServer.new(app, options).start.join