mirror of
https://github.com/ditkrg/rswag.git
synced 2026-01-23 06:16:42 +00:00
549 KiB
549 KiB
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:04:08 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:04:08 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:04:08 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.6ms (Views: 1.9ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:04:08 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.8ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:04:08 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:04:08 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:04:08 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:04:08 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:04:08 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:06:33 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:06:33 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:06:33 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 19.6ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:06:33 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.7ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:06:33 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:06:33 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:06:33 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:06:33 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:06:33 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:08:16 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:08:16 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:08:16 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.0ms (Views: 1.2ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:08:16 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:08:16 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:08:16 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:08:16 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:08:16 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:08:16 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:14:23 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:14:23 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:14:23 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 15.9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:14:23 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.3ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:14:23 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:14:23 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:14:23 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:14:23 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:14:23 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:24:46 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 6.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (3.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:24:46 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:24:46 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:24:46 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 1.4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:24:46 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:24:46 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:24:46 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:24:46 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:24:46 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 2.4ms (Views: 1.2ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:25:06 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 10.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:25:06 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:25:06 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:25:06 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 0.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:25:06 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:25:06 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:25:06 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:25:06 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:25:06 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 2.3ms (Views: 1.0ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:52:09 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:52:09 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:52:09 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.7ms (Views: 2.9ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:52:09 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:52:10 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:52:10 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:52:10 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:52:10 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 1.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:52:10 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.6ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:52:55 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (3.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:52:55 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:52:55 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.1ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(1.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:52:55 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.0ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:52:55 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:52:55 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:52:55 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:52:55 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 1.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:52:55 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:53:29 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 9.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:53:29 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:53:29 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:53:29 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 0.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:53:29 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:53:29 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.4ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:53:29 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:53:29 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:53:29 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 2.2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:55:09 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:55:09 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:55:09 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 15.2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:55:09 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:55:09 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:55:09 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:55:09 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:55:09 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:55:09 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:55:41 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:55:41 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:55:41 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.7ms (Views: 1.7ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:55:41 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:55:41 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:55:41 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:55:41 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:55:41 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 1.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:55:41 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:56:02 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:56:02 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:56:02 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.8ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:56:02 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.7ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:56:02 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.2ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:56:02 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:56:02 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:56:02 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:56:03 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:59:07 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:59:07 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:59:07 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.9ms (Views: 1.6ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:59:07 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:59:07 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:59:07 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:59:07 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:59:07 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:59:07 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:59:34 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 8.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:59:34 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:59:34 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:59:34 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:59:34 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:59:34 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:59:34 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:59:34 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:59:34 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 2.5ms (Views: 1.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 19:01:39 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 02:01:39 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 02:01:39 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.6ms (Views: 1.7ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 19:01:39 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 19:01:39 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 02:01:39 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 02:01:39 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 19:01:39 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 19:01:39 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 19:02:38 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 02:02:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 02:02:38 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.9ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 19:02:38 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 19:02:38 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.2ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 02:02:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 02:02:38 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 19:02:38 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 19:02:38 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.4ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 19:03:13 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 02:03:13 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 02:03:13 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 19:03:13 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 19:03:13 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 02:03:13 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 02:03:13 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 19:03:13 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 19:03:13 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.6ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:02:32 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 6.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:02:32 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:02:32 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:02:32 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:02:32 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:02:32 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:02:32 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:02:32 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:02:32 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 2.1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:02:39 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 6.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:02:39 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:02:39 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:02:39 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:02:39 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:02:39 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.8ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:02:39 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:02:39 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:02:39 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 2.3ms (Views: 1.0ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:03:24 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:03:24 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:03:24 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.7ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:03:24 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:03:24 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:03:24 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:03:24 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:03:24 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.7ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:03:24 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:04:33 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 6.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:04:33 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:04:33 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:04:33 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:04:33 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:04:33 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:04:33 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:04:33 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:04:33 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 2.9ms (Views: 1.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:04:43 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:04:43 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:04:43 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.5ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:04:43 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.2ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:04:43 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:04:43 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:04:43 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:04:43 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:04:43 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.6ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:06:05 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:06:05 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:06:05 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.7ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:06:05 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.1ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:06:05 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.1ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:06:05 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:06:05 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:06:05 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:06:05 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:07:03 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
SQL (3.8ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:07:03 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:07:03 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 21.2ms (Views: 2.7ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:07:03 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.7ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:07:03 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:07:03 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:07:03 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:07:03 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:07:03 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:07:12 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:07:12 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:07:12 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:07:12 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.5ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:07:12 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:07:12 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:07:12 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:07:12 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:07:12 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:08:05 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:08:05 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:08:05 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:08:05 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:08:05 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:08:05 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:08:05 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:08:05 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:08:05 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:13:32 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.6ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:13:32 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:13:32 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:13:32 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:13:32 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:13:32 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:13:32 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:13:32 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:13:32 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:18:14 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:18:14 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:18:14 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.3ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:18:31 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (4.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:18:31 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:18:31 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 15.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:23:00 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:23:00 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:23:00 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:23:19 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:23:19 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:23:19 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.9ms (Views: 2.4ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:26:56 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 6.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:26:56 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:26:56 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:26:56 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 0.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:26:56 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:26:56 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.2ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:26:56 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:26:56 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:26:56 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 2.2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:29:17 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:29:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:29:17 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.8ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:29:17 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.7ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:29:17 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:29:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:29:17 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:29:17 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:29:17 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:29:55 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 8.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:29:55 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:29:55 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:29:55 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 1.7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:29:55 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:29:55 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:29:55 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:29:55 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:29:55 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 2.6ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:30:14 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (5.7ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:30:14 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:30:14 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:30:14 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:30:14 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:30:14 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:30:14 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:30:14 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:30:14 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:32:56 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 7.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:32:56 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:32:56 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:32:56 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:32:56 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.1ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:32:56 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:32:56 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:32:56 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:32:56 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 2.1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:32:59 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:32:59 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:32:59 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.7ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:32:59 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:32:59 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:32:59 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:32:59 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:32:59 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:32:59 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:34:05 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (4.8ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:34:05 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:34:05 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 15.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:34:05 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:34:05 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:34:05 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:34:05 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:34:05 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:34:05 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:36:54 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:36:54 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:36:54 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.6ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:36:54 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.7ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:36:54 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:36:54 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:36:54 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:36:54 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:36:54 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:37:10 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:37:10 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:37:10 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.3ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:37:10 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:37:10 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:37:10 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:37:10 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:37:10 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:37:10 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:40:51 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:40:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:40:51 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 20.1ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:40:51 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:40:51 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:40:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:40:51 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:40:51 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:40:51 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:41:23 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:41:23 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:41:23 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:41:23 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 5.0ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:41:23 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:41:23 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:41:23 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:41:23 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 4.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:41:23 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.6ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:48:51 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:48:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:48:51 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.6ms (Views: 1.9ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:48:51 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.7ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:48:51 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:48:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:48:51 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:48:51 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:48:51 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:53:04 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:53:04 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:53:04 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.8ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:53:04 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 5.1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:53:04 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:53:04 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:53:04 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:53:04 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:53:04 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:58:03 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:58:03 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:58:03 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 15.9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:58:03 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:58:03 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:58:03 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:58:03 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:58:03 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:58:03 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:04:46 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (4.7ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:04:46 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:04:46 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:04:46 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:04:46 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:04:46 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:04:46 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:04:46 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:04:47 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:05:00 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:05:00 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:05:00 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.1ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:05:00 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:05:00 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.1ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:05:00 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:05:00 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:05:00 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:05:00 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:07:38 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:07:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:07:38 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.3ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:07:38 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:07:38 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.1ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:07:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:07:38 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:07:38 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:07:38 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.2ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:07:42 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (5.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:07:42 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:07:42 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 15.1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:07:42 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:07:42 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.2ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:07:42 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:07:42 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:07:42 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:07:42 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:11:52 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 9.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:11:52 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:11:52 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:11:52 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:11:52 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.1ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:11:52 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:11:52 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.2ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:11:52 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:11:52 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 3.4ms (Views: 1.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:12:07 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (3.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:12:07 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:12:07 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.8ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:12:07 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:12:07 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:12:07 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:12:07 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:12:07 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:12:07 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:12:17 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:12:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:12:17 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.0ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:12:17 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:12:17 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:12:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:12:17 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:12:17 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:12:17 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:14:18 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (5.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:14:18 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:14:18 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.6ms (Views: 1.6ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:14:18 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:14:18 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:14:18 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:14:18 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:14:18 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.2ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:14:18 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:15:32 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (3.8ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:15:32 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:15:32 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 15.5ms (Views: 1.6ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:15:32 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:15:32 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:15:32 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:15:32 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:15:32 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:15:32 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:16:38 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (3.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:16:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:16:38 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.1ms (Views: 1.6ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:16:39 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:16:39 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:16:39 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:16:39 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:16:39 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:16:39 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:23:45 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:23:45 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:23:45 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.0ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:23:45 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.1ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:23:45 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:23:45 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:23:45 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:23:45 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:23:45 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:39:36 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:39:36 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:39:36 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.8ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:39:36 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 5.2ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 13:39:36 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:39:36 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:39:36 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 13:39:36 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 13:39:36 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:40:17 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:40:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:40:17 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.0ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:40:17 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 13:40:17 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.1ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:40:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:40:17 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 13:40:17 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 13:40:17 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:40:37 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:40:37 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:40:37 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.5ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:40:37 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 13:40:37 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:40:37 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:40:37 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 13:40:37 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 13:40:37 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:42:43 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:42:43 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:42:43 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:42:43 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 13:42:43 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:42:43 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:42:43 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 13:42:43 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 13:42:43 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:46:01 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:46:01 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:46:01 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.5ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:46:01 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 13:46:01 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:46:01 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:46:01 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 13:46:01 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 13:46:01 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 14:44:20 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 21:44:20 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 21:44:20 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 14:44:20 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 14:44:20 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.2ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.6ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 21:44:20 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 21:44:20 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 14:44:20 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 14:44:20 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 14:45:24 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 21:45:24 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 21:45:24 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 14:45:24 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 14:45:24 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 21:45:24 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 21:45:24 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 14:45:24 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 14:45:24 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:00:53 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:00:53 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:00:53 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.3ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:00:53 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:00:53 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:00:53 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:00:53 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:00:53 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:00:53 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:02:19 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:02:19 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:02:19 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:02:19 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.7ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:02:19 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:02:19 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:02:19 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:02:19 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:02:19 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:03:01 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:03:01 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:03:01 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:03:01 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:03:01 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:03:01 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:03:01 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:03:01 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:03:01 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:03:27 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:03:27 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:03:27 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:03:27 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:03:27 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:03:27 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:03:27 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:03:27 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:03:27 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.3ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:05:40 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.8ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:05:40 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:05:40 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.1ms (Views: 1.6ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:05:40 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:05:40 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:05:40 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:05:40 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:05:40 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:05:40 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:06:10 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:06:10 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:06:10 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:06:10 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:06:10 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:06:10 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:06:10 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:06:10 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:06:10 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:14:44 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:14:44 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:14:44 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.8ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:14:44 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.1ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.7ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:14:44 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.3ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:14:44 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:14:44 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:14:44 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:14:44 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:37 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:37 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:37 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.8ms (Views: 1.8ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:37 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:37 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.6ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:37 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:37 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:37 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:37 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:38 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:38 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 15.2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:38 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:38 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.3ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:38 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:38 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:38 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:39 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:39 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:39 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:39 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.2ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:39 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:39 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:39 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:39 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:39 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:40 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:40 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:40 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.4ms (Views: 2.2ms | ActiveRecord: 0.0ms)
(1.2ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:40 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:40 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:40 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:40 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:40 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:40 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.6ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:41 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:41 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:41 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.7ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:42 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:42 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:42 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:42 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:42 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:42 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:43 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:43 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:43 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:43 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:43 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:43 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:43 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:43 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:43 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:44 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:44 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:44 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.0ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:44 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:44 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:44 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:44 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:44 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:44 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:45 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:45 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:45 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(1.2ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:45 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:45 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:45 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:45 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:45 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:45 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:46 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (4.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:46 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:46 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.3ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:46 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.0ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:46 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:46 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:46 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:46 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:46 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:47 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:47 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:47 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.3ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:47 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:47 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:47 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:47 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:47 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:47 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:48 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:48 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:48 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.1ms (Views: 1.7ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:48 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:48 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.3ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:48 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:48 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:48 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:48 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:49 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:49 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:49 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.5ms (Views: 1.7ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:49 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:49 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:49 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:49 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:49 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:49 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:50 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:50 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:50 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.5ms (Views: 2.2ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:50 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:50 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:50 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:50 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:50 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:50 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:51 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:51 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.7ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:51 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:51 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:51 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:51 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:51 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:52 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:52 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:52 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.4ms (Views: 2.4ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:52 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:52 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.3ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:52 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:52 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:52 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:52 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:53 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:53 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:53 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:53 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 6.1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:53 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:53 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:53 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:53 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:53 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:54 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:54 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:54 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.5ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:54 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:54 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:54 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:54 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:54 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:54 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:55 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:55 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:55 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.8ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:55 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 5.5ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:55 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:55 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:55 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:55 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:55 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:57 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
SQL (2.7ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:57 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:57 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:57 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:57 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.6ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:57 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:57 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:57 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:57 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:58 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:58 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:58 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.3ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:58 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:58 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:58 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:58 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:58 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:58 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:17 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:17 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.6ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:17 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.0ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:19:17 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:17 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:19:17 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:19:17 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:18 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:18 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:18 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:18 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.7ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:19:18 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:18 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:18 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:19:18 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:19:18 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:19 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:19 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:19 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.3ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:19 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:19:19 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:19 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:19 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:19:19 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:19:19 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:20 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (3.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:20 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:20 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:20 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:19:20 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:20 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:20 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:19:20 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:19:20 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:21 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:21 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:21 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.9ms (Views: 1.6ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:21 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:19:21 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:21 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:21 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:19:21 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:19:21 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:22 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:22 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:22 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:22 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.1ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.5ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:19:22 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.3ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:22 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:22 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:19:22 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:19:22 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:23 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:23 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:23 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.3ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:23 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.9ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:19:23 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:23 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:23 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:19:23 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:19:23 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:39 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:39 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:39 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.0ms (Views: 2.5ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:39 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.7ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:39 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:39 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:39 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:39 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:39 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.2ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:41 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:41 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:41 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:41 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 5.0ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:41 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:41 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:41 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:41 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:41 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:42 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:42 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:42 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:42 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:42 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:42 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:42 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:42 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:42 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:43 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:43 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:43 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.6ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:43 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 5.1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:43 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.6ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:43 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:43 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:43 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:43 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:44 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:44 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:44 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:44 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 5.0ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:44 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.6ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:44 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:44 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:44 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:44 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:45 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:45 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:45 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.7ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:45 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.7ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:45 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:45 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:45 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:45 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:45 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:46 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:46 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:46 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.0ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:46 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:46 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:46 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:46 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:46 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:46 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:47 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:47 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:47 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.8ms (Views: 2.4ms | ActiveRecord: 0.0ms)
(0.7ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:47 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:47 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.2ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:47 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:47 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:47 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:47 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:48 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:48 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:48 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:48 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:48 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.2ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:48 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:48 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:48 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:48 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:49 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:49 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:49 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.6ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:49 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:49 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.2ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:49 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:49 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:49 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:49 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:50 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:50 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:50 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.6ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:50 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:50 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:50 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:50 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:50 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:50 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.6ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:51 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:51 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:51 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:51 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:51 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:51 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:51 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:52 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
SQL (2.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:52 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:52 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.4ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:52 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:52 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:52 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:52 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:52 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:52 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:53 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:53 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:53 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.1ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:53 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:53 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:53 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:53 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:53 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:53 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.4ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:54 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:54 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:54 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:54 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:54 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:55 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:55 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:55 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:55 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:56 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:56 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:56 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.6ms (Views: 2.4ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:56 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:56 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:56 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:56 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:56 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:56 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:57 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:57 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:57 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 15.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:57 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:57 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:57 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:57 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:57 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:57 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:58 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:58 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:58 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.5ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:58 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.4ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:58 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:58 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:58 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:58 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:58 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:59 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:59 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:59 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 15.7ms (Views: 1.7ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:59 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:59 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:59 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:59 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:59 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:59 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:00 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
SQL (3.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:00 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:00 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 18.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:00 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.0ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:22:00 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.3ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:00 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:00 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:22:00 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:22:00 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:01 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:01 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:01 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.7ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:01 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:22:01 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:01 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:01 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:22:01 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:22:01 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.3ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:02 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:02 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:02 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.8ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:02 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:22:02 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:02 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:02 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:22:02 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:22:02 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:03 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.7ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:03 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:03 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.8ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:03 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:22:03 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.3ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:03 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:03 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:22:03 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:22:03 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:34 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.6ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:34 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:34 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.0ms (Views: 1.7ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:34 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:22:34 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:34 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:34 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:22:34 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:22:34 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.3ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:35 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:35 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:35 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.6ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:35 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:22:35 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:35 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:35 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:22:35 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:22:35 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:08 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:08 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:08 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.8ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:08 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:24:08 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:08 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:08 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:24:08 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:24:08 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:09 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:09 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:09 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.6ms (Views: 2.0ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:09 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.2ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:24:09 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:09 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:09 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:24:09 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:24:09 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:51 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (3.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:51 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.1ms (Views: 1.7ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:51 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:24:51 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:51 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:24:51 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 4.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:24:51 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:52 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:52 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:52 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.1ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:52 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:24:52 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:52 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:52 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:24:52 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:24:52 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:53 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:53 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:53 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.7ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:53 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.4ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:24:53 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:53 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:53 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:24:53 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:24:53 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:34 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:26:34 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:26:34 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.0ms (Views: 1.6ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:34 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:26:34 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:26:34 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:26:34 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:26:34 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:26:34 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:35 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:26:35 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:26:35 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:35 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:26:35 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:26:35 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:26:35 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:26:35 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:26:35 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:36 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:26:36 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:26:36 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.3ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:36 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.4ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:26:36 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 2.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:26:36 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:26:36 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:26:36 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:26:36 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:37 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:26:37 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:26:37 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.1ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:37 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:26:37 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.3ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:26:37 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:26:37 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:26:37 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:26:37 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:38 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:26:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:26:38 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:38 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:22 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:22 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:22 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.7ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:22 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:27:22 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.1ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:22 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:22 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:27:22 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:27:22 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:24 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:24 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:24 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.3ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:24 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:27:24 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:24 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:24 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:27:24 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:27:24 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:32 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.6ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:32 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:32 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.8ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:32 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:27:32 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:32 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:32 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:27:32 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:27:33 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:34 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:34 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:34 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.3ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:34 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:27:34 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:34 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:34 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:27:34 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 4.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:27:34 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:35 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:35 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:35 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:35 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.2ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:27:35 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:35 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:35 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:27:35 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:27:35 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:36 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:36 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:36 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.4ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:36 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:27:36 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:36 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:36 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:27:36 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:27:36 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.3ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:37 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.6ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:37 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:37 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:37 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.4ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:27:37 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:37 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:37 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:27:37 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:27:37 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:38 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:38 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 11.9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:38 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:27:38 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:38 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:27:38 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:27:38 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:31:16 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:31:16 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:31:16 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.7ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:31:16 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.4ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:31:16 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:31:16 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:31:16 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:31:16 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:31:16 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:31:17 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:31:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:31:17 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:31:17 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.2ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:31:17 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:31:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:31:17 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:31:17 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:31:17 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:31:18 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:31:18 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:31:18 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 15.6ms (Views: 1.8ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:31:28 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:31:28 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:31:28 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:31:28 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:31:28 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:31:28 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:31:28 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:31:28 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:31:28 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:34:10 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:34:10 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:34:10 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.4ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(1.2ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:34:10 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.3ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:34:10 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:34:10 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:34:10 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:34:10 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:34:10 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:34:56 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.7ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:34:56 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:34:56 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.0ms (Views: 1.7ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:34:56 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:34:56 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:34:56 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:34:56 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:34:56 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:34:56 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:36:24 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:36:24 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:36:24 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.3ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:36:24 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:36:24 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:36:24 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:36:24 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:36:24 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:36:24 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:37:10 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
SQL (3.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:37:10 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:37:10 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.9ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(1.2ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:37:10 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:37:10 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:37:10 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:37:10 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:37:10 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:37:10 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:37:38 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (3.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:37:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:37:38 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.1ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:37:38 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:37:38 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:37:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:37:38 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:37:38 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:37:38 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
(0.3ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 21:19:01 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.3ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 21:19:01 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 21:19:01 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", 2016-10-08 04:19:01 UTC], ["updated_at", 2016-10-08 04:19:01 UTC]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 21:19:01 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.1ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 21:19:01 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.2ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]]
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.2ms)
(0.1ms) rollback transaction
(0.1ms) begin transaction
(0.2ms) rollback transaction
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 21:45:07 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.3ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 21:45:07 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 21:45:07 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", 2016-10-08 04:45:07 UTC], ["updated_at", 2016-10-08 04:45:07 UTC]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 21:45:07 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms)
(0.9ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 21:45:07 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]]
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.2ms) rollback transaction
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 22:58:39 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.3ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 22:58:39 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 22:58:39 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", 2016-10-08 05:58:39 UTC], ["updated_at", 2016-10-08 05:58:39 UTC]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 22:58:39 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.1ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 22:58:39 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]]
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.1ms) rollback transaction
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 22:59:41 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.3ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 22:59:41 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 22:59:41 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", 2016-10-08 05:59:41 UTC], ["updated_at", 2016-10-08 05:59:41 UTC]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 22:59:41 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.1ms)
(1.2ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 22:59:41 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]]
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.1ms) rollback transaction
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:01:50 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
Completed 500 Internal Server Error in 2ms
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:01:50 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
Completed 500 Internal Server Error in 0ms
(0.1ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-08 00:01:50 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Completed 500 Internal Server Error in 0ms
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", "2016-10-08 07:01:50.949961"], ["updated_at", "2016-10-08 07:01:50.949961"]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-08 00:01:50 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT 1 [["id", 1]]
Completed 500 Internal Server Error in 2ms
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-08 00:01:50 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT 1 [["id", 0]]
Completed 500 Internal Server Error in 0ms
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.1ms) rollback transaction
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:02:18 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
Completed 500 Internal Server Error in 2ms
(0.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:02:18 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
Completed 500 Internal Server Error in 0ms
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-08 00:02:18 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.1ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", "2016-10-08 07:02:18.321728"], ["updated_at", "2016-10-08 07:02:18.321728"]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-08 00:02:18 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT 1 [["id", 1]]
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-08 00:02:18 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT 1 [["id", 0]]
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.1ms) rollback transaction
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:03:28 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.1ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", "2016-10-08 07:03:28.606018"], ["updated_at", "2016-10-08 07:03:28.606018"]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16ms (Views: 1.0ms | ActiveRecord: 0.6ms)
(1.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:03:28 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.1ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 5ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-08 00:03:28 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", "2016-10-08 07:03:28.638087"], ["updated_at", "2016-10-08 07:03:28.638087"]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-08 00:03:28 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT 1 [["id", 1]]
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-08 00:03:28 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT 1 [["id", 0]]
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
(0.1ms) rollback transaction
(0.3ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:05:05 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", 2016-10-08 07:05:05 UTC], ["updated_at", 2016-10-08 07:05:05 UTC]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 11ms (Views: 2.2ms | ActiveRecord: 0.8ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:05:05 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.1ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 6ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-08 00:05:05 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", 2016-10-08 07:05:05 UTC], ["updated_at", 2016-10-08 07:05:05 UTC]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-08 00:05:05 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.1ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-08 00:05:05 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]]
Completed 404 Not Found in 2ms (Views: 0.5ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.2ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:06:48 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.1ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sat, 08 Oct 2016 07:06:48 UTC +00:00], ["title", "foo"], ["updated_at", Sat, 08 Oct 2016 07:06:48 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:06:48 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-08 00:06:48 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sat, 08 Oct 2016 07:06:48 UTC +00:00], ["title", "foo"], ["updated_at", Sat, 08 Oct 2016 07:06:48 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-08 00:06:48 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-08 00:06:48 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:09:14 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sat, 08 Oct 2016 07:09:14 UTC +00:00], ["title", "foo"], ["updated_at", Sat, 08 Oct 2016 07:09:14 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.6ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:09:14 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-08 00:09:14 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sat, 08 Oct 2016 07:09:14 UTC +00:00], ["title", "foo"], ["updated_at", Sat, 08 Oct 2016 07:09:14 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-08 00:09:14 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-08 00:09:15 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:09:55 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.7ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sat, 08 Oct 2016 07:09:55 UTC +00:00], ["title", "foo"], ["updated_at", Sat, 08 Oct 2016 07:09:55 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.8ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:09:55 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-08 00:09:55 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sat, 08 Oct 2016 07:09:55 UTC +00:00], ["title", "foo"], ["updated_at", Sat, 08 Oct 2016 07:09:55 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-08 00:09:55 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 4.6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-08 00:09:55 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 5.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 20:46:10 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (4.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sun, 09 Oct 2016 03:46:10 UTC +00:00], ["title", "foo"], ["updated_at", Sun, 09 Oct 2016 03:46:10 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 20.2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 20:46:10 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 5.7ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-08 20:46:10 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sun, 09 Oct 2016 03:46:10 UTC +00:00], ["title", "foo"], ["updated_at", Sun, 09 Oct 2016 03:46:10 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-08 20:46:10 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.2ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 5.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-08 20:46:10 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 20:47:50 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sun, 09 Oct 2016 03:47:50 UTC +00:00], ["title", "foo"], ["updated_at", Sun, 09 Oct 2016 03:47:50 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 15.7ms (Views: 1.8ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 20:47:50 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 20:49:00 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sun, 09 Oct 2016 03:49:00 UTC +00:00], ["title", "foo"], ["updated_at", Sun, 09 Oct 2016 03:49:00 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 20:49:00 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-08 20:49:00 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sun, 09 Oct 2016 03:49:00 UTC +00:00], ["title", "foo"], ["updated_at", Sun, 09 Oct 2016 03:49:00 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-08 20:49:00 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-08 20:49:00 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:15:48 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (3.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:15:48 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:15:48 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 15.9ms (Views: 1.6ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:15:48 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:15:48 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:15:48 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 09:15:48 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 09:15:48 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:16:01 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:16:01 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:16:01 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.7ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:16:01 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:16:01 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:16:01 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 09:16:01 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 09:16:01 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:16:06 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.7ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:16:06 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:16:06 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.4ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:16:06 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:16:06 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:16:06 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 09:16:06 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 5.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 09:16:06 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.6ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:17:57 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.1ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:17:57 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:17:57 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:17:57 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.8ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:17:57 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:17:57 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 09:17:57 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 09:17:57 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:19:45 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:19:45 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:19:45 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:19:45 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 09:19:45 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:19:45 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:19:45 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 09:19:45 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 09:19:45 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:59:12 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.1ms) SAVEPOINT active_record_1
SQL (3.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:59:12 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:59:12 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.3ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.2ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:59:12 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 09:59:12 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.6ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.7ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:59:12 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:59:12 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 09:59:12 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 09:59:12 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 13:19:27 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.1ms) SAVEPOINT active_record_1
SQL (11.6ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 20:19:27 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 20:19:27 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 61.7ms (Views: 6.2ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 13:19:28 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
(0.1ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 15.9ms (Views: 0.4ms | ActiveRecord: 0.2ms)
(0.1ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 13:19:28 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.3ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 8.2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.1ms) begin transaction
(0.1ms) SAVEPOINT active_record_1
SQL (1.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 20:19:28 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 20:19:28 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 13:19:28 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.3ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 15.3ms (Views: 0.6ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.2ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 13:19:28 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.6ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 4.5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.1ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 13:27:34 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.1ms) SAVEPOINT active_record_1
SQL (10.8ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 20:27:34 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 20:27:34 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 55.7ms (Views: 5.6ms | ActiveRecord: 0.0ms)
(1.3ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 13:27:34 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
(0.1ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 15.1ms (Views: 0.4ms | ActiveRecord: 0.3ms)
(0.1ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 13:27:34 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.3ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 5.8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.1ms) begin transaction
(0.1ms) SAVEPOINT active_record_1
SQL (0.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 20:27:34 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 20:27:34 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 13:27:34 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.3ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 11.1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
(1.3ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 13:27:34 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.4ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 3.7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.2ms) rollback transaction
(0.1ms) begin transaction
Connecting to database specified by database.yml
(0.3ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 13:28:59 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.1ms) SAVEPOINT active_record_1
SQL (10.6ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 20:28:59 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 20:28:59 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 59.4ms (Views: 5.8ms | ActiveRecord: 0.0ms)
(1.4ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 13:28:59 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
(0.1ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 13.8ms (Views: 0.5ms | ActiveRecord: 0.2ms)
(0.1ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 13:28:59 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.3ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 5.6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.2ms) begin transaction
(0.1ms) SAVEPOINT active_record_1
SQL (0.8ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 20:28:59 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 20:28:59 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 13:28:59 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.3ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 10.7ms (Views: 0.4ms | ActiveRecord: 0.0ms)
(1.4ms) rollback transaction
(0.2ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 13:28:59 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.3ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 3.5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.1ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 14:31:46 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (3.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 21:31:46 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 21:31:46 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 15.9ms (Views: 1.6ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 14:31:46 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.1ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.4ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 14:31:46 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 21:31:46 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 21:31:46 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 14:31:46 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 14:31:46 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 15:12:29 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.1ms) SAVEPOINT active_record_1
SQL (10.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 22:12:29 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 22:12:29 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 60.1ms (Views: 5.5ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 15:12:29 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
(0.1ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 17.1ms (Views: 0.6ms | ActiveRecord: 0.2ms)
(0.1ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 15:12:29 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.3ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 6.6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.1ms) begin transaction
(0.1ms) SAVEPOINT active_record_1
SQL (0.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 22:12:29 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 22:12:29 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 15:12:29 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.2ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 11.7ms (Views: 0.4ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 15:12:29 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.3ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 2.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 15:13:22 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.1ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 22:13:22 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 22:13:22 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.8ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 15:13:22 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 15:13:22 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 22:13:22 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 22:13:22 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 15:13:22 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 15:13:22 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 15:17:12 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 22:17:12 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 22:17:12 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.6ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 15:17:12 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 15:17:12 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 22:17:12 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 22:17:12 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 15:17:12 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 15:17:12 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 15:40:23 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 22:40:23 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 22:40:23 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 15:40:23 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 15:40:23 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 22:40:23 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 22:40:23 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 15:40:23 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 15:40:23 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 16:42:44 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 23:42:44 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 23:42:44 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.5ms (Views: 1.7ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 16:42:44 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 16:42:44 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 23:42:44 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 23:42:44 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 16:42:44 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 16:42:44 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 17:37:15 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (3.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 00:37:15 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 00:37:15 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.1ms (Views: 1.7ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 17:37:15 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.6ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 17:37:15 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 00:37:15 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 00:37:15 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 17:37:15 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 17:37:15 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 17:37:52 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.1ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 00:37:52 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 00:37:52 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 17:37:52 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 17:37:52 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 00:37:52 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 00:37:52 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 17:37:52 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 17:37:52 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 17:39:41 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 00:39:41 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 00:39:41 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 17:39:41 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 17:39:41 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 00:39:41 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 00:39:41 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 17:39:41 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 17:39:41 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 17:43:31 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.1ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 00:43:31 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 00:43:31 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.0ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 17:43:31 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 17:43:31 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 00:43:31 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 00:43:31 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 17:43:31 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.7ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 17:43:31 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 18:02:04 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.6ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 01:02:04 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 01:02:04 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.6ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 18:02:05 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.7ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 18:02:05 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 01:02:05 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 01:02:05 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 18:02:05 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 18:02:05 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (4.8ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 17:51:13 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 17:51:13 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
(0.3ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs?foo=bar" for 127.0.0.1 at 2016-10-11 10:51:59 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "foo"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 17:51:59 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 17:51:59 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs?foo=bar" for 127.0.0.1 at 2016-10-11 10:51:59 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "foo"=>"bar", "blog"=>{"title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 6.6ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar&foo=bar" for 127.0.0.1 at 2016-10-11 10:51:59 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar", "foo"=>"bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 17:51:59 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 17:51:59 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1?foo=bar" for 127.0.0.1 at 2016-10-11 10:51:59 -0700
Processing by BlogsController#show as JSON
Parameters: {"foo"=>"bar", "id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid?foo=bar" for 127.0.0.1 at 2016-10-11 10:51:59 -0700
Processing by BlogsController#show as JSON
Parameters: {"foo"=>"bar", "id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs?foo=bar" for 127.0.0.1 at 2016-10-11 10:52:27 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "foo"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
Completed 500 Internal Server Error in 0.4ms
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs?foo=bar" for 127.0.0.1 at 2016-10-11 10:52:27 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "foo"=>"bar", "blog"=>{"title"=>"foo"}}
Completed 500 Internal Server Error in 0.1ms
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar&foo=bar" for 127.0.0.1 at 2016-10-11 10:52:27 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar", "foo"=>"bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 5.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 17:52:27 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 17:52:27 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1?foo=bar" for 127.0.0.1 at 2016-10-11 10:52:27 -0700
Processing by BlogsController#show as JSON
Parameters: {"foo"=>"bar", "id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid?foo=bar" for 127.0.0.1 at 2016-10-11 10:52:27 -0700
Processing by BlogsController#show as JSON
Parameters: {"foo"=>"bar", "id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs?foo=bar" for 127.0.0.1 at 2016-10-11 10:52:40 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "foo"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
Completed 500 Internal Server Error in 0.3ms
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs?foo=bar" for 127.0.0.1 at 2016-10-11 10:52:40 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "foo"=>"bar", "blog"=>{"title"=>"foo"}}
Completed 500 Internal Server Error in 0.1ms
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar&foo=bar" for 127.0.0.1 at 2016-10-11 10:52:40 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar", "foo"=>"bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 5.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 17:52:40 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 17:52:40 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1?foo=bar" for 127.0.0.1 at 2016-10-11 10:52:40 -0700
Processing by BlogsController#show as JSON
Parameters: {"foo"=>"bar", "id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid?foo=bar" for 127.0.0.1 at 2016-10-11 10:52:40 -0700
Processing by BlogsController#show as JSON
Parameters: {"foo"=>"bar", "id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.8ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 17:59:50 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 17:59:50 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
(0.8ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:00:08 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 18:00:08 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 18:00:08 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.5ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:00:08 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-11 11:00:08 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 18:00:08 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 18:00:08 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-11 11:00:09 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-11 11:00:09 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:01:22 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
Completed 500 Internal Server Error in 0.8ms
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:01:22 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
Completed 500 Internal Server Error in 0.5ms
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-11 11:01:22 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Completed 500 Internal Server Error in 0.6ms
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 18:01:22 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 18:01:22 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-11 11:01:22 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Completed 500 Internal Server Error in 0.6ms
(0.9ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-11 11:01:22 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Completed 500 Internal Server Error in 0.6ms
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:01:36 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 18:01:36 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 18:01:36 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.7ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:01:36 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-11 11:01:36 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 18:01:36 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 18:01:36 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-11 11:01:36 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-11 11:01:36 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:02:19 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 18:02:19 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 18:02:19 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:02:19 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 5.0ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-11 11:02:19 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 18:02:19 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 18:02:19 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-11 11:02:19 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-11 11:02:19 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:04:50 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 18:04:50 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 18:04:50 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:04:50 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-11 11:04:50 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 18:04:50 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 18:04:50 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-11 11:04:50 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-11 11:04:50 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 19:44:30 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 19:44:30 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
(0.5ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs?api_key=fake_key" for 127.0.0.1 at 2016-10-11 12:50:40 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "api_key"=>"fake_key", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 19:50:40 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 19:50:40 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.4ms (Views: 1.7ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs?api_key=fake_key" for 127.0.0.1 at 2016-10-11 12:50:40 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "api_key"=>"fake_key", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.7ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar&api_key=fake_key" for 127.0.0.1 at 2016-10-11 12:50:40 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar", "api_key"=>"fake_key"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.3ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 19:50:40 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 19:50:40 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1?api_key=fake_key" for 127.0.0.1 at 2016-10-11 12:50:40 -0700
Processing by BlogsController#show as JSON
Parameters: {"api_key"=>"fake_key", "id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid?api_key=fake_key" for 127.0.0.1 at 2016-10-11 12:50:40 -0700
Processing by BlogsController#show as JSON
Parameters: {"api_key"=>"fake_key", "id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:27:46 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "api_key"=>"fake_key", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Wed, 12 Oct 2016 01:27:46 UTC +00:00], ["title", "foo"], ["updated_at", Wed, 12 Oct 2016 01:27:46 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.0ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:27:46 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "api_key"=>"fake_key", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar&api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:27:46 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar", "api_key"=>"fake_key"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Wed, 12 Oct 2016 01:27:46 UTC +00:00], ["title", "foo"], ["updated_at", Wed, 12 Oct 2016 01:27:46 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:27:46 -0700
Processing by BlogsController#show as JSON
Parameters: {"api_key"=>"fake_key", "id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:27:46 -0700
Processing by BlogsController#show as JSON
Parameters: {"api_key"=>"fake_key", "id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:29:48 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "api_key"=>"fake_key", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Wed, 12 Oct 2016 01:29:48 UTC +00:00], ["title", "foo"], ["updated_at", Wed, 12 Oct 2016 01:29:48 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:29:48 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "api_key"=>"fake_key", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.7ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar&api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:29:48 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar", "api_key"=>"fake_key"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Wed, 12 Oct 2016 01:29:48 UTC +00:00], ["title", "foo"], ["updated_at", Wed, 12 Oct 2016 01:29:48 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:29:48 -0700
Processing by BlogsController#show as JSON
Parameters: {"api_key"=>"fake_key", "id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:29:48 -0700
Processing by BlogsController#show as JSON
Parameters: {"api_key"=>"fake_key", "id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:30:31 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "api_key"=>"fake_key", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Wed, 12 Oct 2016 01:30:31 UTC +00:00], ["title", "foo"], ["updated_at", Wed, 12 Oct 2016 01:30:31 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.3ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:30:31 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "api_key"=>"fake_key", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar&api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:30:31 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar", "api_key"=>"fake_key"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Wed, 12 Oct 2016 01:30:31 UTC +00:00], ["title", "foo"], ["updated_at", Wed, 12 Oct 2016 01:30:31 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:30:31 -0700
Processing by BlogsController#show as JSON
Parameters: {"api_key"=>"fake_key", "id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:30:31 -0700
Processing by BlogsController#show as JSON
Parameters: {"api_key"=>"fake_key", "id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:04:08 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:04:08 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:04:08 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.6ms (Views: 1.9ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:04:08 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.8ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:04:08 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:04:08 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:04:08 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:04:08 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:04:08 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:06:33 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:06:33 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:06:33 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 19.6ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:06:33 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.7ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:06:33 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:06:33 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:06:33 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:06:33 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:06:33 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:08:16 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:08:16 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:08:16 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.0ms (Views: 1.2ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:08:16 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:08:16 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:08:16 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:08:16 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:08:16 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:08:16 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:14:23 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:14:23 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:14:23 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 15.9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:14:23 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.3ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:14:23 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:14:23 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:14:23 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:14:23 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:14:23 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:24:46 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 6.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (3.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:24:46 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:24:46 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:24:46 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 1.4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:24:46 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:24:46 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:24:46 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:24:46 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:24:46 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 2.4ms (Views: 1.2ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:25:06 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 10.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:25:06 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:25:06 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:25:06 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 0.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:25:06 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:25:06 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:25:06 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:25:06 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:25:06 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 2.3ms (Views: 1.0ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:52:09 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:52:09 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:52:09 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.7ms (Views: 2.9ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:52:09 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:52:10 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:52:10 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:52:10 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:52:10 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 1.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:52:10 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.6ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:52:55 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (3.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:52:55 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:52:55 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.1ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(1.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:52:55 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.0ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:52:55 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:52:55 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:52:55 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:52:55 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 1.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:52:55 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:53:29 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 9.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:53:29 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:53:29 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:53:29 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 0.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:53:29 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:53:29 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.4ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:53:29 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:53:29 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:53:29 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 2.2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:55:09 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:55:09 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:55:09 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 15.2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:55:09 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:55:09 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:55:09 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:55:09 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:55:09 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:55:09 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:55:41 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:55:41 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:55:41 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.7ms (Views: 1.7ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:55:41 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:55:41 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:55:41 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:55:41 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:55:41 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 1.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:55:41 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:56:02 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:56:02 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:56:02 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.8ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:56:02 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.7ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:56:02 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.2ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:56:02 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:56:02 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:56:02 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:56:03 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:59:07 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:59:07 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:59:07 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.9ms (Views: 1.6ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:59:07 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:59:07 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:59:07 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:59:07 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:59:07 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:59:07 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:59:34 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 8.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:59:34 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:59:34 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:59:34 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:59:34 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:59:34 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:59:34 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:59:34 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:59:34 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 2.5ms (Views: 1.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 19:01:39 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 02:01:39 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 02:01:39 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.6ms (Views: 1.7ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 19:01:39 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 19:01:39 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 02:01:39 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 02:01:39 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 19:01:39 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 19:01:39 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 19:02:38 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 02:02:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 02:02:38 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.9ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 19:02:38 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 19:02:38 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.2ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 02:02:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 02:02:38 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 19:02:38 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 19:02:38 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.4ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 19:03:13 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 02:03:13 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 02:03:13 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 19:03:13 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 19:03:13 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 02:03:13 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 02:03:13 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 19:03:13 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 19:03:13 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.6ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:02:32 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 6.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:02:32 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:02:32 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:02:32 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:02:32 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:02:32 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:02:32 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:02:32 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:02:32 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 2.1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:02:39 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 6.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:02:39 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:02:39 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:02:39 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:02:39 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:02:39 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.8ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:02:39 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:02:39 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:02:39 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 2.3ms (Views: 1.0ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:03:24 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:03:24 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:03:24 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.7ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:03:24 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:03:24 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:03:24 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:03:24 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:03:24 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.7ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:03:24 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:04:33 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 6.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:04:33 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:04:33 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:04:33 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:04:33 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:04:33 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:04:33 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:04:33 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:04:33 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 2.9ms (Views: 1.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:04:43 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:04:43 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:04:43 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.5ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:04:43 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.2ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:04:43 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:04:43 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:04:43 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:04:43 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:04:43 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.6ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:06:05 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:06:05 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:06:05 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.7ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:06:05 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.1ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:06:05 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.1ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:06:05 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:06:05 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:06:05 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:06:05 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:07:03 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
SQL (3.8ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:07:03 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:07:03 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 21.2ms (Views: 2.7ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:07:03 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.7ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:07:03 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:07:03 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:07:03 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:07:03 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:07:03 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:07:12 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:07:12 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:07:12 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:07:12 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.5ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:07:12 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:07:12 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:07:12 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:07:12 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:07:12 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:08:05 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:08:05 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:08:05 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:08:05 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:08:05 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:08:05 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:08:05 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:08:05 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:08:05 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:13:32 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.6ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:13:32 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:13:32 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:13:32 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:13:32 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:13:32 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:13:32 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:13:32 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:13:32 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:18:14 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:18:14 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:18:14 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.3ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:18:31 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (4.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:18:31 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:18:31 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 15.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:23:00 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:23:00 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:23:00 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:23:19 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:23:19 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:23:19 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.9ms (Views: 2.4ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:26:56 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 6.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:26:56 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:26:56 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:26:56 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 0.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:26:56 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:26:56 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.2ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:26:56 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:26:56 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:26:56 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 2.2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:29:17 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:29:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:29:17 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.8ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:29:17 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.7ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:29:17 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:29:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:29:17 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:29:17 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:29:17 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:29:55 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 8.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:29:55 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:29:55 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:29:55 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 1.7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:29:55 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:29:55 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:29:55 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:29:55 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:29:55 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 2.6ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:30:14 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (5.7ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:30:14 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:30:14 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:30:14 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:30:14 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:30:14 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:30:14 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:30:14 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:30:14 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:32:56 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 7.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:32:56 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:32:56 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:32:56 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:32:56 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.1ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:32:56 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:32:56 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:32:56 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:32:56 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 2.1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:32:59 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:32:59 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:32:59 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.7ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:32:59 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:32:59 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:32:59 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:32:59 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:32:59 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:32:59 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:34:05 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (4.8ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:34:05 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:34:05 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 15.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:34:05 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:34:05 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:34:05 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:34:05 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:34:05 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:34:05 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:36:54 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:36:54 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:36:54 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.6ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:36:54 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.7ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:36:54 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:36:54 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:36:54 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:36:54 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:36:54 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:37:10 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:37:10 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:37:10 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.3ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:37:10 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:37:10 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:37:10 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:37:10 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:37:10 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:37:10 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:40:51 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:40:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:40:51 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 20.1ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:40:51 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:40:51 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:40:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:40:51 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:40:51 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:40:51 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:41:23 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:41:23 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:41:23 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:41:23 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 5.0ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:41:23 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:41:23 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:41:23 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:41:23 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 4.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:41:23 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.6ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:48:51 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:48:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:48:51 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.6ms (Views: 1.9ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:48:51 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.7ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:48:51 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:48:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:48:51 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:48:51 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:48:51 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:53:04 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:53:04 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:53:04 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.8ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:53:04 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 5.1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:53:04 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:53:04 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:53:04 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:53:04 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:53:04 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:58:03 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:58:03 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:58:03 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 15.9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:58:03 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:58:03 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:58:03 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:58:03 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:58:03 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:58:03 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:04:46 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (4.7ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:04:46 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:04:46 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:04:46 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:04:46 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:04:46 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:04:46 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:04:46 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:04:47 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:05:00 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:05:00 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:05:00 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.1ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:05:00 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:05:00 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.1ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:05:00 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:05:00 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:05:00 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:05:00 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:07:38 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:07:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:07:38 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.3ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:07:38 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:07:38 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.1ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:07:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:07:38 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:07:38 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:07:38 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.2ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:07:42 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (5.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:07:42 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:07:42 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 15.1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:07:42 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:07:42 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.2ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:07:42 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:07:42 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:07:42 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:07:42 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:11:52 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 9.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:11:52 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:11:52 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:11:52 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:11:52 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.1ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:11:52 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:11:52 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.2ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:11:52 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:11:52 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 3.4ms (Views: 1.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:12:07 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (3.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:12:07 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:12:07 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.8ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:12:07 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:12:07 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:12:07 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:12:07 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:12:07 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:12:07 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:12:17 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:12:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:12:17 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.0ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:12:17 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:12:17 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:12:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:12:17 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:12:17 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:12:17 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:14:18 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (5.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:14:18 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:14:18 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.6ms (Views: 1.6ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:14:18 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:14:18 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:14:18 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:14:18 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:14:18 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.2ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:14:18 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:15:32 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (3.8ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:15:32 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:15:32 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 15.5ms (Views: 1.6ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:15:32 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:15:32 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:15:32 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:15:32 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:15:32 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:15:32 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:16:38 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (3.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:16:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:16:38 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.1ms (Views: 1.6ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:16:39 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:16:39 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:16:39 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:16:39 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:16:39 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:16:39 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:23:45 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:23:45 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:23:45 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.0ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:23:45 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.1ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:23:45 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:23:45 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:23:45 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:23:45 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:23:45 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:39:36 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:39:36 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:39:36 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.8ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:39:36 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 5.2ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 13:39:36 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:39:36 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:39:36 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 13:39:36 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 13:39:36 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:40:17 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:40:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:40:17 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.0ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:40:17 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 13:40:17 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.1ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:40:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:40:17 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 13:40:17 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 13:40:17 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:40:37 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:40:37 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:40:37 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.5ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:40:37 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 13:40:37 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:40:37 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:40:37 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 13:40:37 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 13:40:37 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:42:43 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:42:43 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:42:43 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:42:43 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 13:42:43 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:42:43 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:42:43 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 13:42:43 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 13:42:43 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:46:01 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:46:01 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:46:01 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.5ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:46:01 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 13:46:01 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:46:01 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:46:01 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 13:46:01 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 13:46:01 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 14:44:20 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 21:44:20 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 21:44:20 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 14:44:20 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 14:44:20 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.2ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.6ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 21:44:20 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 21:44:20 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 14:44:20 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 14:44:20 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 14:45:24 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 21:45:24 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 21:45:24 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 14:45:24 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 14:45:24 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 21:45:24 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 21:45:24 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 14:45:24 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 14:45:24 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:00:53 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:00:53 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:00:53 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.3ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:00:53 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:00:53 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:00:53 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:00:53 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:00:53 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:00:53 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:02:19 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:02:19 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:02:19 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:02:19 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.7ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:02:19 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:02:19 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:02:19 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:02:19 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:02:19 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:03:01 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:03:01 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:03:01 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:03:01 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:03:01 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:03:01 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:03:01 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:03:01 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:03:01 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:03:27 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:03:27 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:03:27 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:03:27 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:03:27 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:03:27 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:03:27 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:03:27 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:03:27 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.3ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:05:40 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.8ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:05:40 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:05:40 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.1ms (Views: 1.6ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:05:40 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:05:40 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:05:40 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:05:40 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:05:40 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:05:40 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:06:10 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:06:10 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:06:10 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:06:10 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:06:10 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:06:10 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:06:10 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:06:10 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:06:10 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:14:44 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:14:44 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:14:44 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.8ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:14:44 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.1ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.7ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:14:44 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.3ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:14:44 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:14:44 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:14:44 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:14:44 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:37 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:37 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:37 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.8ms (Views: 1.8ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:37 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:37 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.6ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:37 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:37 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:37 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:37 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:38 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:38 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 15.2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:38 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:38 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.3ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:38 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:38 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:38 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:39 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:39 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:39 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:39 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.2ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:39 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:39 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:39 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:39 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:39 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:40 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:40 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:40 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.4ms (Views: 2.2ms | ActiveRecord: 0.0ms)
(1.2ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:40 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:40 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:40 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:40 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:40 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:40 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.6ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:41 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:41 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:41 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.7ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:42 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:42 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:42 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:42 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:42 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:42 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:43 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:43 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:43 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:43 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:43 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:43 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:43 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:43 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:43 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:44 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:44 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:44 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.0ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:44 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:44 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:44 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:44 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:44 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:44 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:45 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:45 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:45 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(1.2ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:45 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:45 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:45 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:45 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:45 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:45 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:46 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (4.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:46 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:46 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.3ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:46 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.0ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:46 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:46 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:46 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:46 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:46 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:47 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:47 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:47 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.3ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:47 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:47 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:47 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:47 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:47 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:47 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:48 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:48 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:48 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.1ms (Views: 1.7ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:48 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:48 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.3ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:48 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:48 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:48 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:48 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:49 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:49 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:49 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.5ms (Views: 1.7ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:49 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:49 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:49 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:49 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:49 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:49 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:50 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:50 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:50 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.5ms (Views: 2.2ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:50 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:50 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:50 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:50 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:50 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:50 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:51 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:51 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.7ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:51 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:51 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:51 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:51 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:51 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:52 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:52 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:52 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.4ms (Views: 2.4ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:52 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:52 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.3ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:52 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:52 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:52 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:52 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:53 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:53 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:53 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:53 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 6.1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:53 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:53 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:53 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:53 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:53 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:54 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:54 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:54 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.5ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:54 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:54 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:54 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:54 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:54 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:54 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:55 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:55 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:55 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.8ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:55 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 5.5ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:55 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:55 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:55 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:55 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:55 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:57 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
SQL (2.7ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:57 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:57 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:57 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:57 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.6ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:57 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:57 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:57 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:57 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:58 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:58 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:58 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.3ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:58 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:58 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:58 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:58 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:58 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:58 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:17 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:17 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.6ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:17 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.0ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:19:17 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:17 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:19:17 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:19:17 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:18 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:18 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:18 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:18 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.7ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:19:18 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:18 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:18 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:19:18 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:19:18 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:19 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:19 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:19 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.3ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:19 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:19:19 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:19 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:19 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:19:19 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:19:19 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:20 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (3.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:20 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:20 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:20 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:19:20 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:20 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:20 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:19:20 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:19:20 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:21 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:21 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:21 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.9ms (Views: 1.6ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:21 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:19:21 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:21 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:21 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:19:21 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:19:21 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:22 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:22 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:22 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:22 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.1ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.5ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:19:22 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.3ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:22 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:22 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:19:22 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:19:22 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:23 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:23 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:23 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.3ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:23 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.9ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:19:23 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:23 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:23 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:19:23 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:19:23 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:39 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:39 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:39 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.0ms (Views: 2.5ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:39 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.7ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:39 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:39 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:39 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:39 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:39 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.2ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:41 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:41 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:41 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:41 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 5.0ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:41 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:41 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:41 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:41 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:41 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:42 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:42 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:42 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:42 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:42 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:42 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:42 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:42 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:42 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:43 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:43 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:43 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.6ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:43 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 5.1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:43 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.6ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:43 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:43 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:43 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:43 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:44 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:44 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:44 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:44 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 5.0ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:44 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.6ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:44 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:44 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:44 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:44 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:45 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:45 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:45 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.7ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:45 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.7ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:45 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:45 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:45 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:45 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:45 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:46 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:46 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:46 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.0ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:46 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:46 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:46 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:46 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:46 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:46 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:47 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:47 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:47 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.8ms (Views: 2.4ms | ActiveRecord: 0.0ms)
(0.7ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:47 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:47 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.2ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:47 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:47 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:47 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:47 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:48 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:48 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:48 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:48 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:48 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.2ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:48 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:48 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:48 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:48 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:49 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:49 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:49 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.6ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:49 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:49 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.2ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:49 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:49 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:49 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:49 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:50 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:50 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:50 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.6ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:50 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:50 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:50 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:50 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:50 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:50 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.6ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:51 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:51 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:51 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:51 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:51 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:51 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:51 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:52 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
SQL (2.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:52 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:52 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.4ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:52 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:52 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:52 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:52 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:52 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:52 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:53 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:53 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:53 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.1ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:53 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:53 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:53 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:53 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:53 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:53 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.4ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:54 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:54 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:54 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:54 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:54 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:55 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:55 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:55 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:55 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:56 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:56 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:56 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.6ms (Views: 2.4ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:56 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:56 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:56 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:56 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:56 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:56 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:57 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:57 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:57 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 15.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:57 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:57 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:57 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:57 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:57 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:57 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:58 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:58 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:58 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.5ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:58 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.4ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:58 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:58 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:58 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:58 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:58 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:59 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:59 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:59 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 15.7ms (Views: 1.7ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:59 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:59 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:59 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:59 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:59 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:59 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:00 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
SQL (3.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:00 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:00 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 18.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:00 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.0ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:22:00 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.3ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:00 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:00 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:22:00 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:22:00 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:01 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:01 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:01 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.7ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:01 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:22:01 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:01 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:01 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:22:01 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:22:01 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.3ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:02 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:02 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:02 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.8ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:02 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:22:02 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:02 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:02 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:22:02 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:22:02 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:03 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.7ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:03 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:03 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.8ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:03 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:22:03 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.3ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:03 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:03 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:22:03 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:22:03 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:34 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.6ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:34 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:34 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.0ms (Views: 1.7ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:34 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:22:34 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:34 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:34 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:22:34 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:22:34 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.3ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:35 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:35 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:35 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.6ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:35 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:22:35 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:35 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:35 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:22:35 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:22:35 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:08 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:08 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:08 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.8ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:08 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:24:08 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:08 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:08 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:24:08 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:24:08 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:09 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:09 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:09 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.6ms (Views: 2.0ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:09 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.2ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:24:09 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:09 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:09 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:24:09 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:24:09 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:51 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (3.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:51 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.1ms (Views: 1.7ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:51 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:24:51 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:51 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:24:51 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 4.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:24:51 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:52 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:52 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:52 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.1ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:52 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:24:52 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:52 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:52 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:24:52 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:24:52 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:53 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:53 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:53 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.7ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:53 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.4ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:24:53 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:53 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:53 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:24:53 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:24:53 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.2ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:34 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:26:34 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:26:34 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.0ms (Views: 1.6ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:34 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:26:34 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:26:34 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:26:34 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:26:34 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:26:34 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:35 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:26:35 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:26:35 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:35 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:26:35 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:26:35 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:26:35 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:26:35 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:26:35 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:36 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:26:36 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:26:36 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.3ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:36 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.4ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:26:36 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 2.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:26:36 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:26:36 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:26:36 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:26:36 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:37 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:26:37 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:26:37 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.1ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:37 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:26:37 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.3ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:26:37 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:26:37 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:26:37 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:26:37 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:38 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:26:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:26:38 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:38 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:22 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:22 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:22 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.7ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:22 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:27:22 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.1ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:22 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:22 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:27:22 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:27:22 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:24 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:24 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:24 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.3ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:24 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:27:24 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:24 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:24 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:27:24 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:27:24 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:32 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.6ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:32 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:32 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.8ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:32 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:27:32 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:32 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:32 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:27:32 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:27:33 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:34 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:34 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:34 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.3ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:34 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:27:34 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:34 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:34 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:27:34 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 4.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:27:34 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:35 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:35 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:35 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:35 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.2ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:27:35 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:35 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:35 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:27:35 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:27:35 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:36 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:36 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:36 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.4ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:36 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:27:36 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:36 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:36 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:27:36 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:27:36 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.3ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:37 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.6ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:37 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:37 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:37 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.4ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:27:37 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:37 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:37 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:27:37 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:27:37 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:38 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:38 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 11.9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:38 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:27:38 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:38 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:27:38 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:27:38 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:31:16 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:31:16 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:31:16 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.7ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:31:16 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.4ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:31:16 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:31:16 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:31:16 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:31:16 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:31:16 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:31:17 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:31:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:31:17 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:31:17 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.2ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:31:17 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:31:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:31:17 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:31:17 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:31:17 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:31:18 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:31:18 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:31:18 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 15.6ms (Views: 1.8ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.1ms) rollback transaction
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:31:28 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:31:28 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:31:28 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:31:28 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:31:28 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:31:28 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:31:28 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:31:28 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:31:28 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:34:10 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:34:10 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:34:10 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.4ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(1.2ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:34:10 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.3ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:34:10 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:34:10 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:34:10 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:34:10 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:34:10 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:34:56 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.7ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:34:56 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:34:56 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.0ms (Views: 1.7ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:34:56 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:34:56 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:34:56 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:34:56 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:34:56 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:34:56 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:36:24 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:36:24 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:36:24 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.3ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:36:24 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:36:24 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:36:24 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:36:24 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:36:24 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:36:24 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:37:10 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
SQL (3.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:37:10 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:37:10 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.9ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(1.2ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:37:10 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:37:10 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:37:10 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:37:10 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:37:10 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:37:10 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:37:38 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
SQL (3.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:37:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:37:38 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 17.1ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:37:38 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:37:38 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:37:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:37:38 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:37:38 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:37:38 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
(0.3ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 21:19:01 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.3ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 21:19:01 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 21:19:01 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", 2016-10-08 04:19:01 UTC], ["updated_at", 2016-10-08 04:19:01 UTC]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 21:19:01 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.1ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 21:19:01 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.2ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]]
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.2ms)
(0.1ms) rollback transaction
(0.1ms) begin transaction
(0.2ms) rollback transaction
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 21:45:07 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.3ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 21:45:07 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 21:45:07 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", 2016-10-08 04:45:07 UTC], ["updated_at", 2016-10-08 04:45:07 UTC]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 21:45:07 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms)
(0.9ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 21:45:07 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]]
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.2ms) rollback transaction
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 22:58:39 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.3ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 22:58:39 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 22:58:39 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", 2016-10-08 05:58:39 UTC], ["updated_at", 2016-10-08 05:58:39 UTC]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 22:58:39 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.1ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 22:58:39 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]]
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.1ms) rollback transaction
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 22:59:41 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.3ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-07 22:59:41 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 22:59:41 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", 2016-10-08 05:59:41 UTC], ["updated_at", 2016-10-08 05:59:41 UTC]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 22:59:41 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.1ms)
(1.2ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 22:59:41 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]]
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.1ms) rollback transaction
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:01:50 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
Completed 500 Internal Server Error in 2ms
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:01:50 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
Completed 500 Internal Server Error in 0ms
(0.1ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-08 00:01:50 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Completed 500 Internal Server Error in 0ms
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", "2016-10-08 07:01:50.949961"], ["updated_at", "2016-10-08 07:01:50.949961"]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-08 00:01:50 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT 1 [["id", 1]]
Completed 500 Internal Server Error in 2ms
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-08 00:01:50 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT 1 [["id", 0]]
Completed 500 Internal Server Error in 0ms
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.1ms) rollback transaction
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:02:18 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
Completed 500 Internal Server Error in 2ms
(0.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:02:18 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
Completed 500 Internal Server Error in 0ms
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-08 00:02:18 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.1ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", "2016-10-08 07:02:18.321728"], ["updated_at", "2016-10-08 07:02:18.321728"]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-08 00:02:18 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT 1 [["id", 1]]
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-08 00:02:18 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT 1 [["id", 0]]
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.1ms) rollback transaction
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:03:28 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.1ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", "2016-10-08 07:03:28.606018"], ["updated_at", "2016-10-08 07:03:28.606018"]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16ms (Views: 1.0ms | ActiveRecord: 0.6ms)
(1.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:03:28 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.1ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 5ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-08 00:03:28 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", "2016-10-08 07:03:28.638087"], ["updated_at", "2016-10-08 07:03:28.638087"]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-08 00:03:28 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT 1 [["id", 1]]
Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-08 00:03:28 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT 1 [["id", 0]]
Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
(0.1ms) rollback transaction
(0.3ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:05:05 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", 2016-10-08 07:05:05 UTC], ["updated_at", 2016-10-08 07:05:05 UTC]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 11ms (Views: 2.2ms | ActiveRecord: 0.8ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:05:05 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.1ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 6ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-08 00:05:05 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", 2016-10-08 07:05:05 UTC], ["updated_at", 2016-10-08 07:05:05 UTC]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-08 00:05:05 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.1ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-08 00:05:05 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]]
Completed 404 Not Found in 2ms (Views: 0.5ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.2ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:06:48 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.1ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sat, 08 Oct 2016 07:06:48 UTC +00:00], ["title", "foo"], ["updated_at", Sat, 08 Oct 2016 07:06:48 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:06:48 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-08 00:06:48 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sat, 08 Oct 2016 07:06:48 UTC +00:00], ["title", "foo"], ["updated_at", Sat, 08 Oct 2016 07:06:48 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-08 00:06:48 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-08 00:06:48 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:09:14 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sat, 08 Oct 2016 07:09:14 UTC +00:00], ["title", "foo"], ["updated_at", Sat, 08 Oct 2016 07:09:14 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.6ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:09:14 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-08 00:09:14 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sat, 08 Oct 2016 07:09:14 UTC +00:00], ["title", "foo"], ["updated_at", Sat, 08 Oct 2016 07:09:14 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-08 00:09:14 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-08 00:09:15 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:09:55 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.7ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sat, 08 Oct 2016 07:09:55 UTC +00:00], ["title", "foo"], ["updated_at", Sat, 08 Oct 2016 07:09:55 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.8ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:09:55 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-08 00:09:55 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sat, 08 Oct 2016 07:09:55 UTC +00:00], ["title", "foo"], ["updated_at", Sat, 08 Oct 2016 07:09:55 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-08 00:09:55 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 4.6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-08 00:09:55 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 5.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 20:46:10 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (4.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sun, 09 Oct 2016 03:46:10 UTC +00:00], ["title", "foo"], ["updated_at", Sun, 09 Oct 2016 03:46:10 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 20.2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 20:46:10 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 5.7ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-08 20:46:10 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sun, 09 Oct 2016 03:46:10 UTC +00:00], ["title", "foo"], ["updated_at", Sun, 09 Oct 2016 03:46:10 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-08 20:46:10 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.2ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 5.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-08 20:46:10 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 20:47:50 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sun, 09 Oct 2016 03:47:50 UTC +00:00], ["title", "foo"], ["updated_at", Sun, 09 Oct 2016 03:47:50 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 15.7ms (Views: 1.8ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 20:47:50 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 20:49:00 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sun, 09 Oct 2016 03:49:00 UTC +00:00], ["title", "foo"], ["updated_at", Sun, 09 Oct 2016 03:49:00 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-08 20:49:00 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-08 20:49:00 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sun, 09 Oct 2016 03:49:00 UTC +00:00], ["title", "foo"], ["updated_at", Sun, 09 Oct 2016 03:49:00 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-08 20:49:00 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-08 20:49:00 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:15:48 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (3.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:15:48 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:15:48 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 15.9ms (Views: 1.6ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:15:48 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:15:48 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:15:48 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 09:15:48 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 09:15:48 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:16:01 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:16:01 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:16:01 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.7ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:16:01 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:16:01 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:16:01 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 09:16:01 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 09:16:01 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:16:06 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.7ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:16:06 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:16:06 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.4ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:16:06 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:16:06 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:16:06 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 09:16:06 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 5.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 09:16:06 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.6ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:17:57 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.1ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:17:57 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:17:57 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:17:57 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.8ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:17:57 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:17:57 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 09:17:57 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 09:17:57 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:19:45 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:19:45 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:19:45 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:19:45 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 09:19:45 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:19:45 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:19:45 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 09:19:45 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 09:19:45 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:59:12 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.1ms) SAVEPOINT active_record_1
SQL (3.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:59:12 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:59:12 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.3ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.2ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:59:12 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 09:59:12 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.6ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.7ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:59:12 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:59:12 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 09:59:12 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 09:59:12 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 13:19:27 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.1ms) SAVEPOINT active_record_1
SQL (11.6ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 20:19:27 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 20:19:27 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 61.7ms (Views: 6.2ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 13:19:28 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
(0.1ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 15.9ms (Views: 0.4ms | ActiveRecord: 0.2ms)
(0.1ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 13:19:28 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.3ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 8.2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.1ms) begin transaction
(0.1ms) SAVEPOINT active_record_1
SQL (1.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 20:19:28 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 20:19:28 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 13:19:28 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.3ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 15.3ms (Views: 0.6ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.2ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 13:19:28 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.6ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 4.5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.1ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 13:27:34 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.1ms) SAVEPOINT active_record_1
SQL (10.8ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 20:27:34 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 20:27:34 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 55.7ms (Views: 5.6ms | ActiveRecord: 0.0ms)
(1.3ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 13:27:34 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
(0.1ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 15.1ms (Views: 0.4ms | ActiveRecord: 0.3ms)
(0.1ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 13:27:34 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.3ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 5.8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.1ms) begin transaction
(0.1ms) SAVEPOINT active_record_1
SQL (0.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 20:27:34 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 20:27:34 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 13:27:34 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.3ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 11.1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
(1.3ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 13:27:34 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.4ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 3.7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.2ms) rollback transaction
(0.1ms) begin transaction
Connecting to database specified by database.yml
(0.3ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 13:28:59 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.1ms) SAVEPOINT active_record_1
SQL (10.6ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 20:28:59 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 20:28:59 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 59.4ms (Views: 5.8ms | ActiveRecord: 0.0ms)
(1.4ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 13:28:59 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
(0.1ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 13.8ms (Views: 0.5ms | ActiveRecord: 0.2ms)
(0.1ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 13:28:59 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.3ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 5.6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.2ms) begin transaction
(0.1ms) SAVEPOINT active_record_1
SQL (0.8ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 20:28:59 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 20:28:59 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 13:28:59 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.3ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 10.7ms (Views: 0.4ms | ActiveRecord: 0.0ms)
(1.4ms) rollback transaction
(0.2ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 13:28:59 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.3ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 3.5ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.1ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 14:31:46 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (3.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 21:31:46 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 21:31:46 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 15.9ms (Views: 1.6ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 14:31:46 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.1ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.4ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 14:31:46 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 21:31:46 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 21:31:46 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 14:31:46 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.3ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 14:31:46 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) rollback transaction
Connecting to database specified by database.yml
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 15:12:29 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.1ms) SAVEPOINT active_record_1
SQL (10.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 22:12:29 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 22:12:29 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 60.1ms (Views: 5.5ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.2ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 15:12:29 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
(0.1ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 17.1ms (Views: 0.6ms | ActiveRecord: 0.2ms)
(0.1ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 15:12:29 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.3ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 6.6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.1ms) begin transaction
(0.1ms) SAVEPOINT active_record_1
SQL (0.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 22:12:29 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 22:12:29 UTC +00:00]]
(0.1ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 15:12:29 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.2ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 11.7ms (Views: 0.4ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 15:12:29 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.3ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 2.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 15:13:22 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.1ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 22:13:22 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 22:13:22 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.8ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.9ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 15:13:22 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 15:13:22 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 22:13:22 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 22:13:22 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 15:13:22 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 15:13:22 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 15:17:12 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 22:17:12 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 22:17:12 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.6ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 15:17:12 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 15:17:12 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 22:17:12 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 22:17:12 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 15:17:12 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 15:17:12 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 15:40:23 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 22:40:23 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 22:40:23 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 15:40:23 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 15:40:23 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 22:40:23 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 22:40:23 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 15:40:23 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 15:40:23 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 16:42:44 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 23:42:44 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 23:42:44 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.5ms (Views: 1.7ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 16:42:44 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 16:42:44 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 23:42:44 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 23:42:44 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 16:42:44 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 16:42:44 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 17:37:15 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (3.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 00:37:15 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 00:37:15 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.1ms (Views: 1.7ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 17:37:15 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.6ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 17:37:15 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 00:37:15 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 00:37:15 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 17:37:15 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 17:37:15 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 17:37:52 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.1ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 00:37:52 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 00:37:52 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 17:37:52 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 17:37:52 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 00:37:52 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 00:37:52 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 17:37:52 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 17:37:52 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 17:39:41 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 00:39:41 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 00:39:41 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.8ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 17:39:41 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 17:39:41 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 00:39:41 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 00:39:41 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 17:39:41 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 17:39:41 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 17:43:31 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.1ms) SAVEPOINT active_record_1
SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 00:43:31 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 00:43:31 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.0ms (Views: 1.5ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 17:43:31 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 17:43:31 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 00:43:31 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 00:43:31 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 17:43:31 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.7ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 17:43:31 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.1ms) begin transaction
Connecting to database specified by database.yml
(0.2ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 18:02:04 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.6ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 01:02:04 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 01:02:04 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.6ms (Views: 1.4ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-10 18:02:05 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.7ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 18:02:05 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 01:02:05 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 01:02:05 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 18:02:05 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 18:02:05 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (4.8ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 17:51:13 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 17:51:13 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
(0.3ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs?foo=bar" for 127.0.0.1 at 2016-10-11 10:51:59 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "foo"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 17:51:59 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 17:51:59 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 16.2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs?foo=bar" for 127.0.0.1 at 2016-10-11 10:51:59 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "foo"=>"bar", "blog"=>{"title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 6.6ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar&foo=bar" for 127.0.0.1 at 2016-10-11 10:51:59 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar", "foo"=>"bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 17:51:59 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 17:51:59 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1?foo=bar" for 127.0.0.1 at 2016-10-11 10:51:59 -0700
Processing by BlogsController#show as JSON
Parameters: {"foo"=>"bar", "id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid?foo=bar" for 127.0.0.1 at 2016-10-11 10:51:59 -0700
Processing by BlogsController#show as JSON
Parameters: {"foo"=>"bar", "id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs?foo=bar" for 127.0.0.1 at 2016-10-11 10:52:27 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "foo"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
Completed 500 Internal Server Error in 0.4ms
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs?foo=bar" for 127.0.0.1 at 2016-10-11 10:52:27 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "foo"=>"bar", "blog"=>{"title"=>"foo"}}
Completed 500 Internal Server Error in 0.1ms
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar&foo=bar" for 127.0.0.1 at 2016-10-11 10:52:27 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar", "foo"=>"bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 5.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 17:52:27 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 17:52:27 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1?foo=bar" for 127.0.0.1 at 2016-10-11 10:52:27 -0700
Processing by BlogsController#show as JSON
Parameters: {"foo"=>"bar", "id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid?foo=bar" for 127.0.0.1 at 2016-10-11 10:52:27 -0700
Processing by BlogsController#show as JSON
Parameters: {"foo"=>"bar", "id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs?foo=bar" for 127.0.0.1 at 2016-10-11 10:52:40 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "foo"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
Completed 500 Internal Server Error in 0.3ms
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs?foo=bar" for 127.0.0.1 at 2016-10-11 10:52:40 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "foo"=>"bar", "blog"=>{"title"=>"foo"}}
Completed 500 Internal Server Error in 0.1ms
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar&foo=bar" for 127.0.0.1 at 2016-10-11 10:52:40 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar", "foo"=>"bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 5.1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 17:52:40 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 17:52:40 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1?foo=bar" for 127.0.0.1 at 2016-10-11 10:52:40 -0700
Processing by BlogsController#show as JSON
Parameters: {"foo"=>"bar", "id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid?foo=bar" for 127.0.0.1 at 2016-10-11 10:52:40 -0700
Processing by BlogsController#show as JSON
Parameters: {"foo"=>"bar", "id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.8ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 17:59:50 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 17:59:50 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
(0.8ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:00:08 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 18:00:08 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 18:00:08 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.5ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:00:08 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-11 11:00:08 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 18:00:08 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 18:00:08 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-11 11:00:09 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-11 11:00:09 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:01:22 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
Completed 500 Internal Server Error in 0.8ms
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:01:22 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
Completed 500 Internal Server Error in 0.5ms
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-11 11:01:22 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Completed 500 Internal Server Error in 0.6ms
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 18:01:22 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 18:01:22 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-11 11:01:22 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Completed 500 Internal Server Error in 0.6ms
(0.9ms) rollback transaction
(0.1ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-11 11:01:22 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Completed 500 Internal Server Error in 0.6ms
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:01:36 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 18:01:36 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 18:01:36 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.7ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:01:36 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-11 11:01:36 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 18:01:36 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 18:01:36 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-11 11:01:36 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-11 11:01:36 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:02:19 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 18:02:19 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 18:02:19 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:02:19 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.1ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 5.0ms (Views: 0.2ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-11 11:02:19 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 18:02:19 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 18:02:19 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-11 11:02:19 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-11 11:02:19 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:04:50 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 18:04:50 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 18:04:50 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:04:50 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-11 11:04:50 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 18:04:50 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 18:04:50 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1" for 127.0.0.1 at 2016-10-11 11:04:50 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-11 11:04:50 -0700
Processing by BlogsController#show as JSON
Parameters: {"id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 19:44:30 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 19:44:30 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
(0.5ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs?api_key=fake_key" for 127.0.0.1 at 2016-10-11 12:50:40 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "api_key"=>"fake_key", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 19:50:40 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 19:50:40 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 14.4ms (Views: 1.7ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs?api_key=fake_key" for 127.0.0.1 at 2016-10-11 12:50:40 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "api_key"=>"fake_key", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.7ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar&api_key=fake_key" for 127.0.0.1 at 2016-10-11 12:50:40 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar", "api_key"=>"fake_key"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.3ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 19:50:40 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 19:50:40 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1?api_key=fake_key" for 127.0.0.1 at 2016-10-11 12:50:40 -0700
Processing by BlogsController#show as JSON
Parameters: {"api_key"=>"fake_key", "id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.5ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid?api_key=fake_key" for 127.0.0.1 at 2016-10-11 12:50:40 -0700
Processing by BlogsController#show as JSON
Parameters: {"api_key"=>"fake_key", "id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:27:46 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "api_key"=>"fake_key", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Wed, 12 Oct 2016 01:27:46 UTC +00:00], ["title", "foo"], ["updated_at", Wed, 12 Oct 2016 01:27:46 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.0ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:27:46 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "api_key"=>"fake_key", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 4.3ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar&api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:27:46 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar", "api_key"=>"fake_key"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Wed, 12 Oct 2016 01:27:46 UTC +00:00], ["title", "foo"], ["updated_at", Wed, 12 Oct 2016 01:27:46 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:27:46 -0700
Processing by BlogsController#show as JSON
Parameters: {"api_key"=>"fake_key", "id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:27:46 -0700
Processing by BlogsController#show as JSON
Parameters: {"api_key"=>"fake_key", "id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.0ms) begin transaction
Started POST "/blogs?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:29:48 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "api_key"=>"fake_key", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Wed, 12 Oct 2016 01:29:48 UTC +00:00], ["title", "foo"], ["updated_at", Wed, 12 Oct 2016 01:29:48 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 13.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.0ms) rollback transaction
(0.0ms) begin transaction
Started POST "/blogs?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:29:48 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "api_key"=>"fake_key", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.7ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar&api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:29:48 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar", "api_key"=>"fake_key"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Wed, 12 Oct 2016 01:29:48 UTC +00:00], ["title", "foo"], ["updated_at", Wed, 12 Oct 2016 01:29:48 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:29:48 -0700
Processing by BlogsController#show as JSON
Parameters: {"api_key"=>"fake_key", "id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms)
(0.4ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:29:48 -0700
Processing by BlogsController#show as JSON
Parameters: {"api_key"=>"fake_key", "id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.1ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction
Connecting to database specified by database.yml
(0.1ms) begin transaction
Started POST "/blogs?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:30:31 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "content"=>"bar", "api_key"=>"fake_key", "blog"=>{"title"=>"foo", "content"=>"bar"}}
(0.0ms) SAVEPOINT active_record_1
SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Wed, 12 Oct 2016 01:30:31 UTC +00:00], ["title", "foo"], ["updated_at", Wed, 12 Oct 2016 01:30:31 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Completed 201 Created in 12.3ms (Views: 1.3ms | ActiveRecord: 0.0ms)
(1.1ms) rollback transaction
(0.1ms) begin transaction
Started POST "/blogs?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:30:31 -0700
Processing by BlogsController#create as JSON
Parameters: {"title"=>"foo", "api_key"=>"fake_key", "blog"=>{"title"=>"foo"}}
(0.0ms) SAVEPOINT active_record_1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.1ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs?keywords=foo+bar&api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:30:31 -0700
Processing by BlogsController#index as JSON
Parameters: {"keywords"=>"foo bar", "api_key"=>"fake_key"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"
Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
(0.0ms) SAVEPOINT active_record_1
SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Wed, 12 Oct 2016 01:30:31 UTC +00:00], ["title", "foo"], ["updated_at", Wed, 12 Oct 2016 01:30:31 UTC +00:00]]
(0.0ms) RELEASE SAVEPOINT active_record_1
Started GET "/blogs/1?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:30:31 -0700
Processing by BlogsController#show as JSON
Parameters: {"api_key"=>"fake_key", "id"=>"1"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1
Completed 200 OK in 3.6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
(0.3ms) rollback transaction
(0.0ms) begin transaction
Started GET "/blogs/invalid?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:30:31 -0700
Processing by BlogsController#show as JSON
Parameters: {"api_key"=>"fake_key", "id"=>"invalid"}
Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1
Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms)
(0.0ms) rollback transaction
(0.0ms) begin transaction
Connecting to database specified by database.yml
(0.1ms) rollback transaction