remote_partial 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (98) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +63 -0
  3. data/Rakefile +40 -0
  4. data/app/helpers/remote_partial/application_helper.rb +4 -0
  5. data/app/helpers/remote_partial/host_app_helper.rb +11 -0
  6. data/app/models/remote_partial/builder.rb +30 -0
  7. data/app/models/remote_partial/exceptions.rb +24 -0
  8. data/app/models/remote_partial/partial.rb +57 -0
  9. data/app/models/remote_partial/resource_manager.rb +66 -0
  10. data/config/routes.rb +2 -0
  11. data/db/migrate/20130702072157_create_remote_partial_partials.rb +12 -0
  12. data/lib/remote_partial/engine.rb +11 -0
  13. data/lib/remote_partial/version.rb +3 -0
  14. data/lib/remote_partial.rb +23 -0
  15. data/lib/tasks/remote_partial_tasks.rake +10 -0
  16. data/test/dummy/README.rdoc +261 -0
  17. data/test/dummy/Rakefile +7 -0
  18. data/test/dummy/app/assets/javascripts/application.js +15 -0
  19. data/test/dummy/app/assets/javascripts/demos.js +2 -0
  20. data/test/dummy/app/assets/javascripts/samples.js +2 -0
  21. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  22. data/test/dummy/app/assets/stylesheets/demos.css +4 -0
  23. data/test/dummy/app/assets/stylesheets/samples.css +4 -0
  24. data/test/dummy/app/controllers/application_controller.rb +3 -0
  25. data/test/dummy/app/controllers/demos_controller.rb +18 -0
  26. data/test/dummy/app/helpers/application_helper.rb +2 -0
  27. data/test/dummy/app/helpers/demos_helper.rb +2 -0
  28. data/test/dummy/app/helpers/samples_helper.rb +2 -0
  29. data/test/dummy/app/views/demos/_clock.html.erb +6 -0
  30. data/test/dummy/app/views/demos/_fixed.html.erb +3 -0
  31. data/test/dummy/app/views/demos/_ruby.html.erb +4 -0
  32. data/test/dummy/app/views/demos/index.html.erb +7 -0
  33. data/test/dummy/app/views/demos/show.html.erb +3 -0
  34. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  35. data/test/dummy/app/views/remote_partials/_clock.html.erb +1 -0
  36. data/test/dummy/app/views/remote_partials/_fixed.html.erb +2 -0
  37. data/test/dummy/app/views/remote_partials/_ruby.html.erb +11 -0
  38. data/test/dummy/app/views/remote_partials/_wcc.html.erb +810 -0
  39. data/test/dummy/config/application.rb +59 -0
  40. data/test/dummy/config/boot.rb +10 -0
  41. data/test/dummy/config/database.yml +25 -0
  42. data/test/dummy/config/environment.rb +5 -0
  43. data/test/dummy/config/environments/development.rb +37 -0
  44. data/test/dummy/config/environments/production.rb +67 -0
  45. data/test/dummy/config/environments/test.rb +37 -0
  46. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  47. data/test/dummy/config/initializers/inflections.rb +15 -0
  48. data/test/dummy/config/initializers/mime_types.rb +5 -0
  49. data/test/dummy/config/initializers/remote_partial.rb +16 -0
  50. data/test/dummy/config/initializers/secret_token.rb +7 -0
  51. data/test/dummy/config/initializers/session_store.rb +8 -0
  52. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  53. data/test/dummy/config/locales/en.yml +5 -0
  54. data/test/dummy/config/routes.rb +8 -0
  55. data/test/dummy/config.ru +4 -0
  56. data/test/dummy/db/development.sqlite3 +0 -0
  57. data/test/dummy/db/migrate/20130703141929_create_remote_partial_partials.remote_partial.rb +13 -0
  58. data/test/dummy/db/schema.rb +26 -0
  59. data/test/dummy/db/test.sqlite3 +0 -0
  60. data/test/dummy/log/development.log +4200 -0
  61. data/test/dummy/log/test.log +1397 -0
  62. data/test/dummy/public/404.html +26 -0
  63. data/test/dummy/public/422.html +26 -0
  64. data/test/dummy/public/500.html +25 -0
  65. data/test/dummy/public/favicon.ico +0 -0
  66. data/test/dummy/script/rails +6 -0
  67. data/test/dummy/test/functional/demos_controller_test.rb +20 -0
  68. data/test/dummy/test/unit/helpers/demos_helper_test.rb +13 -0
  69. data/test/dummy/test/unit/helpers/samples_helper_test.rb +4 -0
  70. data/test/dummy/tmp/cache/assets/BE9/0F0/sprockets%2Fb918d6cc641337193b96751002451244 +0 -0
  71. data/test/dummy/tmp/cache/assets/C2E/4E0/sprockets%2F5b29288e435665a224409e7d76530c95 +0 -0
  72. data/test/dummy/tmp/cache/assets/CB3/DC0/sprockets%2F157201713d2fd4954447e0bf4d8e853e +0 -0
  73. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  74. data/test/dummy/tmp/cache/assets/CE3/080/sprockets%2F7d4d7689d6fa8236f0b4848c03ba1215 +0 -0
  75. data/test/dummy/tmp/cache/assets/CE5/D30/sprockets%2F8c9834a63b25a66203918a75ff56e2ac +0 -0
  76. data/test/dummy/tmp/cache/assets/D16/E10/sprockets%2Fd5d9c442561ec08a55d5d843a0d9792d +0 -0
  77. data/test/dummy/tmp/cache/assets/D20/020/sprockets%2F488c2c97fede45c86a62f1aa14554957 +0 -0
  78. data/test/dummy/tmp/cache/assets/D2E/690/sprockets%2F840591ad233bc7bda28b7f6a2b27c205 +0 -0
  79. data/test/dummy/tmp/cache/assets/D30/990/sprockets%2F995cc20d042afc03241f58f7d6ca1f02 +0 -0
  80. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  81. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  82. data/test/dummy/tmp/cache/assets/D52/430/sprockets%2F6ada07f0c9869f9f35b05fa0988dc717 +0 -0
  83. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  84. data/test/dummy/tmp/cache/assets/DBB/BE0/sprockets%2Fc6eb578d23a69b5abb056e3abaa5c060 +0 -0
  85. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  86. data/test/dummy/tmp/cache/assets/E02/FA0/sprockets%2Fca8d5771d03e669be1d96acb6beb6cb6 +0 -0
  87. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  88. data/test/dummy/tmp/pids/server.pid +1 -0
  89. data/test/fixtures/remote_partial/partials.yml +10 -0
  90. data/test/integration/navigation_test.rb +10 -0
  91. data/test/remote_partial_test.rb +7 -0
  92. data/test/test_helper.rb +80 -0
  93. data/test/unit/remote_partial/builder_test.rb +113 -0
  94. data/test/unit/remote_partial/exception_test.rb +21 -0
  95. data/test/unit/remote_partial/partial_test.rb +66 -0
  96. data/test/unit/remote_partial/resource_manager_test.rb +76 -0
  97. data/test/unit/remote_partial_test.rb +26 -0
  98. metadata +291 -0
