unicorn.git  about / heads / tags
Rack HTTP server for Unix and fast clients
blob 436997df72b9674b859a8649f6c4f6449e76adb3 1294 bytes (raw)
$ git show v0.93.0:KNOWN_ISSUES	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
 
= Known Issues

* Installing "unicorn" as a system-wide Rubygem and using the
  {isolate}[http://github.com/jbarnette/isolate] gem may cause issues if
  you're using any of the bundled application-level libraries in
  unicorn/app/* (for compatibility with CGI-based applications, Rails <=
  2.2.2, or ExecCgi).  For now workarounds include:

  * installing the same version of unicorn as a system-wide Rubygem
    _and_ isolating unicorn as well.
  * explicitly setting RUBYLIB or $LOAD_PATH to include any gem path
    where the unicorn gem is installed (e.g.
    /usr/lib/ruby/gems/1.8/gems/unicorn-VERSION/lib)

* WONTFIX: code reloading and restarts with Sinatra 0.3.x (and likely older
  versions) apps is broken.  The workaround is to force production
  mode to disable code reloading as well as disabling "run" in your
  Sinatra application:
    set :env, :production
    set :run, false
  Since this is no longer an issue with Sinatra 0.9.x apps, this will not be
  fixed on our end.  Since Unicorn is itself the application launcher, the
  at_exit handler used in old Sinatra always caused Mongrel to be launched
  whenever a Unicorn worker was about to exit.

  Also remember we're capable of replacing the running binary without dropping
  any connections regardless of framework :)

git clone https://yhbt.net/unicorn.git