about summary refs log tree commit homepage
path: root/lib/mongrel/handlers.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mongrel/handlers.rb')
-rw-r--r--lib/mongrel/handlers.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mongrel/handlers.rb b/lib/mongrel/handlers.rb
index d8126cf..646311c 100644
--- a/lib/mongrel/handlers.rb
+++ b/lib/mongrel/handlers.rb
@@ -385,8 +385,8 @@ module Mongrel
       end
 
       results << "<h2>Registered Handlers</h2>"
-      uris = listener.classifier.routes
-      results << table("handlers", uris.map {|uri,handlers|
+      handler_map = listener.classifier.handler_map
+      results << table("handlers", handler_map.map {|uri,handlers|
         [uri,
             "<pre>" +
             handlers.map {|h| h.class.to_s }.join("\n") +