Don't send HTML parts, it is flagged as spam and nearly lost. Onto your question...
Dan Moore <[email protected]> wrote: > I’m interested in the SIGWINCH signal and specifically the message > that is posted to the console at an INFO level instead of DEBUG level: > https://github.com/ddollar/foreman/issues/557 > “INFO – : SIGWINCH ignored because we’re not daemonized” I wrote this patch a while ago to a private bug reporter (via [email protected]) back in July 2013, but apparently it was forgotten: --- a/lib/unicorn/http_server.rb +++ b/lib/unicorn/http_server.rb @@ -294,13 +294,13 @@ class Unicorn::HttpServer when :USR2 # exec binary, stay alive in case something went wrong reexec when :WINCH - if Unicorn::Configurator::RACKUP[:daemonized] + if $stdin.tty? + logger.info "SIGWINCH ignored because we're not daemonized" + else respawn = false logger.info "gracefully stopping all workers" soft_kill_each_worker(:QUIT) self.worker_processes = 0 - else - logger.info "SIGWINCH ignored because we're not daemonized" end when :TTIN respawn = true I don't recall it breaks anything, so perhaps it's a good change to make for unicorn 5. > I would like to request that > this be moved to DEBUG level as it’s quite chatty when using tmux, > foreman, and terminal. I don't think using DEBUG is a good idea to hack around a problem, but rather detecting whether stdin is a TTY as above is a better check. The archives are also mirrored to gmane.org and mail-archive.com, so they should be searchable from either of those. > I apologize if this was already discussed, but > I cannot seem to perform a full search on the email archives. The mailing list archives are cloneable via git: git clone --bare git://bogomips.org/unicorn-public/ And the tree layout is described at: http://ssoma.public-inbox.org/ssoma_repository.txt (it's not meant to be cloned without --bare) You can currently use the ssoma command-line (at ssoma.public-inbox.org) tool to import the archives into a mbox/maildir and search using tools such as mairix/notmuch/etc... The existing HTML archives at http://bogomips.org/unicorn-public/ should be easily crawlable by search engines (no JS, frames, CSS or images), but a Xapian-based search might happen in the future (that would also help with maintaining stable IDs for read-only NNTP support).
