Displaying 2 results from an estimated 2 matches for "statushandler".
2006 Jun 11
1
StatusHandler
Zed,
Very cool, finally got around to playing with StatusHandler and
StatisticsHandler. One thing that was missing that I wanted was insight
into _what_ the RailsHandler was working on, and what was queued up
while it sat in single-threaded mode -- ie., the current list of requests.
W/ the attached mongrel.conf, I hacked the RailsHandler to keep a hash
of a...
2007 Apr 20
2
order of registering uri''s matters for URIClassifier ?
...n, any URI that is alphabetically AFTER
"/icons" will be short circuited to a 404 error in mongrel.
The cause is basically :
@classifier.resolve("/junk") # => [nil,nil,nil]
Instead of :
["/junk", "/", [#<Mongrel::DirHandler>, #<Mongrel::StatusHandler>]]
I''ve attached a unit test that shows this effect by calling the
URIClassifier directly. I''m not sure if this is a bug or a
misunderstanding on my part.
enjoy,
-jeremy
--
========================================================================
Jeremy Hinegardner...