unicorn Ruby/Rack server user+dev discussion/patches/pulls/bugs/help
 help / color / mirror / code / Atom feed
From: "Brian P O'Rourke" <bpo@somnambulance.net>
To: mongrel-unicorn@rubyforge.org
Subject: sigwinch and screen
Date: Wed, 14 Sep 2011 22:29:05 +0800	[thread overview]
Message-ID: <CAOowiR3XgNfTs9N7TskECHGHxra4A=gF-bk4XBxskkCzJxc7tA@mail.gmail.com> (raw)
In-Reply-To: <CAOowiR0YXF6TAY2_Sv0KYfr0UL-VCAX=KX8OO_-DnOLG-hDbSA@mail.gmail.com>

(my apologies if this gets posted twice - don't think my earlier mail
went through)

Hi,

I'm running unicorn within screen and have run into some trouble.
Unicorn tries to ignore sigwinch when it's not daemonized.
Unfortunately the check for daemonization fails when unicorn is exec'd
from a process that already has a pgrp.

You can simulate this problem from *within* a screen session with
something like this:

    screen sleep 5 && screen bundle exec unicorn -c unicorn.conf config.ru

sigwinch will be sent to the second screen session the first time you
change to it. This doesn't happen unless you launch at least two
screens in rapid succession, for reasons that escape me so far -
haven't dug into that part much yet.

It seems to me that this is a problem, and is occurring because
Unicorn's check for daemonization is "is init my parent or is my group
different from my pid?", which isn't necessarily the same as checking
whether daemonization has happened.

Here is the patch I would like to see applied:

diff --git a/lib/unicorn/http_server.rb b/lib/unicorn/http_server.rb
index ae0e175..65880d4 100644
--- a/lib/unicorn/http_server.rb
+++ b/lib/unicorn/http_server.rb
@@ -282,7 +282,7 @@ class Unicorn::HttpServer
       when :USR2 # exec binary, stay alive in case something went wrong
         reexec
       when :WINCH
-        if Process.ppid == 1 || Process.getpgrp != $$
+        if Unicorn::Configurator::RACKUP[:daemonized]
           respawn = false
           logger.info "gracefully stopping all workers"
           kill_each_worker(:QUIT)
_______________________________________________
Unicorn mailing list - mongrel-unicorn@rubyforge.org
http://rubyforge.org/mailman/listinfo/mongrel-unicorn
Do not quote signatures (like this one) or top post when replying

       reply	other threads:[~2011-09-14 14:29 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CAOowiR0YXF6TAY2_Sv0KYfr0UL-VCAX=KX8OO_-DnOLG-hDbSA@mail.gmail.com>
2011-09-14 14:29 ` Brian P O'Rourke [this message]
2011-09-14 17:32   ` sigwinch and screen Eric Wong
2011-09-15  0:44     ` Brian P O'Rourke
2011-09-15  0:54       ` Eric Wong

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://yhbt.net/unicorn/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAOowiR3XgNfTs9N7TskECHGHxra4A=gF-bk4XBxskkCzJxc7tA@mail.gmail.com' \
    --to=bpo@somnambulance.net \
    --cc=mongrel-unicorn@rubyforge.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).