Hi everyone,
Can anyone help explain what the first set of numbers in WEBrick “Get”
calls refers to?
For example what is the 500 in the following: “Get /admin HTTP/1.1” 500
10767
Compared to the 200 in the following: “Get /admin HTTP/1.1” 200
485
The only code I have running is the scaffold code that rails creates.
I’m guessing that WEBrick is referring to 2 different locations possibly
from multiple installs.
In more detail:
First browser call to /Admin shows correct form; - And WEBrick reports:
“Get /admin HTTP/1.1” 200 485 - -> /admin
Subsequent browser calls to /Admin show:
NoMethodError in AdminController#index
undefined method `each’ for #Mysql:0x37aba80
- And WEBrick reports:
“Get /admin HTTP/1.1” 500 10767 - -> /admin
First browser call to /Admin/new shows correct form for editing; - And
WEBrick reports:
“Get /admin/new HTTP/1.1” 200 10767 - -> /admin/new
Subsequent browswer calls to /Admin/new show:
NoMethodError in AdminController#new
undefined method `each’ for #Mysql:0x376d7e8
RAILS_ROOT: ./script/…/config/…
- And WEBrick reports:
“Get /admin/new HTTP/1.1” 500 9798 - -> /admin/new
So the first calls produce a “Get…200…” and the right browser
results.
Subsequent calls produce a “Get…500…” and “NoMethodError”
Thanks for any input,
Joe Noobie