@@ -0,0 +1,1397 @@
1
+ Connecting to database specified by database.yml
2
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
3
+  (0.1ms) begin transaction
4
+ SQL (34.4ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:01:57 UTC +00:00], ["criteria", "#ct"], ["name", "clock"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:01:57 UTC +00:00], ["url", "http://www.timeanddate.com/worldclock/city.html?n=136"]]
5
+  (151.8ms) commit transaction
6
+ RemotePartial::Partial Load (0.4ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'ruby' LIMIT 1
7
+  (0.1ms) begin transaction
8
+ SQL (0.7ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:01:58 UTC +00:00], ["criteria", "#intro"], ["name", "ruby"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:01:58 UTC +00:00], ["url", "http://www.ruby-lang.org/en/"]]
9
+  (168.5ms) commit transaction
10
+  (0.3ms) begin transaction
11
+ Fixture Delete (1.9ms) DELETE FROM "remote_partial_partials"
12
+ Fixture Insert (1.0ms) INSERT INTO "remote_partial_partials" ("id", "name", "url", "criteria", "repeat_period", "created_at", "updated_at") VALUES (1, 'simple', 'http://www.warwickshire.gov.uk', 'p:first-child', 600, '2013-07-04 14:02:00', '2013-07-04 14:02:00')
13
+  (221.3ms) commit transaction
14
+  (0.1ms) begin transaction
15
+ Processing by DemosController#index as HTML
16
+ Rendered demos/index.html.erb within layouts/application (4.1ms)
17
+ Completed 200 OK in 84ms (Views: 83.7ms | ActiveRecord: 0.0ms)
18
+  (0.1ms) rollback transaction
19
+  (0.1ms) begin transaction
20
+ Processing by DemosController#show as HTML
21
+ Parameters: {"id"=>"fixed"}
22
+ Rendered remote_partials/_fixed.html.erb (1.9ms)
23
+ Rendered demos/_fixed.html.erb (6.3ms)
24
+ Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.0ms)
25
+  (0.1ms) rollback transaction
26
+  (0.1ms) begin transaction
27
+  (0.1ms) rollback transaction
28
+  (0.1ms) begin transaction
29
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
30
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
31
+ RemotePartial::Partial Load (0.6ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
32
+  (0.1ms) SAVEPOINT active_record_1
33
+ SQL (2.4ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:02:00 UTC +00:00], ["criteria", nil], ["name", "foo"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:02:00 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
34
+  (0.0ms) RELEASE SAVEPOINT active_record_1
35
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
36
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
37
+  (0.6ms) rollback transaction
38
+  (0.1ms) begin transaction
39
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
40
+  (0.1ms) SAVEPOINT active_record_1
41
+  (3.6ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:12:00.708310', "updated_at" = '2013-07-04 14:02:00.709227' WHERE "remote_partial_partials"."id" = 1
42
+  (0.1ms) RELEASE SAVEPOINT active_record_1
43
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
44
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'simple' LIMIT 1
45
+  (0.1ms) SAVEPOINT active_record_1
46
+  (0.3ms) UPDATE "remote_partial_partials" SET "criteria" = NULL, "repeat_period" = 43200.0, "updated_at" = '2013-07-04 14:02:00.716802' WHERE "remote_partial_partials"."id" = 1
47
+  (0.0ms) RELEASE SAVEPOINT active_record_1
48
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
49
+  (0.6ms) rollback transaction
50
+  (0.1ms) begin transaction
51
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
52
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
53
+ RemotePartial::Partial Load (3.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'simple' LIMIT 1
54
+  (0.1ms) SAVEPOINT active_record_1
55
+  (0.3ms) UPDATE "remote_partial_partials" SET "criteria" = NULL, "repeat_period" = 43200.0, "updated_at" = '2013-07-04 14:02:00.734650' WHERE "remote_partial_partials"."id" = 1
56
+  (0.0ms) RELEASE SAVEPOINT active_record_1
57
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
58
+  (0.6ms) rollback transaction
59
+  (0.1ms) begin transaction
60
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
61
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
62
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'simple' LIMIT 1
63
+  (0.1ms) SAVEPOINT active_record_1
64
+  (4.7ms) UPDATE "remote_partial_partials" SET "criteria" = NULL, "repeat_period" = 43200.0, "updated_at" = '2013-07-04 14:02:00.756359' WHERE "remote_partial_partials"."id" = 1
65
+  (0.1ms) RELEASE SAVEPOINT active_record_1
66
+ Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
67
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
68
+  (0.5ms) rollback transaction
69
+  (0.1ms) begin transaction
70
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
71
+  (0.8ms) SELECT COUNT(*) FROM "remote_partial_partials" 
72
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
73
+  (0.1ms) SAVEPOINT active_record_1
74
+ SQL (2.4ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:02:00 UTC +00:00], ["criteria", nil], ["name", "foo"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:02:00 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
75
+  (0.1ms) RELEASE SAVEPOINT active_record_1
76
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
77
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
78
+  (0.5ms) rollback transaction
79
+  (0.1ms) begin transaction
80
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
81
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
82
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
83
+  (0.1ms) SAVEPOINT active_record_1
84
+ SQL (4.0ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:02:00 UTC +00:00], ["criteria", nil], ["name", "foo"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:02:00 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
85
+  (0.1ms) RELEASE SAVEPOINT active_record_1
86
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
87
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
88
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
89
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
90
+  (0.0ms) SAVEPOINT active_record_1
91
+  (0.3ms) UPDATE "remote_partial_partials" SET "url" = 'other', "updated_at" = '2013-07-04 14:02:00.811009' WHERE "remote_partial_partials"."id" = 171
92
+  (0.1ms) RELEASE SAVEPOINT active_record_1
93
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
94
+ RemotePartial::Partial Load (1.0ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
95
+  (1.0ms) rollback transaction
96
+  (0.1ms) begin transaction
97
+  (0.1ms) rollback transaction
98
+  (0.1ms) begin transaction
99
+ RemotePartial::Partial Load (0.5ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
100
+  (0.1ms) rollback transaction
101
+  (0.1ms) begin transaction
102
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
103
+  (0.1ms) SAVEPOINT active_record_1
104
+  (6.4ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:12:00.835934', "updated_at" = '2013-07-04 14:02:00.836783' WHERE "remote_partial_partials"."id" = 1
105
+  (0.1ms) RELEASE SAVEPOINT active_record_1
106
+  (0.0ms) SAVEPOINT active_record_1
107
+  (0.0ms) RELEASE SAVEPOINT active_record_1
108
+  (0.2ms) rollback transaction
109
+  (0.1ms) begin transaction
110
+ RemotePartial::Partial Load (0.0ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
111
+  (3.7ms) SAVEPOINT active_record_1
112
+  (0.4ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:12:00.853396', "updated_at" = '2013-07-04 14:02:00.858221' WHERE "remote_partial_partials"."id" = 1
113
+  (0.0ms) RELEASE SAVEPOINT active_record_1
114
+  (0.1ms) rollback transaction
115
+  (0.1ms) begin transaction
116
+ RemotePartial::Partial Load (0.9ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
117
+  (0.1ms) rollback transaction
118
+  (0.1ms) begin transaction
119
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
120
+  (0.1ms) SAVEPOINT active_record_1
121
+  (0.4ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:12:00.886326', "updated_at" = '2013-07-04 14:02:00.886964' WHERE "remote_partial_partials"."id" = 1
122
+  (0.1ms) RELEASE SAVEPOINT active_record_1
123
+  (0.6ms) rollback transaction
124
+  (0.1ms) begin transaction
125
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
126
+  (0.1ms) SAVEPOINT active_record_1
127
+  (2.7ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:12:00.901160', "updated_at" = '2013-07-04 14:02:00.902005' WHERE "remote_partial_partials"."id" = 1
128
+  (0.1ms) RELEASE SAVEPOINT active_record_1
129
+  (0.9ms) rollback transaction
130
+  (0.1ms) begin transaction
131
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
132
+  (0.1ms) rollback transaction
133
+  (0.1ms) begin transaction
134
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
135
+  (0.1ms) SAVEPOINT active_record_1
136
+  (2.9ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:12:00.928560', "updated_at" = '2013-07-04 14:02:00.929541' WHERE "remote_partial_partials"."id" = 1
137
+  (0.1ms) RELEASE SAVEPOINT active_record_1
138
+  (0.5ms) rollback transaction
139
+  (0.1ms) begin transaction
140
+  (0.1ms) rollback transaction
141
+  (0.1ms) begin transaction
142
+  (0.1ms) rollback transaction
143
+  (0.1ms) begin transaction
144
+  (0.1ms) rollback transaction
145
+  (0.1ms) begin transaction
146
+  (0.1ms) rollback transaction
147
+  (0.1ms) begin transaction
148
+  (0.1ms) rollback transaction
149
+  (0.1ms) begin transaction
150
+  (0.1ms) rollback transaction
151
+  (0.1ms) begin transaction
152
+  (0.1ms) rollback transaction
153
+  (0.1ms) begin transaction
154
+  (0.1ms) rollback transaction
155
+  (0.1ms) begin transaction
156
+  (0.1ms) rollback transaction
157
+  (0.1ms) begin transaction
158
+  (0.2ms) SELECT COUNT(*) FROM "remote_partial_partials"
159
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'wcc' LIMIT 1
160
+  (0.1ms) SAVEPOINT active_record_1
161
+ SQL (4.3ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:02:01 UTC +00:00], ["criteria", nil], ["name", "wcc"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:02:01 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
162
+  (0.1ms) RELEASE SAVEPOINT active_record_1
163
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
164
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
165
+  (0.9ms) rollback transaction
166
+  (0.1ms) begin transaction
167
+  (0.0ms) rollback transaction
168
+  (0.1ms) begin transaction
169
+  (0.0ms) rollback transaction
170
+  (0.0ms) begin transaction
171
+  (0.1ms) rollback transaction
172
+  (0.1ms) begin transaction
173
+ Processing by SamplesController#index as HTML
174
+ Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms)
175
+  (0.1ms) rollback transaction
176
+  (0.1ms) begin transaction
177
+ Processing by SamplesController#show as HTML
178
+ Parameters: {"id"=>"one"}
179
+ Rendered samples/_one.html.erb (0.4ms)
180
+ Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.0ms)
181
+  (0.1ms) rollback transaction
182
+ Connecting to database specified by database.yml
183
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
184
+  (0.1ms) begin transaction
185
+ SQL (28.2ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:04:50 UTC +00:00], ["criteria", "#ct"], ["name", "clock"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:04:50 UTC +00:00], ["url", "http://www.timeanddate.com/worldclock/city.html?n=136"]]
186
+  (164.3ms) commit transaction
187
+ RemotePartial::Partial Load (0.5ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'ruby' LIMIT 1
188
+  (0.1ms) begin transaction
189
+ SQL (7.1ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:04:51 UTC +00:00], ["criteria", "#intro"], ["name", "ruby"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:04:51 UTC +00:00], ["url", "http://www.ruby-lang.org/en/"]]
190
+  (199.8ms) commit transaction
191
+  (0.3ms) begin transaction
192
+ Fixture Delete (1.6ms) DELETE FROM "remote_partial_partials"
193
+ Fixture Insert (1.9ms) INSERT INTO "remote_partial_partials" ("id", "name", "url", "criteria", "repeat_period", "created_at", "updated_at") VALUES (1, 'simple', 'http://www.warwickshire.gov.uk', 'p:first-child', 600, '2013-07-04 14:04:53', '2013-07-04 14:04:53')
194
+  (156.5ms) commit transaction
195
+  (0.1ms) begin transaction
196
+ Processing by DemosController#index as HTML
197
+ Rendered demos/index.html.erb within layouts/application (3.8ms)
198
+ Completed 200 OK in 57ms (Views: 56.7ms | ActiveRecord: 0.0ms)
199
+  (0.1ms) rollback transaction
200
+  (0.1ms) begin transaction
201
+ Processing by DemosController#show as HTML
202
+ Parameters: {"id"=>"fixed"}
203
+ Rendered remote_partials/_fixed.html.erb (0.5ms)
204
+ Rendered demos/_fixed.html.erb (3.5ms)
205
+ Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.0ms)
206
+  (0.1ms) rollback transaction
207
+  (0.1ms) begin transaction
208
+  (0.1ms) rollback transaction
209
+  (0.1ms) begin transaction
210
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
211
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
212
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
213
+  (0.1ms) SAVEPOINT active_record_1
214
+ SQL (3.6ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:04:53 UTC +00:00], ["criteria", nil], ["name", "foo"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:04:53 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
215
+  (0.1ms) RELEASE SAVEPOINT active_record_1
216
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
217
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
218
+  (1.7ms) rollback transaction
219
+  (0.1ms) begin transaction
220
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
221
+  (0.1ms) SAVEPOINT active_record_1
222
+  (1.8ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:14:53.616354', "updated_at" = '2013-07-04 14:04:53.617515' WHERE "remote_partial_partials"."id" = 1
223
+  (0.1ms) RELEASE SAVEPOINT active_record_1
224
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
225
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'simple' LIMIT 1
226
+  (0.0ms) SAVEPOINT active_record_1
227
+  (0.5ms) UPDATE "remote_partial_partials" SET "criteria" = NULL, "repeat_period" = 43200.0, "updated_at" = '2013-07-04 14:04:53.626652' WHERE "remote_partial_partials"."id" = 1
228
+  (0.1ms) RELEASE SAVEPOINT active_record_1
229
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
230
+  (1.2ms) rollback transaction
231
+  (0.1ms) begin transaction
232
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
233
+  (0.2ms) SELECT COUNT(*) FROM "remote_partial_partials" 
234
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'simple' LIMIT 1
235
+  (0.1ms) SAVEPOINT active_record_1
236
+  (2.7ms) UPDATE "remote_partial_partials" SET "criteria" = NULL, "repeat_period" = 43200.0, "updated_at" = '2013-07-04 14:04:53.654375' WHERE "remote_partial_partials"."id" = 1
237
+  (1.1ms) RELEASE SAVEPOINT active_record_1
238
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
239
+  (0.3ms) rollback transaction
240
+  (0.1ms) begin transaction
241
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
242
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
243
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'simple' LIMIT 1
244
+  (0.0ms) SAVEPOINT active_record_1
245
+  (0.3ms) UPDATE "remote_partial_partials" SET "criteria" = NULL, "repeat_period" = 43200.0, "updated_at" = '2013-07-04 14:04:53.684751' WHERE "remote_partial_partials"."id" = 1
246
+  (0.0ms) RELEASE SAVEPOINT active_record_1
247
+ Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
248
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
249
+  (0.4ms) rollback transaction
250
+  (0.1ms) begin transaction
251
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
252
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
253
+ RemotePartial::Partial Load (4.9ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
254
+  (0.0ms) SAVEPOINT active_record_1
255
+ SQL (0.6ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:04:53 UTC +00:00], ["criteria", nil], ["name", "foo"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:04:53 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
256
+  (0.0ms) RELEASE SAVEPOINT active_record_1
257
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
258
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
259
+  (0.4ms) rollback transaction
260
+  (0.1ms) begin transaction
261
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
262
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
263
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
264
+  (0.0ms) SAVEPOINT active_record_1
265
+ SQL (0.6ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:04:53 UTC +00:00], ["criteria", nil], ["name", "foo"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:04:53 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
266
+  (0.0ms) RELEASE SAVEPOINT active_record_1
267
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
268
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
269
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
270
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
271
+  (0.2ms) SAVEPOINT active_record_1
272
+  (3.9ms) UPDATE "remote_partial_partials" SET "url" = 'other', "updated_at" = '2013-07-04 14:04:53.741803' WHERE "remote_partial_partials"."id" = 173
273
+  (0.1ms) RELEASE SAVEPOINT active_record_1
274
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
275
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
276
+  (0.8ms) rollback transaction
277
+  (0.1ms) begin transaction
278
+  (0.1ms) rollback transaction
279
+  (0.1ms) begin transaction
280
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
281
+  (0.1ms) rollback transaction
282
+  (0.1ms) begin transaction
283
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
284
+  (0.1ms) SAVEPOINT active_record_1
285
+  (7.5ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:14:53.781337', "updated_at" = '2013-07-04 14:04:53.782056' WHERE "remote_partial_partials"."id" = 1
286
+  (0.1ms) RELEASE SAVEPOINT active_record_1
287
+  (0.0ms) SAVEPOINT active_record_1
288
+  (0.0ms) RELEASE SAVEPOINT active_record_1
289
+  (0.2ms) rollback transaction
290
+  (0.1ms) begin transaction
291
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
292
+  (0.1ms) SAVEPOINT active_record_1
293
+  (0.3ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:14:53.798553', "updated_at" = '2013-07-04 14:04:53.799156' WHERE "remote_partial_partials"."id" = 1
294
+  (0.0ms) RELEASE SAVEPOINT active_record_1
295
+  (7.4ms) rollback transaction
296
+  (0.1ms) begin transaction
297
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
298
+  (0.1ms) rollback transaction
299
+  (0.1ms) begin transaction
300
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
301
+  (0.1ms) SAVEPOINT active_record_1
302
+  (0.4ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:14:53.831418', "updated_at" = '2013-07-04 14:04:53.832000' WHERE "remote_partial_partials"."id" = 1
303
+  (0.0ms) RELEASE SAVEPOINT active_record_1
304
+  (3.8ms) rollback transaction
305
+  (0.1ms) begin transaction
306
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
307
+  (0.1ms) SAVEPOINT active_record_1
308
+  (0.4ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:14:53.856482', "updated_at" = '2013-07-04 14:04:53.862384' WHERE "remote_partial_partials"."id" = 1
309
+  (0.0ms) RELEASE SAVEPOINT active_record_1
310
+  (0.2ms) rollback transaction
311
+  (0.1ms) begin transaction
312
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
313
+  (0.1ms) rollback transaction
314
+  (0.1ms) begin transaction
315
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
316
+  (0.1ms) SAVEPOINT active_record_1
317
+  (0.4ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:14:53.883434', "updated_at" = '2013-07-04 14:04:53.884147' WHERE "remote_partial_partials"."id" = 1
318
+  (0.0ms) RELEASE SAVEPOINT active_record_1
319
+  (0.3ms) rollback transaction
320
+  (0.1ms) begin transaction
321
+  (0.1ms) rollback transaction
322
+  (0.1ms) begin transaction
323
+  (0.1ms) rollback transaction
324
+  (0.1ms) begin transaction
325
+  (0.1ms) rollback transaction
326
+  (0.1ms) begin transaction
327
+  (0.1ms) rollback transaction
328
+  (0.0ms) begin transaction
329
+  (0.1ms) rollback transaction
330
+  (0.0ms) begin transaction
331
+  (0.1ms) rollback transaction
332
+  (0.1ms) begin transaction
333
+  (0.2ms) rollback transaction
334
+  (2.1ms) begin transaction
335
+  (0.1ms) rollback transaction
336
+  (0.2ms) begin transaction
337
+  (0.1ms) rollback transaction
338
+  (2.7ms) begin transaction
339
+  (3.2ms) SELECT COUNT(*) FROM "remote_partial_partials"
340
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'wcc' LIMIT 1
341
+  (0.0ms) SAVEPOINT active_record_1
342
+ SQL (0.5ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:04:54 UTC +00:00], ["criteria", nil], ["name", "wcc"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:04:54 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
343
+  (0.1ms) RELEASE SAVEPOINT active_record_1
344
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
345
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
346
+  (1.0ms) rollback transaction
347
+  (0.1ms) begin transaction
348
+  (0.1ms) rollback transaction
349
+  (0.0ms) begin transaction
350
+  (0.0ms) rollback transaction
351
+  (0.0ms) begin transaction
352
+  (0.0ms) rollback transaction
353
+ Connecting to database specified by database.yml
354
+ RemotePartial::Partial Load (1.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
355
+  (0.1ms) begin transaction
356
+ SQL (26.5ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:07:40 UTC +00:00], ["criteria", "#ct"], ["name", "clock"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:07:40 UTC +00:00], ["url", "http://www.timeanddate.com/worldclock/city.html?n=136"]]
357
+  (169.8ms) commit transaction
358
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'ruby' LIMIT 1
359
+  (2.5ms) begin transaction
360
+ SQL (2.5ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:07:41 UTC +00:00], ["criteria", "#intro"], ["name", "ruby"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:07:41 UTC +00:00], ["url", "http://www.ruby-lang.org/en/"]]
361
+  (161.8ms) commit transaction
362
+  (0.3ms) begin transaction
363
+ Fixture Delete (1.6ms) DELETE FROM "remote_partial_partials"
364
+ Fixture Insert (0.9ms) INSERT INTO "remote_partial_partials" ("id", "name", "url", "criteria", "repeat_period", "created_at", "updated_at") VALUES (1, 'simple', 'http://www.warwickshire.gov.uk', 'p:first-child', 600, '2013-07-04 14:07:43', '2013-07-04 14:07:43')
365
+  (150.7ms) commit transaction
366
+  (0.1ms) begin transaction
367
+ Processing by DemosController#index as HTML
368
+ Rendered demos/index.html.erb within layouts/application (4.7ms)
369
+ Completed 200 OK in 50ms (Views: 49.9ms | ActiveRecord: 0.0ms)
370
+  (0.1ms) rollback transaction
371
+  (0.1ms) begin transaction
372
+ Processing by DemosController#show as HTML
373
+ Parameters: {"id"=>"fixed"}
374
+ Rendered remote_partials/_fixed.html.erb (0.5ms)
375
+ Rendered demos/_fixed.html.erb (3.2ms)
376
+ Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.0ms)
377
+  (0.1ms) rollback transaction
378
+  (0.1ms) begin transaction
379
+  (0.1ms) rollback transaction
380
+  (0.1ms) begin transaction
381
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
382
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
383
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
384
+  (0.1ms) SAVEPOINT active_record_1
385
+ SQL (2.8ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:07:43 UTC +00:00], ["criteria", nil], ["name", "foo"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:07:43 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
386
+  (0.1ms) RELEASE SAVEPOINT active_record_1
387
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
388
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
389
+  (0.6ms) rollback transaction
390
+  (0.1ms) begin transaction
391
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
392
+  (0.1ms) SAVEPOINT active_record_1
393
+  (1.8ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:17:43.414784', "updated_at" = '2013-07-04 14:07:43.416094' WHERE "remote_partial_partials"."id" = 1
394
+  (0.1ms) RELEASE SAVEPOINT active_record_1
395
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
396
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'simple' LIMIT 1
397
+  (0.1ms) SAVEPOINT active_record_1
398
+  (0.4ms) UPDATE "remote_partial_partials" SET "criteria" = NULL, "repeat_period" = 43200.0, "updated_at" = '2013-07-04 14:07:43.425591' WHERE "remote_partial_partials"."id" = 1
399
+  (0.0ms) RELEASE SAVEPOINT active_record_1
400
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
401
+  (0.7ms) rollback transaction
402
+  (0.1ms) begin transaction
403
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
404
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
405
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'simple' LIMIT 1
406
+  (0.1ms) SAVEPOINT active_record_1
407
+  (4.3ms) UPDATE "remote_partial_partials" SET "criteria" = NULL, "repeat_period" = 43200.0, "updated_at" = '2013-07-04 14:07:43.441298' WHERE "remote_partial_partials"."id" = 1
408
+  (0.1ms) RELEASE SAVEPOINT active_record_1
409
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
410
+  (0.6ms) rollback transaction
411
+  (0.1ms) begin transaction
412
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
413
+  (5.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
414
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'simple' LIMIT 1
415
+  (0.0ms) SAVEPOINT active_record_1
416
+  (4.0ms) UPDATE "remote_partial_partials" SET "criteria" = NULL, "repeat_period" = 43200.0, "updated_at" = '2013-07-04 14:07:43.477884' WHERE "remote_partial_partials"."id" = 1
417
+  (0.1ms) RELEASE SAVEPOINT active_record_1
418
+ Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
419
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
420
+  (0.4ms) rollback transaction
421
+  (0.1ms) begin transaction
422
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
423
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
424
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
425
+  (0.0ms) SAVEPOINT active_record_1
426
+ SQL (0.6ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:07:43 UTC +00:00], ["criteria", nil], ["name", "foo"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:07:43 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
427
+  (0.1ms) RELEASE SAVEPOINT active_record_1
428
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
429
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
430
+  (0.3ms) rollback transaction
431
+  (0.1ms) begin transaction
432
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
433
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
434
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
435
+  (0.1ms) SAVEPOINT active_record_1
436
+ SQL (0.8ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:07:43 UTC +00:00], ["criteria", nil], ["name", "foo"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:07:43 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
437
+  (0.1ms) RELEASE SAVEPOINT active_record_1
438
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
439
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
440
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
441
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
442
+  (0.0ms) SAVEPOINT active_record_1
443
+  (0.5ms) UPDATE "remote_partial_partials" SET "url" = 'other', "updated_at" = '2013-07-04 14:07:43.538836' WHERE "remote_partial_partials"."id" = 175
444
+  (0.0ms) RELEASE SAVEPOINT active_record_1
445
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
446
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
447
+  (0.4ms) rollback transaction
448
+  (0.1ms) begin transaction
449
+  (0.0ms) rollback transaction
450
+  (0.1ms) begin transaction
451
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
452
+  (0.1ms) rollback transaction
453
+  (0.1ms) begin transaction
454
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
455
+  (0.1ms) SAVEPOINT active_record_1
456
+  (0.4ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:17:43.586878', "updated_at" = '2013-07-04 14:07:43.587576' WHERE "remote_partial_partials"."id" = 1
457
+  (0.0ms) RELEASE SAVEPOINT active_record_1
458
+  (0.1ms) SAVEPOINT active_record_1
459
+  (0.0ms) RELEASE SAVEPOINT active_record_1
460
+  (0.2ms) rollback transaction
461
+  (0.1ms) begin transaction
462
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
463
+  (0.1ms) SAVEPOINT active_record_1
464
+  (0.4ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:17:43.602830', "updated_at" = '2013-07-04 14:07:43.603334' WHERE "remote_partial_partials"."id" = 1
465
+  (0.1ms) RELEASE SAVEPOINT active_record_1
466
+  (0.2ms) rollback transaction
467
+  (0.1ms) begin transaction
468
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
469
+  (0.3ms) rollback transaction
470
+  (0.1ms) begin transaction
471
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
472
+  (0.1ms) SAVEPOINT active_record_1
473
+  (0.4ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:17:43.636828', "updated_at" = '2013-07-04 14:07:43.637396' WHERE "remote_partial_partials"."id" = 1
474
+  (0.0ms) RELEASE SAVEPOINT active_record_1
475
+  (0.3ms) rollback transaction
476
+  (0.1ms) begin transaction
477
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
478
+  (0.0ms) SAVEPOINT active_record_1
479
+  (0.4ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:17:43.657449', "updated_at" = '2013-07-04 14:07:43.663049' WHERE "remote_partial_partials"."id" = 1
480
+  (0.0ms) RELEASE SAVEPOINT active_record_1
481
+  (0.2ms) rollback transaction
482
+  (0.1ms) begin transaction
483
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
484
+  (0.1ms) rollback transaction
485
+  (0.1ms) begin transaction
486
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
487
+  (0.1ms) SAVEPOINT active_record_1
488
+  (0.4ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:17:43.685801', "updated_at" = '2013-07-04 14:07:43.690038' WHERE "remote_partial_partials"."id" = 1
489
+  (0.0ms) RELEASE SAVEPOINT active_record_1
490
+  (0.3ms) rollback transaction
491
+  (0.1ms) begin transaction
492
+  (0.1ms) rollback transaction
493
+  (0.1ms) begin transaction
494
+  (0.1ms) rollback transaction
495
+  (0.1ms) begin transaction
496
+  (0.1ms) rollback transaction
497
+  (0.1ms) begin transaction
498
+  (0.1ms) rollback transaction
499
+  (0.1ms) begin transaction
500
+  (0.1ms) rollback transaction
501
+  (0.1ms) begin transaction
502
+  (0.1ms) rollback transaction
503
+  (0.1ms) begin transaction
504
+  (0.1ms) rollback transaction
505
+  (0.1ms) begin transaction
506
+  (0.1ms) rollback transaction
507
+  (0.1ms) begin transaction
508
+  (0.1ms) rollback transaction
509
+  (0.1ms) begin transaction
510
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
511
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'wcc' LIMIT 1
512
+  (0.1ms) SAVEPOINT active_record_1
513
+ SQL (0.6ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:07:43 UTC +00:00], ["criteria", nil], ["name", "wcc"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:07:43 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
514
+  (0.0ms) RELEASE SAVEPOINT active_record_1
515
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
516
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
517
+  (0.7ms) rollback transaction
518
+  (0.1ms) begin transaction
519
+  (0.1ms) rollback transaction
520
+  (0.0ms) begin transaction
521
+  (0.0ms) rollback transaction
522
+  (0.0ms) begin transaction
523
+  (0.0ms) rollback transaction
524
+ Connecting to database specified by database.yml
525
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
526
+  (0.1ms) begin transaction
527
+ SQL (29.2ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:09:37 UTC +00:00], ["criteria", "#ct"], ["name", "clock"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:09:37 UTC +00:00], ["url", "http://www.timeanddate.com/worldclock/city.html?n=136"]]
528
+  (165.1ms) commit transaction
529
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'ruby' LIMIT 1
530
+  (0.1ms) begin transaction
531
+ SQL (0.7ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:09:38 UTC +00:00], ["criteria", "#intro"], ["name", "ruby"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:09:38 UTC +00:00], ["url", "http://www.ruby-lang.org/en/"]]
532
+  (182.8ms) commit transaction
533
+  (0.2ms) begin transaction
534
+ Fixture Delete (1.9ms) DELETE FROM "remote_partial_partials"
535
+ Fixture Insert (0.9ms) INSERT INTO "remote_partial_partials" ("id", "name", "url", "criteria", "repeat_period", "created_at", "updated_at") VALUES (1, 'simple', 'http://www.warwickshire.gov.uk', 'p:first-child', 600, '2013-07-04 14:09:40', '2013-07-04 14:09:40')
536
+  (219.6ms) commit transaction
537
+  (0.1ms) begin transaction
538
+ Processing by DemosController#index as HTML
539
+ Rendered demos/index.html.erb within layouts/application (3.9ms)
540
+ Completed 200 OK in 59ms (Views: 59.0ms | ActiveRecord: 0.0ms)
541
+  (0.1ms) rollback transaction
542
+  (0.1ms) begin transaction
543
+ Processing by DemosController#show as HTML
544
+ Parameters: {"id"=>"fixed"}
545
+ Rendered remote_partials/_fixed.html.erb (1.0ms)
546
+ Rendered demos/_fixed.html.erb (5.8ms)
547
+ Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.0ms)
548
+  (0.1ms) rollback transaction
549
+  (1.3ms) begin transaction
550
+  (0.1ms) rollback transaction
551
+  (0.1ms) begin transaction
552
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
553
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
554
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
555
+  (0.0ms) SAVEPOINT active_record_1
556
+ SQL (3.7ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:09:41 UTC +00:00], ["criteria", nil], ["name", "foo"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:09:41 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
557
+  (0.1ms) RELEASE SAVEPOINT active_record_1
558
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
559
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
560
+  (2.7ms) rollback transaction
561
+  (0.0ms) begin transaction
562
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
563
+  (0.1ms) SAVEPOINT active_record_1
564
+  (3.3ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:19:41.091596', "updated_at" = '2013-07-04 14:09:41.093115' WHERE "remote_partial_partials"."id" = 1
565
+  (0.1ms) RELEASE SAVEPOINT active_record_1
566
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
567
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'simple' LIMIT 1
568
+  (0.1ms) SAVEPOINT active_record_1
569
+  (0.4ms) UPDATE "remote_partial_partials" SET "criteria" = NULL, "repeat_period" = 43200.0, "updated_at" = '2013-07-04 14:09:41.102447' WHERE "remote_partial_partials"."id" = 1
570
+  (0.1ms) RELEASE SAVEPOINT active_record_1
571
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
572
+  (0.6ms) rollback transaction
573
+  (0.1ms) begin transaction
574
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
575
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
576
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'simple' LIMIT 1
577
+  (0.2ms) SAVEPOINT active_record_1
578
+  (1.7ms) UPDATE "remote_partial_partials" SET "criteria" = NULL, "repeat_period" = 43200.0, "updated_at" = '2013-07-04 14:09:41.121451' WHERE "remote_partial_partials"."id" = 1
579
+  (0.0ms) RELEASE SAVEPOINT active_record_1
580
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
581
+  (0.6ms) rollback transaction
582
+  (0.1ms) begin transaction
583
+ RemotePartial::Partial Load (5.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
584
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
585
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'simple' LIMIT 1
586
+  (0.1ms) SAVEPOINT active_record_1
587
+  (2.3ms) UPDATE "remote_partial_partials" SET "criteria" = NULL, "repeat_period" = 43200.0, "updated_at" = '2013-07-04 14:09:41.153941' WHERE "remote_partial_partials"."id" = 1
588
+  (0.1ms) RELEASE SAVEPOINT active_record_1
589
+ Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
590
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
591
+  (0.7ms) rollback transaction
592
+  (0.1ms) begin transaction
593
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
594
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
595
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
596
+  (0.1ms) SAVEPOINT active_record_1
597
+ SQL (4.9ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:09:41 UTC +00:00], ["criteria", nil], ["name", "foo"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:09:41 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
598
+  (0.1ms) RELEASE SAVEPOINT active_record_1
599
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
600
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
601
+  (2.6ms) rollback transaction
602
+  (0.1ms) begin transaction
603
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
604
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
605
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
606
+  (0.1ms) SAVEPOINT active_record_1
607
+ SQL (3.2ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:09:41 UTC +00:00], ["criteria", nil], ["name", "foo"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:09:41 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
608
+  (0.1ms) RELEASE SAVEPOINT active_record_1
609
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
610
+ RemotePartial::Partial Load (0.0ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
611
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
612
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
613
+  (0.1ms) SAVEPOINT active_record_1
614
+  (2.2ms) UPDATE "remote_partial_partials" SET "url" = 'other', "updated_at" = '2013-07-04 14:09:41.213608' WHERE "remote_partial_partials"."id" = 177
615
+  (0.1ms) RELEASE SAVEPOINT active_record_1
616
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
617
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
618
+  (0.5ms) rollback transaction
619
+  (0.1ms) begin transaction
620
+  (3.5ms) rollback transaction
621
+  (0.1ms) begin transaction
622
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
623
+  (0.1ms) rollback transaction
624
+  (0.1ms) begin transaction
625
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
626
+  (0.2ms) SAVEPOINT active_record_1
627
+  (0.3ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:19:41.250104', "updated_at" = '2013-07-04 14:09:41.252350' WHERE "remote_partial_partials"."id" = 1
628
+  (0.0ms) RELEASE SAVEPOINT active_record_1
629
+  (0.1ms) SAVEPOINT active_record_1
630
+  (0.0ms) RELEASE SAVEPOINT active_record_1
631
+  (3.6ms) rollback transaction
632
+  (0.1ms) begin transaction
633
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
634
+  (0.1ms) SAVEPOINT active_record_1
635
+  (5.7ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:19:41.264451', "updated_at" = '2013-07-04 14:09:41.265040' WHERE "remote_partial_partials"."id" = 1
636
+  (0.1ms) RELEASE SAVEPOINT active_record_1
637
+  (0.6ms) rollback transaction
638
+  (0.1ms) begin transaction
639
+ RemotePartial::Partial Load (0.5ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
640
+  (0.1ms) rollback transaction
641
+  (0.1ms) begin transaction
642
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
643
+  (0.1ms) SAVEPOINT active_record_1
644
+  (1.6ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:19:41.289425', "updated_at" = '2013-07-04 14:09:41.290356' WHERE "remote_partial_partials"."id" = 1
645
+  (0.0ms) RELEASE SAVEPOINT active_record_1
646
+  (0.6ms) rollback transaction
647
+  (0.1ms) begin transaction
648
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
649
+  (0.1ms) SAVEPOINT active_record_1
650
+  (3.8ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:19:41.308529', "updated_at" = '2013-07-04 14:09:41.309463' WHERE "remote_partial_partials"."id" = 1
651
+  (0.1ms) RELEASE SAVEPOINT active_record_1
652
+  (0.6ms) rollback transaction
653
+  (0.1ms) begin transaction
654
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
655
+  (0.1ms) rollback transaction
656
+  (0.1ms) begin transaction
657
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
658
+  (0.1ms) SAVEPOINT active_record_1
659
+  (0.3ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:19:41.334848', "updated_at" = '2013-07-04 14:09:41.335484' WHERE "remote_partial_partials"."id" = 1
660
+  (0.1ms) RELEASE SAVEPOINT active_record_1
661
+  (0.2ms) rollback transaction
662
+  (0.1ms) begin transaction
663
+  (0.1ms) rollback transaction
664
+  (0.1ms) begin transaction
665
+  (0.1ms) rollback transaction
666
+  (0.1ms) begin transaction
667
+  (0.1ms) rollback transaction
668
+  (0.1ms) begin transaction
669
+  (0.1ms) rollback transaction
670
+  (0.1ms) begin transaction
671
+  (0.1ms) rollback transaction
672
+  (0.1ms) begin transaction
673
+  (0.1ms) rollback transaction
674
+  (0.1ms) begin transaction
675
+  (0.1ms) rollback transaction
676
+  (0.1ms) begin transaction
677
+  (0.1ms) rollback transaction
678
+  (0.1ms) begin transaction
679
+  (0.1ms) rollback transaction
680
+  (0.1ms) begin transaction
681
+  (0.2ms) SELECT COUNT(*) FROM "remote_partial_partials"
682
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'wcc' LIMIT 1
683
+  (0.0ms) SAVEPOINT active_record_1
684
+ SQL (3.9ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:09:41 UTC +00:00], ["criteria", nil], ["name", "wcc"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:09:41 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
685
+  (0.1ms) RELEASE SAVEPOINT active_record_1
686
+  (0.3ms) SELECT COUNT(*) FROM "remote_partial_partials" 
687
+ RemotePartial::Partial Load (0.5ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
688
+  (0.8ms) rollback transaction
689
+  (0.1ms) begin transaction
690
+  (0.5ms) rollback transaction
691
+  (0.9ms) begin transaction
692
+  (0.0ms) rollback transaction
693
+  (0.0ms) begin transaction
694
+  (0.6ms) rollback transaction
695
+ Connecting to database specified by database.yml
696
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
697
+  (0.1ms) begin transaction
698
+ SQL (28.4ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:25:01 UTC +00:00], ["criteria", "#ct"], ["name", "clock"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:25:01 UTC +00:00], ["url", "http://www.timeanddate.com/worldclock/city.html?n=136"]]
699
+  (186.9ms) commit transaction
700
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'ruby' LIMIT 1
701
+  (0.1ms) begin transaction
702
+ SQL (3.1ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:25:01 UTC +00:00], ["criteria", "#intro"], ["name", "ruby"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:25:01 UTC +00:00], ["url", "http://www.ruby-lang.org/en/"]]
703
+  (162.5ms) commit transaction
704
+  (0.3ms) begin transaction
705
+ Fixture Delete (1.7ms) DELETE FROM "remote_partial_partials"
706
+ Fixture Insert (1.0ms) INSERT INTO "remote_partial_partials" ("id", "name", "url", "criteria", "repeat_period", "created_at", "updated_at") VALUES (1, 'simple', 'http://www.warwickshire.gov.uk', 'p:first-child', 600, '2013-07-04 14:25:04', '2013-07-04 14:25:04')
707
+  (162.0ms) commit transaction
708
+  (0.1ms) begin transaction
709
+ Processing by DemosController#index as HTML
710
+ Rendered demos/index.html.erb within layouts/application (10.4ms)
711
+ Completed 200 OK in 90ms (Views: 89.1ms | ActiveRecord: 0.0ms)
712
+  (0.1ms) rollback transaction
713
+  (0.1ms) begin transaction
714
+ Processing by DemosController#show as HTML
715
+ Parameters: {"id"=>"fixed"}
716
+ Rendered remote_partials/_fixed.html.erb (0.4ms)
717
+ Rendered demos/_fixed.html.erb (2.2ms)
718
+ Completed 200 OK in 13ms (Views: 10.8ms | ActiveRecord: 0.0ms)
719
+  (0.1ms) rollback transaction
720
+  (0.1ms) begin transaction
721
+  (0.1ms) rollback transaction
722
+  (0.1ms) begin transaction
723
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
724
+  (1.4ms) SELECT COUNT(*) FROM "remote_partial_partials" 
725
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
726
+  (0.1ms) SAVEPOINT active_record_1
727
+ SQL (4.1ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:25:04 UTC +00:00], ["criteria", nil], ["name", "foo"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:25:04 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
728
+  (0.1ms) RELEASE SAVEPOINT active_record_1
729
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
730
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
731
+  (0.7ms) rollback transaction
732
+  (0.0ms) begin transaction
733
+ RemotePartial::Partial Load (0.6ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
734
+  (0.1ms) SAVEPOINT active_record_1
735
+  (1.8ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:35:04.537219', "updated_at" = '2013-07-04 14:25:04.539215' WHERE "remote_partial_partials"."id" = 1
736
+  (0.1ms) RELEASE SAVEPOINT active_record_1
737
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
738
+ RemotePartial::Partial Load (0.6ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'simple' LIMIT 1
739
+  (0.0ms) SAVEPOINT active_record_1
740
+  (0.3ms) UPDATE "remote_partial_partials" SET "criteria" = NULL, "repeat_period" = 43200.0, "updated_at" = '2013-07-04 14:25:04.549369' WHERE "remote_partial_partials"."id" = 1
741
+  (0.1ms) RELEASE SAVEPOINT active_record_1
742
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
743
+  (1.0ms) rollback transaction
744
+  (0.1ms) begin transaction
745
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
746
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
747
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'simple' LIMIT 1
748
+  (0.1ms) SAVEPOINT active_record_1
749
+  (0.4ms) UPDATE "remote_partial_partials" SET "criteria" = NULL, "repeat_period" = 43200.0, "updated_at" = '2013-07-04 14:25:04.572739' WHERE "remote_partial_partials"."id" = 1
750
+  (0.0ms) RELEASE SAVEPOINT active_record_1
751
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
752
+  (0.5ms) rollback transaction
753
+  (0.0ms) begin transaction
754
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
755
+  (0.2ms) SELECT COUNT(*) FROM "remote_partial_partials"
756
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'simple' LIMIT 1
757
+  (0.0ms) SAVEPOINT active_record_1
758
+  (6.8ms) UPDATE "remote_partial_partials" SET "criteria" = NULL, "repeat_period" = 43200.0, "updated_at" = '2013-07-04 14:25:04.598814' WHERE "remote_partial_partials"."id" = 1
759
+  (0.1ms) RELEASE SAVEPOINT active_record_1
760
+ Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
761
+  (0.2ms) SELECT COUNT(*) FROM "remote_partial_partials" 
762
+  (0.3ms) rollback transaction
763
+  (0.1ms) begin transaction
764
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
765
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
766
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
767
+  (1.9ms) SAVEPOINT active_record_1
768
+ SQL (0.5ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:25:04 UTC +00:00], ["criteria", nil], ["name", "foo"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:25:04 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
769
+  (0.0ms) RELEASE SAVEPOINT active_record_1
770
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
771
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
772
+  (0.3ms) rollback transaction
773
+  (0.1ms) begin transaction
774
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
775
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
776
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
777
+  (0.1ms) SAVEPOINT active_record_1
778
+ SQL (5.3ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:25:04 UTC +00:00], ["criteria", nil], ["name", "foo"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:25:04 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
779
+  (0.1ms) RELEASE SAVEPOINT active_record_1
780
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
781
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
782
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
783
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
784
+  (0.1ms) SAVEPOINT active_record_1
785
+  (0.3ms) UPDATE "remote_partial_partials" SET "url" = 'other', "updated_at" = '2013-07-04 14:25:04.661495' WHERE "remote_partial_partials"."id" = 179
786
+  (0.1ms) RELEASE SAVEPOINT active_record_1
787
+  (0.2ms) SELECT COUNT(*) FROM "remote_partial_partials" 
788
+ RemotePartial::Partial Load (3.4ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
789
+  (0.8ms) rollback transaction
790
+  (0.1ms) begin transaction
791
+  (0.1ms) rollback transaction
792
+  (0.1ms) begin transaction
793
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
794
+  (0.1ms) rollback transaction
795
+  (0.1ms) begin transaction
796
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
797
+  (0.1ms) SAVEPOINT active_record_1
798
+  (4.0ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:35:04.694544', "updated_at" = '2013-07-04 14:25:04.695478' WHERE "remote_partial_partials"."id" = 1
799
+  (0.1ms) RELEASE SAVEPOINT active_record_1
800
+  (0.0ms) SAVEPOINT active_record_1
801
+  (0.0ms) RELEASE SAVEPOINT active_record_1
802
+  (0.6ms) rollback transaction
803
+  (0.1ms) begin transaction
804
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
805
+  (0.1ms) SAVEPOINT active_record_1
806
+  (6.7ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:35:04.710328', "updated_at" = '2013-07-04 14:25:04.711225' WHERE "remote_partial_partials"."id" = 1
807
+  (0.1ms) RELEASE SAVEPOINT active_record_1
808
+  (0.2ms) rollback transaction
809
+  (0.1ms) begin transaction
810
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
811
+  (0.1ms) rollback transaction
812
+  (0.1ms) begin transaction
813
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
814
+  (0.1ms) SAVEPOINT active_record_1
815
+  (0.4ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:35:04.738249', "updated_at" = '2013-07-04 14:25:04.738984' WHERE "remote_partial_partials"."id" = 1
816
+  (0.1ms) RELEASE SAVEPOINT active_record_1
817
+  (8.7ms) rollback transaction
818
+  (0.1ms) begin transaction
819
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
820
+  (0.1ms) SAVEPOINT active_record_1
821
+  (0.4ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:35:04.761331', "updated_at" = '2013-07-04 14:25:04.761914' WHERE "remote_partial_partials"."id" = 1
822
+  (0.0ms) RELEASE SAVEPOINT active_record_1
823
+  (0.3ms) rollback transaction
824
+  (0.1ms) begin transaction
825
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
826
+  (7.4ms) rollback transaction
827
+  (0.0ms) begin transaction
828
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
829
+  (0.1ms) SAVEPOINT active_record_1
830
+  (0.4ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 14:35:04.784433', "updated_at" = '2013-07-04 14:25:04.785046' WHERE "remote_partial_partials"."id" = 1
831
+  (0.0ms) RELEASE SAVEPOINT active_record_1
832
+  (0.3ms) rollback transaction
833
+  (0.1ms) begin transaction
834
+  (0.3ms) rollback transaction
835
+  (0.1ms) begin transaction
836
+  (0.1ms) rollback transaction
837
+  (0.2ms) begin transaction
838
+  (0.1ms) rollback transaction
839
+  (0.1ms) begin transaction
840
+  (0.1ms) rollback transaction
841
+  (0.1ms) begin transaction
842
+  (0.1ms) rollback transaction
843
+  (0.1ms) begin transaction
844
+  (0.1ms) rollback transaction
845
+  (0.1ms) begin transaction
846
+  (0.1ms) rollback transaction
847
+  (0.1ms) begin transaction
848
+  (0.1ms) rollback transaction
849
+  (0.0ms) begin transaction
850
+  (0.1ms) rollback transaction
851
+  (0.1ms) begin transaction
852
+  (0.2ms) SELECT COUNT(*) FROM "remote_partial_partials"
853
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'wcc' LIMIT 1
854
+  (0.1ms) SAVEPOINT active_record_1
855
+ SQL (4.7ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 14:25:04 UTC +00:00], ["criteria", nil], ["name", "wcc"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 14:25:04 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
856
+  (0.1ms) RELEASE SAVEPOINT active_record_1
857
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
858
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
859
+  (0.7ms) rollback transaction
860
+  (0.1ms) begin transaction
861
+  (0.0ms) rollback transaction
862
+  (0.1ms) begin transaction
863
+  (0.0ms) rollback transaction
864
+  (0.0ms) begin transaction
865
+  (0.0ms) rollback transaction
866
+ Connecting to database specified by database.yml
867
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
868
+  (0.1ms) begin transaction
869
+ SQL (31.6ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 15:13:09 UTC +00:00], ["criteria", "#ct"], ["name", "clock"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 15:13:09 UTC +00:00], ["url", "http://www.timeanddate.com/worldclock/city.html?n=136"]]
870
+  (196.5ms) commit transaction
871
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'ruby' LIMIT 1
872
+  (1.6ms) begin transaction
873
+ SQL (3.2ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 15:13:10 UTC +00:00], ["criteria", "#intro"], ["name", "ruby"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 15:13:10 UTC +00:00], ["url", "http://www.ruby-lang.org/en/"]]
874
+  (168.3ms) commit transaction
875
+  (0.3ms) begin transaction
876
+ Fixture Delete (1.7ms) DELETE FROM "remote_partial_partials"
877
+ Fixture Insert (0.9ms) INSERT INTO "remote_partial_partials" ("id", "name", "url", "criteria", "repeat_period", "created_at", "updated_at") VALUES (1, 'simple', 'http://www.warwickshire.gov.uk', 'p:first-child', 600, '2013-07-04 15:13:12', '2013-07-04 15:13:12')
878
+  (128.5ms) commit transaction
879
+  (0.1ms) begin transaction
880
+ Processing by DemosController#index as HTML
881
+ Rendered demos/index.html.erb within layouts/application (3.7ms)
882
+ Completed 200 OK in 50ms (Views: 49.6ms | ActiveRecord: 0.0ms)
883
+  (0.1ms) rollback transaction
884
+  (0.0ms) begin transaction
885
+ Processing by DemosController#show as HTML
886
+ Parameters: {"id"=>"fixed"}
887
+ Rendered remote_partials/_fixed.html.erb (0.4ms)
888
+ Rendered demos/_fixed.html.erb (2.2ms)
889
+ Completed 200 OK in 11ms (Views: 10.9ms | ActiveRecord: 0.0ms)
890
+  (0.1ms) rollback transaction
891
+  (0.1ms) begin transaction
892
+  (0.1ms) rollback transaction
893
+  (0.2ms) begin transaction
894
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
895
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
896
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
897
+  (0.1ms) SAVEPOINT active_record_1
898
+ SQL (0.6ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 15:13:12 UTC +00:00], ["criteria", nil], ["name", "foo"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 15:13:12 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
899
+  (0.0ms) RELEASE SAVEPOINT active_record_1
900
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
901
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
902
+  (0.4ms) rollback transaction
903
+  (0.1ms) begin transaction
904
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
905
+  (0.1ms) SAVEPOINT active_record_1
906
+  (0.5ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 15:23:12.737121', "updated_at" = '2013-07-04 15:13:12.737901' WHERE "remote_partial_partials"."id" = 1
907
+  (0.1ms) RELEASE SAVEPOINT active_record_1
908
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
909
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'simple' LIMIT 1
910
+  (0.1ms) SAVEPOINT active_record_1
911
+  (6.3ms) UPDATE "remote_partial_partials" SET "criteria" = NULL, "repeat_period" = 43200.0, "updated_at" = '2013-07-04 15:13:12.752483' WHERE "remote_partial_partials"."id" = 1
912
+  (0.1ms) RELEASE SAVEPOINT active_record_1
913
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
914
+  (0.4ms) rollback transaction
915
+  (0.1ms) begin transaction
916
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
917
+  (0.3ms) SELECT COUNT(*) FROM "remote_partial_partials" 
918
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'simple' LIMIT 1
919
+  (0.1ms) SAVEPOINT active_record_1
920
+  (0.4ms) UPDATE "remote_partial_partials" SET "criteria" = NULL, "repeat_period" = 43200.0, "updated_at" = '2013-07-04 15:13:12.780513' WHERE "remote_partial_partials"."id" = 1
921
+  (0.0ms) RELEASE SAVEPOINT active_record_1
922
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
923
+  (0.2ms) rollback transaction
924
+  (0.1ms) begin transaction
925
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
926
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
927
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'simple' LIMIT 1
928
+  (0.0ms) SAVEPOINT active_record_1
929
+  (0.7ms) UPDATE "remote_partial_partials" SET "criteria" = NULL, "repeat_period" = 43200.0, "updated_at" = '2013-07-04 15:13:12.803174' WHERE "remote_partial_partials"."id" = 1
930
+  (0.2ms) RELEASE SAVEPOINT active_record_1
931
+ Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
932
+  (0.2ms) rollback transaction
933
+  (0.1ms) begin transaction
934
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
935
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
936
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
937
+  (0.0ms) SAVEPOINT active_record_1
938
+ SQL (0.5ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 15:13:12 UTC +00:00], ["criteria", nil], ["name", "foo"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 15:13:12 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
939
+  (0.1ms) RELEASE SAVEPOINT active_record_1
940
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
941
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
942
+  (1.2ms) rollback transaction
943
+  (0.1ms) begin transaction
944
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
945
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
946
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
947
+  (0.0ms) SAVEPOINT active_record_1
948
+ SQL (0.5ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 15:13:12 UTC +00:00], ["criteria", nil], ["name", "foo"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 15:13:12 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
949
+  (0.1ms) RELEASE SAVEPOINT active_record_1
950
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
951
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
952
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
953
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
954
+  (0.0ms) SAVEPOINT active_record_1
955
+  (0.4ms) UPDATE "remote_partial_partials" SET "url" = 'other', "updated_at" = '2013-07-04 15:13:12.870798' WHERE "remote_partial_partials"."id" = 181
956
+  (0.0ms) RELEASE SAVEPOINT active_record_1
957
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
958
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
959
+  (0.4ms) rollback transaction
960
+  (0.1ms) begin transaction
961
+  (0.1ms) rollback transaction
962
+  (0.0ms) begin transaction
963
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
964
+  (0.1ms) rollback transaction
965
+  (0.1ms) begin transaction
966
+ RemotePartial::Partial Load (0.4ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
967
+  (0.1ms) SAVEPOINT active_record_1
968
+  (0.4ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 15:23:12.910837', "updated_at" = '2013-07-04 15:13:12.911499' WHERE "remote_partial_partials"."id" = 1
969
+  (0.1ms) RELEASE SAVEPOINT active_record_1
970
+  (0.0ms) SAVEPOINT active_record_1
971
+  (0.0ms) RELEASE SAVEPOINT active_record_1
972
+  (0.2ms) rollback transaction
973
+  (0.1ms) begin transaction
974
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
975
+  (0.1ms) SAVEPOINT active_record_1
976
+  (0.4ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 15:23:12.932890', "updated_at" = '2013-07-04 15:13:12.936857' WHERE "remote_partial_partials"."id" = 1
977
+  (0.0ms) RELEASE SAVEPOINT active_record_1
978
+  (0.4ms) rollback transaction
979
+  (0.1ms) begin transaction
980
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
981
+  (0.1ms) rollback transaction
982
+  (0.1ms) begin transaction
983
+ RemotePartial::Partial Load (0.4ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
984
+  (0.1ms) SAVEPOINT active_record_1
985
+  (0.4ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 15:23:12.968751', "updated_at" = '2013-07-04 15:13:12.969389' WHERE "remote_partial_partials"."id" = 1
986
+  (0.1ms) RELEASE SAVEPOINT active_record_1
987
+  (0.3ms) rollback transaction
988
+  (0.1ms) begin transaction
989
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
990
+  (0.1ms) SAVEPOINT active_record_1
991
+  (0.4ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 15:23:12.995767', "updated_at" = '2013-07-04 15:13:12.996445' WHERE "remote_partial_partials"."id" = 1
992
+  (0.1ms) RELEASE SAVEPOINT active_record_1
993
+  (0.2ms) rollback transaction
994
+  (0.1ms) begin transaction
995
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
996
+  (0.2ms) rollback transaction
997
+  (0.1ms) begin transaction
998
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
999
+  (0.1ms) SAVEPOINT active_record_1
1000
+  (0.4ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 15:23:13.034814', "updated_at" = '2013-07-04 15:13:13.038317' WHERE "remote_partial_partials"."id" = 1
1001
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1002
+  (0.3ms) rollback transaction
1003
+  (0.1ms) begin transaction
1004
+  (0.1ms) rollback transaction
1005
+  (0.1ms) begin transaction
1006
+  (0.1ms) rollback transaction
1007
+  (0.1ms) begin transaction
1008
+  (0.1ms) rollback transaction
1009
+  (0.1ms) begin transaction
1010
+  (0.1ms) rollback transaction
1011
+  (0.1ms) begin transaction
1012
+  (0.1ms) rollback transaction
1013
+  (0.0ms) begin transaction
1014
+  (0.1ms) rollback transaction
1015
+  (0.1ms) begin transaction
1016
+  (0.1ms) rollback transaction
1017
+  (0.1ms) begin transaction
1018
+  (0.1ms) rollback transaction
1019
+  (0.1ms) begin transaction
1020
+  (0.1ms) rollback transaction
1021
+  (0.1ms) begin transaction
1022
+  (0.2ms) SELECT COUNT(*) FROM "remote_partial_partials" 
1023
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'wcc' LIMIT 1
1024
+  (0.1ms) SAVEPOINT active_record_1
1025
+ SQL (0.5ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 15:13:13 UTC +00:00], ["criteria", nil], ["name", "wcc"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 15:13:13 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
1026
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1027
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
1028
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
1029
+  (0.8ms) rollback transaction
1030
+  (0.1ms) begin transaction
1031
+  (0.1ms) rollback transaction
1032
+  (0.1ms) begin transaction
1033
+  (0.0ms) rollback transaction
1034
+  (0.7ms) begin transaction
1035
+  (0.1ms) rollback transaction
1036
+ Connecting to database specified by database.yml
1037
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
1038
+  (0.1ms) begin transaction
1039
+ SQL (30.7ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 15:15:20 UTC +00:00], ["criteria", "#ct"], ["name", "clock"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 15:15:20 UTC +00:00], ["url", "http://www.timeanddate.com/worldclock/city.html?n=136"]]
1040
+  (171.2ms) commit transaction
1041
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'ruby' LIMIT 1
1042
+  (0.1ms) begin transaction
1043
+ SQL (2.7ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 15:15:21 UTC +00:00], ["criteria", "#intro"], ["name", "ruby"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 15:15:21 UTC +00:00], ["url", "http://www.ruby-lang.org/en/"]]
1044
+  (241.4ms) commit transaction
1045
+  (0.3ms) begin transaction
1046
+ Fixture Delete (0.4ms) DELETE FROM "remote_partial_partials"
1047
+ Fixture Insert (9.9ms) INSERT INTO "remote_partial_partials" ("id", "name", "url", "criteria", "repeat_period", "created_at", "updated_at") VALUES (1, 'simple', 'http://www.warwickshire.gov.uk', 'p:first-child', 600, '2013-07-04 15:15:23', '2013-07-04 15:15:23')
1048
+  (182.8ms) commit transaction
1049
+  (0.1ms) begin transaction
1050
+ Processing by DemosController#index as HTML
1051
+ Rendered demos/index.html.erb within layouts/application (7.5ms)
1052
+ Completed 200 OK in 112ms (Views: 111.8ms | ActiveRecord: 0.0ms)
1053
+  (0.1ms) rollback transaction
1054
+  (0.1ms) begin transaction
1055
+ Processing by DemosController#show as HTML
1056
+ Parameters: {"id"=>"fixed"}
1057
+ Rendered remote_partials/_fixed.html.erb (0.4ms)
1058
+ Rendered demos/_fixed.html.erb (1.8ms)
1059
+ Completed 200 OK in 22ms (Views: 17.4ms | ActiveRecord: 0.0ms)
1060
+  (0.1ms) rollback transaction
1061
+  (0.1ms) begin transaction
1062
+  (0.1ms) rollback transaction
1063
+  (0.1ms) begin transaction
1064
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1065
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
1066
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
1067
+  (0.1ms) SAVEPOINT active_record_1
1068
+ SQL (5.7ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 15:15:24 UTC +00:00], ["criteria", nil], ["name", "foo"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 15:15:24 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
1069
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1070
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
1071
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
1072
+  (0.7ms) rollback transaction
1073
+  (0.1ms) begin transaction
1074
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1075
+  (0.2ms) SAVEPOINT active_record_1
1076
+  (2.2ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 15:25:24.427652', "updated_at" = '2013-07-04 15:15:24.431380' WHERE "remote_partial_partials"."id" = 1
1077
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1078
+  (0.2ms) SELECT COUNT(*) FROM "remote_partial_partials"
1079
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'simple' LIMIT 1
1080
+  (0.0ms) SAVEPOINT active_record_1
1081
+  (0.4ms) UPDATE "remote_partial_partials" SET "criteria" = NULL, "repeat_period" = 43200.0, "updated_at" = '2013-07-04 15:15:24.454629' WHERE "remote_partial_partials"."id" = 1
1082
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1083
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
1084
+  (0.4ms) rollback transaction
1085
+  (0.1ms) begin transaction
1086
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1087
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
1088
+ RemotePartial::Partial Load (8.4ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'simple' LIMIT 1
1089
+  (0.1ms) SAVEPOINT active_record_1
1090
+  (0.3ms) UPDATE "remote_partial_partials" SET "criteria" = NULL, "repeat_period" = 43200.0, "updated_at" = '2013-07-04 15:15:24.476202' WHERE "remote_partial_partials"."id" = 1
1091
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1092
+  (5.3ms) SELECT COUNT(*) FROM "remote_partial_partials"
1093
+  (0.3ms) rollback transaction
1094
+  (0.0ms) begin transaction
1095
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1096
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
1097
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'simple' LIMIT 1
1098
+  (0.0ms) SAVEPOINT active_record_1
1099
+  (0.3ms) UPDATE "remote_partial_partials" SET "criteria" = NULL, "repeat_period" = 43200.0, "updated_at" = '2013-07-04 15:15:24.495542' WHERE "remote_partial_partials"."id" = 1
1100
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1101
+ Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
1102
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
1103
+  (0.3ms) rollback transaction
1104
+  (0.1ms) begin transaction
1105
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1106
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
1107
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
1108
+  (0.1ms) SAVEPOINT active_record_1
1109
+ SQL (0.6ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 15:15:24 UTC +00:00], ["criteria", nil], ["name", "foo"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 15:15:24 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
1110
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1111
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
1112
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
1113
+  (0.3ms) rollback transaction
1114
+  (0.0ms) begin transaction
1115
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1116
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
1117
+ RemotePartial::Partial Load (4.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
1118
+  (0.1ms) SAVEPOINT active_record_1
1119
+ SQL (0.6ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 15:15:24 UTC +00:00], ["criteria", nil], ["name", "foo"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 15:15:24 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
1120
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1121
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
1122
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
1123
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
1124
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
1125
+  (0.1ms) SAVEPOINT active_record_1
1126
+  (3.0ms) UPDATE "remote_partial_partials" SET "url" = 'other', "updated_at" = '2013-07-04 15:15:24.569021' WHERE "remote_partial_partials"."id" = 183
1127
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1128
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
1129
+ RemotePartial::Partial Load (4.9ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
1130
+  (0.4ms) rollback transaction
1131
+  (0.0ms) begin transaction
1132
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1133
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
1134
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'simple' LIMIT 1
1135
+  (0.1ms) SAVEPOINT active_record_1
1136
+  (4.2ms) UPDATE "remote_partial_partials" SET "criteria" = NULL, "repeat_period" = 43200.0, "updated_at" = '2013-07-04 15:15:24.591204' WHERE "remote_partial_partials"."id" = 1
1137
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1138
+ Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
1139
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
1140
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1141
+  (7.3ms) rollback transaction
1142
+  (0.1ms) begin transaction
1143
+  (0.1ms) rollback transaction
1144
+  (0.1ms) begin transaction
1145
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1146
+  (0.1ms) rollback transaction
1147
+  (0.1ms) begin transaction
1148
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1149
+  (0.1ms) SAVEPOINT active_record_1
1150
+  (0.3ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 15:25:24.644468', "updated_at" = '2013-07-04 15:15:24.645121' WHERE "remote_partial_partials"."id" = 1
1151
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1152
+  (6.7ms) SAVEPOINT active_record_1
1153
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1154
+  (0.3ms) rollback transaction
1155
+  (0.1ms) begin transaction
1156
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1157
+  (0.1ms) SAVEPOINT active_record_1
1158
+  (0.4ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 15:25:24.659744', "updated_at" = '2013-07-04 15:15:24.660234' WHERE "remote_partial_partials"."id" = 1
1159
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1160
+  (0.2ms) rollback transaction
1161
+  (0.1ms) begin transaction
1162
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1163
+  (0.1ms) rollback transaction
1164
+  (0.1ms) begin transaction
1165
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1166
+  (0.1ms) SAVEPOINT active_record_1
1167
+  (0.4ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 15:25:24.684199', "updated_at" = '2013-07-04 15:15:24.684806' WHERE "remote_partial_partials"."id" = 1
1168
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1169
+  (5.2ms) rollback transaction
1170
+  (0.1ms) begin transaction
1171
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1172
+  (0.1ms) SAVEPOINT active_record_1
1173
+  (1.6ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 15:25:24.706027', "updated_at" = '2013-07-04 15:15:24.706617' WHERE "remote_partial_partials"."id" = 1
1174
+  (0.2ms) RELEASE SAVEPOINT active_record_1
1175
+  (0.4ms) rollback transaction
1176
+  (0.0ms) begin transaction
1177
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1178
+  (0.1ms) rollback transaction
1179
+  (0.0ms) begin transaction
1180
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1181
+  (0.1ms) SAVEPOINT active_record_1
1182
+  (0.3ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 15:25:24.740633', "updated_at" = '2013-07-04 15:15:24.741084' WHERE "remote_partial_partials"."id" = 1
1183
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1184
+  (5.7ms) rollback transaction
1185
+  (0.1ms) begin transaction
1186
+  (0.1ms) rollback transaction
1187
+  (0.1ms) begin transaction
1188
+  (1.4ms) rollback transaction
1189
+  (0.1ms) begin transaction
1190
+  (0.1ms) rollback transaction
1191
+  (0.0ms) begin transaction
1192
+  (0.1ms) rollback transaction
1193
+  (0.0ms) begin transaction
1194
+  (0.1ms) rollback transaction
1195
+  (0.2ms) begin transaction
1196
+  (0.1ms) rollback transaction
1197
+  (0.1ms) begin transaction
1198
+  (0.1ms) rollback transaction
1199
+  (0.1ms) begin transaction
1200
+  (0.1ms) rollback transaction
1201
+  (0.1ms) begin transaction
1202
+  (0.1ms) rollback transaction
1203
+  (0.1ms) begin transaction
1204
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
1205
+ RemotePartial::Partial Load (2.0ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'wcc' LIMIT 1
1206
+  (0.1ms) SAVEPOINT active_record_1
1207
+ SQL (8.9ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 15:15:24 UTC +00:00], ["criteria", nil], ["name", "wcc"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 15:15:24 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
1208
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1209
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
1210
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
1211
+  (0.7ms) rollback transaction
1212
+  (0.1ms) begin transaction
1213
+  (0.0ms) rollback transaction
1214
+  (0.0ms) begin transaction
1215
+  (1.2ms) rollback transaction
1216
+  (0.0ms) begin transaction
1217
+  (0.0ms) rollback transaction
1218
+ Connecting to database specified by database.yml
1219
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
1220
+  (0.1ms) begin transaction
1221
+ SQL (29.6ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 15:18:38 UTC +00:00], ["criteria", "#ct"], ["name", "clock"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 15:18:38 UTC +00:00], ["url", "http://www.timeanddate.com/worldclock/city.html?n=136"]]
1222
+  (178.2ms) commit transaction
1223
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'ruby' LIMIT 1
1224
+  (0.1ms) begin transaction
1225
+ SQL (2.5ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 15:18:38 UTC +00:00], ["criteria", "#intro"], ["name", "ruby"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 15:18:38 UTC +00:00], ["url", "http://www.ruby-lang.org/en/"]]
1226
+  (181.9ms) commit transaction
1227
+  (0.3ms) begin transaction
1228
+ Fixture Delete (1.6ms) DELETE FROM "remote_partial_partials"
1229
+ Fixture Insert (0.9ms) INSERT INTO "remote_partial_partials" ("id", "name", "url", "criteria", "repeat_period", "created_at", "updated_at") VALUES (1, 'simple', 'http://www.warwickshire.gov.uk', 'p:first-child', 600, '2013-07-04 15:18:40', '2013-07-04 15:18:40')
1230
+  (144.2ms) commit transaction
1231
+  (0.1ms) begin transaction
1232
+ Processing by DemosController#index as HTML
1233
+ Rendered demos/index.html.erb within layouts/application (5.1ms)
1234
+ Completed 200 OK in 52ms (Views: 51.6ms | ActiveRecord: 0.0ms)
1235
+  (0.1ms) rollback transaction
1236
+  (0.0ms) begin transaction
1237
+ Processing by DemosController#show as HTML
1238
+ Parameters: {"id"=>"fixed"}
1239
+ Rendered remote_partials/_fixed.html.erb (0.4ms)
1240
+ Rendered demos/_fixed.html.erb (2.0ms)
1241
+ Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.0ms)
1242
+  (0.1ms) rollback transaction
1243
+  (0.1ms) begin transaction
1244
+  (0.1ms) rollback transaction
1245
+  (0.1ms) begin transaction
1246
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1247
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
1248
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
1249
+  (0.1ms) SAVEPOINT active_record_1
1250
+ SQL (3.6ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 15:18:40 UTC +00:00], ["criteria", nil], ["name", "foo"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 15:18:40 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
1251
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1252
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
1253
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
1254
+  (3.0ms) rollback transaction
1255
+  (0.1ms) begin transaction
1256
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1257
+  (0.1ms) SAVEPOINT active_record_1
1258
+  (3.6ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 15:28:40.689532', "updated_at" = '2013-07-04 15:18:40.690792' WHERE "remote_partial_partials"."id" = 1
1259
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1260
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
1261
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'simple' LIMIT 1
1262
+  (0.0ms) SAVEPOINT active_record_1
1263
+  (0.4ms) UPDATE "remote_partial_partials" SET "criteria" = NULL, "repeat_period" = 43200.0, "updated_at" = '2013-07-04 15:18:40.700319' WHERE "remote_partial_partials"."id" = 1
1264
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1265
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
1266
+  (2.9ms) rollback transaction
1267
+  (0.1ms) begin transaction
1268
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1269
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
1270
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'simple' LIMIT 1
1271
+  (0.9ms) SAVEPOINT active_record_1
1272
+  (2.1ms) UPDATE "remote_partial_partials" SET "criteria" = NULL, "repeat_period" = 43200.0, "updated_at" = '2013-07-04 15:18:40.724392' WHERE "remote_partial_partials"."id" = 1
1273
+  (0.3ms) RELEASE SAVEPOINT active_record_1
1274
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
1275
+  (0.6ms) rollback transaction
1276
+  (0.1ms) begin transaction
1277
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1278
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
1279
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'simple' LIMIT 1
1280
+  (0.1ms) SAVEPOINT active_record_1
1281
+  (3.2ms) UPDATE "remote_partial_partials" SET "criteria" = NULL, "repeat_period" = 43200.0, "updated_at" = '2013-07-04 15:18:40.753690' WHERE "remote_partial_partials"."id" = 1
1282
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1283
+ Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
1284
+  (0.2ms) SELECT COUNT(*) FROM "remote_partial_partials" 
1285
+  (0.4ms) rollback transaction
1286
+  (0.1ms) begin transaction
1287
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1288
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
1289
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
1290
+  (5.4ms) SAVEPOINT active_record_1
1291
+ SQL (0.6ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 15:18:40 UTC +00:00], ["criteria", nil], ["name", "foo"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 15:18:40 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
1292
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1293
+  (4.2ms) SELECT COUNT(*) FROM "remote_partial_partials"
1294
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
1295
+  (0.5ms) rollback transaction
1296
+  (0.1ms) begin transaction
1297
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1298
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
1299
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
1300
+  (0.0ms) SAVEPOINT active_record_1
1301
+ SQL (10.2ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 15:18:40 UTC +00:00], ["criteria", nil], ["name", "foo"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 15:18:40 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
1302
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1303
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
1304
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
1305
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
1306
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'foo' LIMIT 1
1307
+  (0.0ms) SAVEPOINT active_record_1
1308
+  (0.3ms) UPDATE "remote_partial_partials" SET "url" = 'other', "updated_at" = '2013-07-04 15:18:40.816509' WHERE "remote_partial_partials"."id" = 185
1309
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1310
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
1311
+ RemotePartial::Partial Load (14.9ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
1312
+  (0.6ms) rollback transaction
1313
+  (0.0ms) begin transaction
1314
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1315
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials"
1316
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'simple' LIMIT 1
1317
+  (0.0ms) SAVEPOINT active_record_1
1318
+  (0.3ms) UPDATE "remote_partial_partials" SET "criteria" = NULL, "repeat_period" = 43200.0, "updated_at" = '2013-07-04 15:18:40.841077' WHERE "remote_partial_partials"."id" = 1
1319
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1320
+ Unable to retrieve remote partial at http://www.warwickshire.gov.uk: #<Net::HTTPBadRequest 400 readbody=true>
1321
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
1322
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1323
+  (0.3ms) rollback transaction
1324
+  (0.1ms) begin transaction
1325
+  (0.1ms) rollback transaction
1326
+  (0.1ms) begin transaction
1327
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1328
+  (0.1ms) rollback transaction
1329
+  (0.1ms) begin transaction
1330
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1331
+  (2.5ms) SAVEPOINT active_record_1
1332
+  (0.4ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 15:28:40.873668', "updated_at" = '2013-07-04 15:18:40.876819' WHERE "remote_partial_partials"."id" = 1
1333
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1334
+  (0.4ms) rollback transaction
1335
+  (0.0ms) begin transaction
1336
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1337
+  (0.1ms) SAVEPOINT active_record_1
1338
+  (0.3ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 15:28:40.887512', "updated_at" = '2013-07-04 15:18:40.888000' WHERE "remote_partial_partials"."id" = 1
1339
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1340
+  (0.2ms) rollback transaction
1341
+  (0.1ms) begin transaction
1342
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1343
+  (0.1ms) rollback transaction
1344
+  (0.1ms) begin transaction
1345
+ RemotePartial::Partial Load (0.6ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1346
+  (0.2ms) SAVEPOINT active_record_1
1347
+  (0.5ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 15:28:40.925677', "updated_at" = '2013-07-04 15:18:40.926945' WHERE "remote_partial_partials"."id" = 1
1348
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1349
+  (9.9ms) rollback transaction
1350
+  (0.1ms) begin transaction
1351
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1352
+  (0.0ms) SAVEPOINT active_record_1
1353
+  (0.4ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 15:28:40.953380', "updated_at" = '2013-07-04 15:18:40.958600' WHERE "remote_partial_partials"."id" = 1
1354
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1355
+  (0.2ms) rollback transaction
1356
+  (0.1ms) begin transaction
1357
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1358
+  (0.1ms) rollback transaction
1359
+  (0.1ms) begin transaction
1360
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1361
+  (0.1ms) SAVEPOINT active_record_1
1362
+  (6.3ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 15:28:40.983804', "updated_at" = '2013-07-04 15:18:40.984392' WHERE "remote_partial_partials"."id" = 1
1363
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1364
+  (0.2ms) rollback transaction
1365
+  (0.1ms) begin transaction
1366
+  (0.1ms) rollback transaction
1367
+  (0.1ms) begin transaction
1368
+  (0.1ms) rollback transaction
1369
+  (0.1ms) begin transaction
1370
+  (0.1ms) rollback transaction
1371
+  (0.1ms) begin transaction
1372
+  (0.1ms) rollback transaction
1373
+  (0.1ms) begin transaction
1374
+  (0.1ms) rollback transaction
1375
+  (0.1ms) begin transaction
1376
+  (0.1ms) rollback transaction
1377
+  (0.1ms) begin transaction
1378
+  (0.1ms) rollback transaction
1379
+  (0.1ms) begin transaction
1380
+  (0.1ms) rollback transaction
1381
+  (0.1ms) begin transaction
1382
+  (0.1ms) rollback transaction
1383
+  (0.1ms) begin transaction
1384
+  (0.2ms) SELECT COUNT(*) FROM "remote_partial_partials"
1385
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'wcc' LIMIT 1
1386
+  (0.0ms) SAVEPOINT active_record_1
1387
+ SQL (0.5ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 04 Jul 2013 15:18:41 UTC +00:00], ["criteria", nil], ["name", "wcc"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Thu, 04 Jul 2013 15:18:41 UTC +00:00], ["url", "http://www.warwickshire.gov.uk"]]
1388
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1389
+  (0.1ms) SELECT COUNT(*) FROM "remote_partial_partials" 
1390
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" ORDER BY "remote_partial_partials"."id" DESC LIMIT 1
1391
+  (0.6ms) rollback transaction
1392
+  (0.1ms) begin transaction
1393
+  (0.0ms) rollback transaction
1394
+  (0.1ms) begin transaction
1395
+  (0.0ms) rollback transaction
1396
+  (0.0ms) begin transaction
1397
+  (0.0ms) rollback transaction