Skip to content

Instantly share code, notes, and snippets.

@KES777
Created June 10, 2017 14:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KES777/451abd9817449d8230de529a32da0e0c to your computer and use it in GitHub Desktop.
Save KES777/451abd9817449d8230de529a32da0e0c to your computer and use it in GitHub Desktop.
unexpected rendering for /2/0
kes@work ~/work/projects/del4/my_app $ script/my_app get /1/0
[Sat Jun 10 17:50:11 2017] [debug] GET "/1/0"
[Sat Jun 10 17:50:11 2017] [debug] Routing to controller "MyApp::Controller::Render" and action "just_render"
[Sat Jun 10 17:50:11 2017] [debug] Rendering template "content_implicit.html.ep"
[Sat Jun 10 17:50:11 2017] [debug] Rendering template "base.html.ep"
[Sat Jun 10 17:50:11 2017] [debug] 200 OK (0.00265s, 377.358/s)
HI2
BUY
kes@work ~/work/projects/del4/my_app $ script/my_app get /1/1
[Sat Jun 10 17:50:14 2017] [debug] GET "/1/1"
[Sat Jun 10 17:50:14 2017] [debug] Routing to controller "MyApp::Controller::Render" and action "just_render"
[Sat Jun 10 17:50:14 2017] [debug] Rendering template "content_explicit.html.ep"
[Sat Jun 10 17:50:14 2017] [debug] Rendering template "base.html.ep"
[Sat Jun 10 17:50:14 2017] [debug] 200 OK (0.002716s, 368.189/s)
HI2
BUY
kes@work ~/work/projects/del4/my_app $ script/my_app get /2/1
[Sat Jun 10 17:50:16 2017] [debug] GET "/2/1"
[Sat Jun 10 17:50:16 2017] [debug] Routing to controller "MyApp::Controller::Render" and action "with_layout"
[Sat Jun 10 17:50:16 2017] [debug] Rendering template "content_explicit.html.ep"
[Sat Jun 10 17:50:16 2017] [debug] Rendering template "base.html.ep"
[Sat Jun 10 17:50:16 2017] [debug] Rendering template "layouts/v1.html.ep"
[Sat Jun 10 17:50:16 2017] [debug] 200 OK (0.003231s, 309.502/s)
<body>
HI2
BUY
</body>
kes@work ~/work/projects/del4/my_app $ script/my_app get /2/0
[Sat Jun 10 17:50:18 2017] [debug] GET "/2/0"
[Sat Jun 10 17:50:18 2017] [debug] Routing to controller "MyApp::Controller::Render" and action "with_layout"
[Sat Jun 10 17:50:18 2017] [debug] Rendering template "content_implicit.html.ep"
[Sat Jun 10 17:50:18 2017] [debug] Rendering template "base.html.ep"
[Sat Jun 10 17:50:18 2017] [debug] Rendering template "layouts/v1.html.ep"
[Sat Jun 10 17:50:18 2017] [debug] 200 OK (0.003122s, 320.307/s)
<body>
C2
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment