yahns Ruby server user/dev discussion
 help / color / mirror / code / Atom feed
* -1 shutdown_timeout?
@ 2015-09-23  7:25 Lin Jen-Shin (godfat)
  2015-09-23  8:05 ` Eric Wong
  0 siblings, 1 reply; 7+ messages in thread
From: Lin Jen-Shin (godfat) @ 2015-09-23  7:25 UTC (permalink / raw)
  To: yahns-public

Hi,

I am trying to switch one application from using rainbows
to yahns, and the application would do some long-polling.

When I ctrl+c to interrupt yahns, I would see yahns is
trying to drop clients which still connect, with timeout
set to 5 (from my config setting client_timeout to 5).

However, after a few seconds, there would be messages
like this from yahns:

    dropping 0 of 1 clients for timeout=-1

The timeout would be -1 after a few seconds, and then
it would only stop when those clients timeout at 60 seconds
(this is my assumption though, it would show a request was
 around 60 seconds from CommonLogger (assumption again)
 in the end, and yahns would quit gracefully)

I looked around the code, which should be:

  def dropping(fdmap)
    if drop_acceptors[0] || fdmap.size > 0
      timeout = @shutdown_expire < Yahns.now ? -1 : @shutdown_timeout
      fdmap.desperate_expire(timeout)
      true
    else
      false
    end
  end

While Yahns.now would get growing, I don't really understand why
it's written like this? Is this intentional? If so, how could I force
yahns shut those clients down in this case?

Thanks!

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2015-09-23  9:50 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-23  7:25 -1 shutdown_timeout? Lin Jen-Shin (godfat)
2015-09-23  8:05 ` Eric Wong
2015-09-23  8:19   ` Lin Jen-Shin (godfat)
2015-09-23  8:30     ` Eric Wong
2015-09-23  9:10       ` Lin Jen-Shin (godfat)
2015-09-23  9:31         ` Eric Wong
2015-09-23  9:49           ` Lin Jen-Shin (godfat)

Code repositories for project(s) associated with this public inbox

	https://yhbt.net/yahns.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).