Genie Discord forum

If I do the follow and I go to "/test" I get a "Redirecting you to /" but no redirection happens, is this normal ?
route("/test", MyController.test)
function test()
Genie.Renderers.redirect(:index, 200)
end

Ha, I found, need to return code 302 : redirect(:index, 302)