You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm seeing strange behaviour when running the following piece of code. Ramaze seems to initialize the controller 4 times (and invoke the action 4 times as well!) when a method returns a response via the "respond!" method. Browsing to / shows "main.ctor" and "main.index" messages once in the terminal, but browsing to /foo shows "main.ctor" and "main.foo" 4 times.
ver - 2012.12.08
require 'ramaze'
class MainController < Ramaze::Controller
def initialize
puts "main.ctor"
end
def index
puts "main.index"
"index page"
end
def foo
puts "main.about"
respond! "no action", 404
end
end
Ramaze.start
The text was updated successfully, but these errors were encountered:
Tested this on Ruby 1.9.3 (ruby 1.9.3p327 (2012-11-10 revision 37606) [x86_64-linux] to be exact) and when browsing to /foo the output is the following:
Seems that Rack::Cascade is hunting every app for something else than a 404. What I don't get is why it keeps coming back to MainController. Needs more digging.
I'm seeing strange behaviour when running the following piece of code. Ramaze seems to initialize the controller 4 times (and invoke the action 4 times as well!) when a method returns a response via the "respond!" method. Browsing to / shows "main.ctor" and "main.index" messages once in the terminal, but browsing to /foo shows "main.ctor" and "main.foo" 4 times.
ver - 2012.12.08
The text was updated successfully, but these errors were encountered: