action_bouncer 0.0.2 → 0.0.3

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 (53) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +94 -0
  3. data/Rakefile +0 -5
  4. data/lib/action_bouncer.rb +4 -2
  5. data/lib/action_bouncer/allowance.rb +32 -0
  6. data/lib/action_bouncer/authorization.rb +7 -28
  7. data/lib/action_bouncer/version.rb +1 -1
  8. data/spec/controllers/all_param_controller_spec.rb +52 -0
  9. data/spec/controllers/array_params_controller_spec.rb +39 -0
  10. data/spec/controllers/multiple_allowances_controller_spec.rb +64 -0
  11. data/spec/controllers/no_setup_controller_spec.rb +22 -0
  12. data/spec/controllers/symbol_params_controller_spec.rb +34 -0
  13. data/spec/dummy/README.rdoc +28 -0
  14. data/spec/dummy/Rakefile +6 -0
  15. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  16. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  17. data/spec/dummy/app/controllers/application_controller.rb +7 -0
  18. data/spec/dummy/app/controllers/dummy_controller.rb +4 -0
  19. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  20. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  21. data/spec/dummy/bin/bundle +3 -0
  22. data/spec/dummy/bin/rails +4 -0
  23. data/spec/dummy/bin/rake +4 -0
  24. data/spec/dummy/bin/setup +29 -0
  25. data/spec/dummy/config.ru +4 -0
  26. data/spec/dummy/config/application.rb +26 -0
  27. data/spec/dummy/config/boot.rb +5 -0
  28. data/spec/dummy/config/database.yml +25 -0
  29. data/spec/dummy/config/environment.rb +5 -0
  30. data/spec/dummy/config/environments/development.rb +41 -0
  31. data/spec/dummy/config/environments/production.rb +79 -0
  32. data/spec/dummy/config/environments/test.rb +42 -0
  33. data/spec/dummy/config/initializers/assets.rb +11 -0
  34. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  35. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  36. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  37. data/spec/dummy/config/initializers/inflections.rb +16 -0
  38. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  39. data/spec/dummy/config/initializers/session_store.rb +3 -0
  40. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  41. data/spec/dummy/config/locales/en.yml +23 -0
  42. data/spec/dummy/config/routes.rb +3 -0
  43. data/spec/dummy/config/secrets.yml +22 -0
  44. data/spec/dummy/db/test.sqlite3 +0 -0
  45. data/spec/dummy/log/development.log +0 -0
  46. data/spec/dummy/log/test.log +2711 -0
  47. data/spec/dummy/public/404.html +67 -0
  48. data/spec/dummy/public/422.html +67 -0
  49. data/spec/dummy/public/500.html +66 -0
  50. data/spec/dummy/public/favicon.ico +0 -0
  51. data/spec/spec_helper.rb +21 -0
  52. metadata +94 -5
  53. data/README.rdoc +0 -3
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,3 @@
1
+ Rails.application.routes.draw do
2
+ get 'index', controller: 'dummy'
3
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: c3de06258d6e7bbb950d5e57a2585280d97729877fba30727dade98e25cc31668c9b273576181c8705ae87d25a7a88b2b3fe34c3b6e211f722ded3c6a6bbb2f8
15
+
16
+ test:
17
+ secret_key_base: 96fe7a1deaa72fa0bf6461ea8336a78c812393ebde33f608447d1277dee2b160e732edc1f4d022ed27908fb847cd1273752a2ca537f64800d6e0587abdfd831c
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
File without changes
File without changes
@@ -0,0 +1,2711 @@
1
+  (0.3ms) begin transaction
2
+ Processing by SingleParamsController#new as HTML
3
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
4
+  (0.1ms) rollback transaction
5
+  (0.1ms) begin transaction
6
+ Processing by SingleParamsController#index as HTML
7
+ Rendered text template (0.0ms)
8
+ Completed 500 Internal Server Error in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
9
+  (0.1ms) rollback transaction
10
+  (0.1ms) begin transaction
11
+ Processing by MultipleParamsController#edit as HTML
12
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
13
+  (0.1ms) rollback transaction
14
+  (0.1ms) begin transaction
15
+ Processing by MultipleParamsController#index as HTML
16
+ Rendered text template (0.0ms)
17
+ Completed 500 Internal Server Error in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
18
+  (0.1ms) rollback transaction
19
+  (0.1ms) begin transaction
20
+ Processing by MultipleParamsController#new as HTML
21
+ Rendered text template (0.0ms)
22
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
23
+  (0.1ms) rollback transaction
24
+  (0.3ms) begin transaction
25
+  (0.1ms) rollback transaction
26
+  (0.1ms) begin transaction
27
+  (0.1ms) rollback transaction
28
+  (0.6ms) begin transaction
29
+ Processing by SymbolParamsController#index as HTML
30
+ Rendered text template (0.0ms)
31
+ Completed 500 Internal Server Error in 15ms (Views: 14.5ms | ActiveRecord: 0.0ms)
32
+  (0.1ms) rollback transaction
33
+  (0.1ms) begin transaction
34
+ Processing by SymbolParamsController#new as HTML
35
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
36
+  (0.1ms) rollback transaction
37
+  (0.4ms) begin transaction
38
+ Processing by ArrayParamsController#index as HTML
39
+ Rendered text template (0.0ms)
40
+ Completed 500 Internal Server Error in 13ms (Views: 12.7ms | ActiveRecord: 0.0ms)
41
+  (0.1ms) rollback transaction
42
+  (0.1ms) begin transaction
43
+ Processing by ArrayParamsController#new as HTML
44
+ Rendered text template (0.0ms)
45
+ Completed 500 Internal Server Error in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
46
+  (0.1ms) rollback transaction
47
+  (0.1ms) begin transaction
48
+ Processing by ArrayParamsController#edit as HTML
49
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
50
+  (0.1ms) rollback transaction
51
+  (0.1ms) begin transaction
52
+ Processing by SymbolParamsController#index as HTML
53
+ Rendered text template (0.0ms)
54
+ Completed 500 Internal Server Error in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
55
+  (0.1ms) rollback transaction
56
+  (0.1ms) begin transaction
57
+ Processing by SymbolParamsController#new as HTML
58
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
59
+  (0.1ms) rollback transaction
60
+  (0.4ms) begin transaction
61
+ Processing by ArrayParamsController#index as HTML
62
+ Rendered text template (0.0ms)
63
+ Completed 500 Internal Server Error in 12ms (Views: 11.2ms | ActiveRecord: 0.0ms)
64
+  (0.1ms) rollback transaction
65
+  (0.4ms) begin transaction
66
+ Processing by ArrayParamsController#new as HTML
67
+ Rendered text template (0.0ms)
68
+ Completed 500 Internal Server Error in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
69
+  (0.1ms) rollback transaction
70
+  (0.1ms) begin transaction
71
+ Processing by ArrayParamsController#edit as HTML
72
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
73
+  (0.1ms) rollback transaction
74
+  (0.1ms) begin transaction
75
+ Processing by AllParamController#new as HTML
76
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
77
+  (0.1ms) rollback transaction
78
+  (0.1ms) begin transaction
79
+ Processing by AllParamController#edit as HTML
80
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
81
+  (0.1ms) rollback transaction
82
+  (0.1ms) begin transaction
83
+ Processing by AllParamController#index as HTML
84
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
85
+  (0.1ms) rollback transaction
86
+  (0.1ms) begin transaction
87
+ Processing by SymbolParamsController#new as HTML
88
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
89
+  (0.1ms) rollback transaction
90
+  (0.1ms) begin transaction
91
+ Processing by SymbolParamsController#index as HTML
92
+ Rendered text template (0.0ms)
93
+ Completed 500 Internal Server Error in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
94
+  (0.2ms) rollback transaction
95
+  (0.3ms) begin transaction
96
+ Processing by ArrayParamsController#index as HTML
97
+ Rendered text template (0.0ms)
98
+ Completed 500 Internal Server Error in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)
99
+  (0.1ms) rollback transaction
100
+  (0.1ms) begin transaction
101
+ Processing by ArrayParamsController#new as HTML
102
+ Rendered text template (0.0ms)
103
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
104
+  (0.1ms) rollback transaction
105
+  (0.1ms) begin transaction
106
+ Processing by ArrayParamsController#edit as HTML
107
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
108
+  (0.1ms) rollback transaction
109
+  (0.1ms) begin transaction
110
+ Processing by AllParamController#edit as HTML
111
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
112
+  (0.1ms) rollback transaction
113
+  (0.1ms) begin transaction
114
+ Processing by AllParamController#new as HTML
115
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
116
+  (0.1ms) rollback transaction
117
+  (0.1ms) begin transaction
118
+ Processing by AllParamController#index as HTML
119
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
120
+  (0.1ms) rollback transaction
121
+  (0.1ms) begin transaction
122
+ Processing by SymbolParamsController#new as HTML
123
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
124
+  (0.1ms) rollback transaction
125
+  (0.1ms) begin transaction
126
+ Processing by SymbolParamsController#index as HTML
127
+ Rendered text template (0.0ms)
128
+ Completed 500 Internal Server Error in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
129
+  (0.1ms) rollback transaction
130
+  (0.3ms) begin transaction
131
+ Processing by ArrayParamsController#edit as HTML
132
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
133
+  (0.1ms) rollback transaction
134
+  (0.1ms) begin transaction
135
+ Processing by ArrayParamsController#index as HTML
136
+ Rendered text template (0.0ms)
137
+ Completed 500 Internal Server Error in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
138
+  (0.1ms) rollback transaction
139
+  (0.1ms) begin transaction
140
+ Processing by ArrayParamsController#new as HTML
141
+ Rendered text template (0.0ms)
142
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
143
+  (0.1ms) rollback transaction
144
+  (0.1ms) begin transaction
145
+ Processing by SymbolParamsController#new as HTML
146
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
147
+  (0.1ms) rollback transaction
148
+  (0.1ms) begin transaction
149
+ Processing by SymbolParamsController#index as HTML
150
+ Rendered text template (0.0ms)
151
+ Completed 500 Internal Server Error in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
152
+  (0.1ms) rollback transaction
153
+  (0.1ms) begin transaction
154
+ Processing by AllParamController#index as HTML
155
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
156
+  (0.1ms) rollback transaction
157
+  (0.1ms) begin transaction
158
+ Processing by AllParamController#new as HTML
159
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
160
+  (0.1ms) rollback transaction
161
+  (0.2ms) begin transaction
162
+ Processing by AllParamController#edit as HTML
163
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
164
+  (0.1ms) rollback transaction
165
+  (0.3ms) begin transaction
166
+ Processing by ArrayParamsController#new as HTML
167
+ Rendered text template (0.0ms)
168
+ Completed 500 Internal Server Error in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
169
+  (0.1ms) rollback transaction
170
+  (0.1ms) begin transaction
171
+ Processing by ArrayParamsController#index as HTML
172
+ Rendered text template (0.0ms)
173
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
174
+  (0.1ms) rollback transaction
175
+  (0.1ms) begin transaction
176
+ Processing by ArrayParamsController#edit as HTML
177
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
178
+  (0.1ms) rollback transaction
179
+  (0.1ms) begin transaction
180
+ Processing by SymbolParamsController#new as HTML
181
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
182
+  (0.1ms) rollback transaction
183
+  (0.1ms) begin transaction
184
+ Processing by SymbolParamsController#index as HTML
185
+ Rendered text template (0.0ms)
186
+ Completed 500 Internal Server Error in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
187
+  (0.1ms) rollback transaction
188
+  (0.1ms) begin transaction
189
+ Processing by AllParamController#index as HTML
190
+ Rendered text template (0.0ms)
191
+ Completed 500 Internal Server Error in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
192
+  (0.1ms) rollback transaction
193
+  (0.1ms) begin transaction
194
+ Processing by AllParamController#edit as HTML
195
+ Rendered text template (0.0ms)
196
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
197
+  (0.1ms) rollback transaction
198
+  (0.1ms) begin transaction
199
+ Processing by AllParamController#new as HTML
200
+ Rendered text template (0.0ms)
201
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
202
+  (0.1ms) rollback transaction
203
+  (0.4ms) begin transaction
204
+ Processing by SymbolParamsController#new as HTML
205
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
206
+  (0.1ms) rollback transaction
207
+  (0.1ms) begin transaction
208
+ Processing by SymbolParamsController#index as HTML
209
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
210
+  (0.1ms) rollback transaction
211
+  (0.1ms) begin transaction
212
+ Processing by AllParamController#edit as HTML
213
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
214
+  (0.1ms) rollback transaction
215
+  (0.1ms) begin transaction
216
+ Processing by AllParamController#new as HTML
217
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
218
+  (0.1ms) rollback transaction
219
+  (0.1ms) begin transaction
220
+ Processing by AllParamController#index as HTML
221
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
222
+  (0.1ms) rollback transaction
223
+  (0.1ms) begin transaction
224
+ Processing by ArrayParamsController#edit as HTML
225
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
226
+  (0.1ms) rollback transaction
227
+  (0.1ms) begin transaction
228
+ Processing by ArrayParamsController#new as HTML
229
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
230
+  (0.1ms) rollback transaction
231
+  (0.1ms) begin transaction
232
+ Processing by ArrayParamsController#index as HTML
233
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
234
+  (0.1ms) rollback transaction
235
+  (0.4ms) begin transaction
236
+ Processing by AllParamController#index as HTML
237
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
238
+  (0.1ms) rollback transaction
239
+  (0.1ms) begin transaction
240
+ Processing by AllParamController#new as HTML
241
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
242
+  (0.1ms) rollback transaction
243
+  (0.1ms) begin transaction
244
+ Processing by AllParamController#edit as HTML
245
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
246
+  (0.1ms) rollback transaction
247
+  (0.6ms) begin transaction
248
+ Processing by AllParamController#index as HTML
249
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
250
+  (0.1ms) rollback transaction
251
+  (0.3ms) begin transaction
252
+ Processing by AllParamController#index as HTML
253
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
254
+  (0.1ms) rollback transaction
255
+  (0.4ms) begin transaction
256
+ Processing by AllParamController#index as HTML
257
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
258
+  (0.1ms) rollback transaction
259
+  (0.4ms) begin transaction
260
+ Processing by AllParamController#index as HTML
261
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
262
+  (0.1ms) rollback transaction
263
+  (0.4ms) begin transaction
264
+ Processing by AllParamController#index as HTML
265
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
266
+  (0.1ms) rollback transaction
267
+  (0.4ms) begin transaction
268
+ Processing by AllParamController#index as HTML
269
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
270
+  (0.1ms) rollback transaction
271
+  (0.3ms) begin transaction
272
+ Processing by AllParamController#index as HTML
273
+ Rendered text template (0.0ms)
274
+ Completed 500 Internal Server Error in 12ms (Views: 11.5ms | ActiveRecord: 0.0ms)
275
+  (0.1ms) rollback transaction
276
+  (0.3ms) begin transaction
277
+ Processing by AllParamController#new as HTML
278
+ Rendered text template (0.0ms)
279
+ Completed 500 Internal Server Error in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms)
280
+  (0.1ms) rollback transaction
281
+  (0.1ms) begin transaction
282
+ Processing by AllParamController#index as HTML
283
+ Rendered text template (0.0ms)
284
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
285
+  (0.1ms) rollback transaction
286
+  (0.1ms) begin transaction
287
+ Processing by AllParamController#edit as HTML
288
+ Rendered text template (0.0ms)
289
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
290
+  (0.1ms) rollback transaction
291
+  (0.1ms) begin transaction
292
+ Processing by ArrayParamsController#new as HTML
293
+ Rendered text template (0.0ms)
294
+ Completed 500 Internal Server Error in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
295
+  (0.1ms) rollback transaction
296
+  (0.1ms) begin transaction
297
+ Processing by ArrayParamsController#edit as HTML
298
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
299
+  (0.1ms) rollback transaction
300
+  (0.1ms) begin transaction
301
+ Processing by ArrayParamsController#index as HTML
302
+ Rendered text template (0.0ms)
303
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
304
+  (0.1ms) rollback transaction
305
+  (0.1ms) begin transaction
306
+ Processing by SymbolParamsController#index as HTML
307
+ Rendered text template (0.0ms)
308
+ Completed 500 Internal Server Error in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
309
+  (0.1ms) rollback transaction
310
+  (0.0ms) begin transaction
311
+ Processing by SymbolParamsController#new as HTML
312
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
313
+  (0.1ms) rollback transaction
314
+  (0.3ms) begin transaction
315
+ Processing by SymbolParamsController#index as HTML
316
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
317
+  (0.1ms) rollback transaction
318
+  (0.1ms) begin transaction
319
+ Processing by SymbolParamsController#new as HTML
320
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
321
+  (0.1ms) rollback transaction
322
+  (0.1ms) begin transaction
323
+ Processing by ArrayParamsController#index as HTML
324
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
325
+  (0.1ms) rollback transaction
326
+  (0.1ms) begin transaction
327
+ Processing by ArrayParamsController#new as HTML
328
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
329
+  (0.1ms) rollback transaction
330
+  (0.1ms) begin transaction
331
+ Processing by ArrayParamsController#edit as HTML
332
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
333
+  (0.1ms) rollback transaction
334
+  (0.1ms) begin transaction
335
+ Processing by AllParamController#edit as HTML
336
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
337
+  (0.1ms) rollback transaction
338
+  (0.1ms) begin transaction
339
+ Processing by AllParamController#index as HTML
340
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
341
+  (0.1ms) rollback transaction
342
+  (0.1ms) begin transaction
343
+ Processing by AllParamController#new as HTML
344
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
345
+  (0.1ms) rollback transaction
346
+  (0.3ms) begin transaction
347
+ Processing by SymbolParamsController#new as HTML
348
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
349
+  (0.1ms) rollback transaction
350
+  (0.1ms) begin transaction
351
+ Processing by SymbolParamsController#index as HTML
352
+ Rendered text template (0.0ms)
353
+ Completed 500 Internal Server Error in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
354
+  (0.1ms) rollback transaction
355
+  (0.0ms) begin transaction
356
+ Processing by AllParamController#new as HTML
357
+ Rendered text template (0.0ms)
358
+ Completed 500 Internal Server Error in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
359
+  (0.1ms) rollback transaction
360
+  (0.1ms) begin transaction
361
+ Processing by AllParamController#edit as HTML
362
+ Rendered text template (0.0ms)
363
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
364
+  (0.1ms) rollback transaction
365
+  (0.1ms) begin transaction
366
+ Processing by AllParamController#index as HTML
367
+ Rendered text template (0.0ms)
368
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
369
+  (0.1ms) rollback transaction
370
+  (0.1ms) begin transaction
371
+ Processing by ArrayParamsController#index as HTML
372
+ Rendered text template (0.0ms)
373
+ Completed 500 Internal Server Error in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
374
+  (0.1ms) rollback transaction
375
+  (0.1ms) begin transaction
376
+ Processing by ArrayParamsController#new as HTML
377
+ Rendered text template (0.0ms)
378
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
379
+  (0.1ms) rollback transaction
380
+  (0.1ms) begin transaction
381
+ Processing by ArrayParamsController#edit as HTML
382
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
383
+  (0.1ms) rollback transaction
384
+  (0.3ms) begin transaction
385
+ Processing by AllParamController#index as HTML
386
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
387
+  (0.1ms) rollback transaction
388
+  (0.3ms) begin transaction
389
+ Processing by AllParamController#index as HTML
390
+ Rendered text template (0.1ms)
391
+ Completed 500 Internal Server Error in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
392
+  (0.1ms) rollback transaction
393
+  (0.4ms) begin transaction
394
+ Processing by AllParamController#index as HTML
395
+ Rendered text template (0.0ms)
396
+ Completed 500 Internal Server Error in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
397
+  (0.1ms) rollback transaction
398
+  (0.1ms) begin transaction
399
+ Processing by AllParamController#new as HTML
400
+ Rendered text template (0.0ms)
401
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
402
+  (0.1ms) rollback transaction
403
+  (0.1ms) begin transaction
404
+ Processing by AllParamController#edit as HTML
405
+ Rendered text template (0.0ms)
406
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
407
+  (0.1ms) rollback transaction
408
+  (0.3ms) begin transaction
409
+ Processing by ArrayParamsController#index as HTML
410
+ Rendered text template (0.0ms)
411
+ Completed 500 Internal Server Error in 8ms (Views: 7.3ms | ActiveRecord: 0.0ms)
412
+  (0.1ms) rollback transaction
413
+  (0.1ms) begin transaction
414
+ Processing by ArrayParamsController#new as HTML
415
+ Rendered text template (0.0ms)
416
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
417
+  (0.1ms) rollback transaction
418
+  (0.1ms) begin transaction
419
+ Processing by ArrayParamsController#edit as HTML
420
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
421
+  (0.1ms) rollback transaction
422
+  (0.1ms) begin transaction
423
+ Processing by AllParamController#index as HTML
424
+ Rendered text template (0.0ms)
425
+ Completed 500 Internal Server Error in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
426
+  (0.1ms) rollback transaction
427
+  (0.1ms) begin transaction
428
+ Processing by AllParamController#new as HTML
429
+ Rendered text template (0.0ms)
430
+ Completed 500 Internal Server Error in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
431
+  (0.1ms) rollback transaction
432
+  (0.1ms) begin transaction
433
+ Processing by AllParamController#edit as HTML
434
+ Rendered text template (0.0ms)
435
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
436
+  (0.1ms) rollback transaction
437
+  (0.1ms) begin transaction
438
+ Processing by SymbolParamsController#new as HTML
439
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
440
+  (0.1ms) rollback transaction
441
+  (0.1ms) begin transaction
442
+ Processing by SymbolParamsController#index as HTML
443
+ Rendered text template (0.0ms)
444
+ Completed 500 Internal Server Error in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
445
+  (0.1ms) rollback transaction
446
+  (0.3ms) begin transaction
447
+ Processing by ArrayParamsController#edit as HTML
448
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
449
+  (0.2ms) rollback transaction
450
+  (0.1ms) begin transaction
451
+ Processing by ArrayParamsController#new as HTML
452
+ Rendered text template (0.0ms)
453
+ Completed 500 Internal Server Error in 8ms (Views: 7.3ms | ActiveRecord: 0.0ms)
454
+  (0.1ms) rollback transaction
455
+  (0.1ms) begin transaction
456
+ Processing by ArrayParamsController#index as HTML
457
+ Rendered text template (0.0ms)
458
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
459
+  (0.1ms) rollback transaction
460
+  (0.1ms) begin transaction
461
+ Processing by AllParamController#edit as HTML
462
+ Rendered text template (0.0ms)
463
+ Completed 500 Internal Server Error in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
464
+  (0.2ms) rollback transaction
465
+  (0.2ms) begin transaction
466
+ Processing by AllParamController#index as HTML
467
+ Rendered text template (0.0ms)
468
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
469
+  (0.1ms) rollback transaction
470
+  (0.1ms) begin transaction
471
+ Processing by AllParamController#new as HTML
472
+ Rendered text template (0.0ms)
473
+ Completed 500 Internal Server Error in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
474
+  (0.1ms) rollback transaction
475
+  (0.1ms) begin transaction
476
+ Processing by SymbolParamsController#index as HTML
477
+ Rendered text template (0.0ms)
478
+ Completed 500 Internal Server Error in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
479
+  (0.1ms) rollback transaction
480
+  (0.1ms) begin transaction
481
+ Processing by SymbolParamsController#new as HTML
482
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
483
+  (0.1ms) rollback transaction
484
+  (0.3ms) begin transaction
485
+ Processing by AllParamController#new as HTML
486
+ Rendered text template (0.0ms)
487
+ Completed 500 Internal Server Error in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
488
+  (0.1ms) rollback transaction
489
+  (0.1ms) begin transaction
490
+ Processing by AllParamController#edit as HTML
491
+ Rendered text template (0.0ms)
492
+ Completed 500 Internal Server Error in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
493
+  (0.1ms) rollback transaction
494
+  (0.1ms) begin transaction
495
+ Processing by AllParamController#index as HTML
496
+ Rendered text template (0.0ms)
497
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
498
+  (0.1ms) rollback transaction
499
+  (0.1ms) begin transaction
500
+ Processing by ArrayParamsController#edit as HTML
501
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
502
+  (0.1ms) rollback transaction
503
+  (0.1ms) begin transaction
504
+ Processing by ArrayParamsController#new as HTML
505
+ Rendered text template (0.0ms)
506
+ Completed 500 Internal Server Error in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
507
+  (0.1ms) rollback transaction
508
+  (0.1ms) begin transaction
509
+ Processing by ArrayParamsController#index as HTML
510
+ Rendered text template (0.0ms)
511
+ Completed 500 Internal Server Error in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
512
+  (0.1ms) rollback transaction
513
+  (0.2ms) begin transaction
514
+ Processing by SymbolParamsController#new as HTML
515
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
516
+  (0.4ms) rollback transaction
517
+  (0.3ms) begin transaction
518
+ Processing by SymbolParamsController#index as HTML
519
+ Rendered text template (0.0ms)
520
+ Completed 500 Internal Server Error in 15ms (Views: 14.3ms | ActiveRecord: 0.0ms)
521
+  (0.1ms) rollback transaction
522
+  (0.3ms) begin transaction
523
+ Processing by AllParamController#new as HTML
524
+ Rendered text template (0.0ms)
525
+ Completed 500 Internal Server Error in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms)
526
+  (0.1ms) rollback transaction
527
+  (0.1ms) begin transaction
528
+ Processing by AllParamController#edit as HTML
529
+ Rendered text template (0.0ms)
530
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
531
+  (0.1ms) rollback transaction
532
+  (0.1ms) begin transaction
533
+ Processing by AllParamController#index as HTML
534
+ Rendered text template (0.0ms)
535
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
536
+  (0.1ms) rollback transaction
537
+  (0.1ms) begin transaction
538
+ Processing by ArrayParamsController#new as HTML
539
+ Rendered text template (0.0ms)
540
+ Completed 500 Internal Server Error in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
541
+  (0.1ms) rollback transaction
542
+  (0.1ms) begin transaction
543
+ Processing by ArrayParamsController#edit as HTML
544
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
545
+  (0.1ms) rollback transaction
546
+  (0.1ms) begin transaction
547
+ Processing by ArrayParamsController#index as HTML
548
+ Rendered text template (0.1ms)
549
+ Completed 500 Internal Server Error in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
550
+  (0.1ms) rollback transaction
551
+  (0.1ms) begin transaction
552
+ Processing by SymbolParamsController#index as HTML
553
+ Rendered text template (0.0ms)
554
+ Completed 500 Internal Server Error in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
555
+  (0.1ms) rollback transaction
556
+  (0.1ms) begin transaction
557
+ Processing by SymbolParamsController#new as HTML
558
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
559
+  (0.1ms) rollback transaction
560
+  (0.4ms) begin transaction
561
+ Processing by SymbolParamsController#index as HTML
562
+ Rendered text template (0.0ms)
563
+ Completed 500 Internal Server Error in 14ms (Views: 13.4ms | ActiveRecord: 0.0ms)
564
+  (0.2ms) rollback transaction
565
+  (0.1ms) begin transaction
566
+ Processing by SymbolParamsController#new as HTML
567
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
568
+  (0.1ms) rollback transaction
569
+  (0.1ms) begin transaction
570
+ Processing by ArrayParamsController#new as HTML
571
+ Rendered text template (0.0ms)
572
+ Completed 500 Internal Server Error in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
573
+  (0.1ms) rollback transaction
574
+  (0.1ms) begin transaction
575
+ Processing by ArrayParamsController#edit as HTML
576
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
577
+  (0.3ms) rollback transaction
578
+  (0.2ms) begin transaction
579
+ Processing by ArrayParamsController#index as HTML
580
+ Rendered text template (0.0ms)
581
+ Completed 500 Internal Server Error in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
582
+  (0.1ms) rollback transaction
583
+  (0.2ms) begin transaction
584
+ Processing by AllParamController#edit as HTML
585
+ Rendered text template (0.0ms)
586
+ Completed 500 Internal Server Error in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
587
+  (0.1ms) rollback transaction
588
+  (0.1ms) begin transaction
589
+ Processing by AllParamController#new as HTML
590
+ Rendered text template (0.0ms)
591
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
592
+  (0.1ms) rollback transaction
593
+  (0.1ms) begin transaction
594
+ Processing by AllParamController#index as HTML
595
+ Rendered text template (0.0ms)
596
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
597
+  (0.1ms) rollback transaction
598
+  (0.3ms) begin transaction
599
+ Processing by ArrayParamsController#new as HTML
600
+ Rendered text template (0.0ms)
601
+ Completed 500 Internal Server Error in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
602
+  (0.1ms) rollback transaction
603
+  (0.1ms) begin transaction
604
+ Processing by ArrayParamsController#edit as HTML
605
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
606
+  (0.1ms) rollback transaction
607
+  (0.1ms) begin transaction
608
+ Processing by ArrayParamsController#index as HTML
609
+ Rendered text template (0.0ms)
610
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
611
+  (0.1ms) rollback transaction
612
+  (0.1ms) begin transaction
613
+ Processing by AllParamController#edit as HTML
614
+ Rendered text template (0.0ms)
615
+ Completed 500 Internal Server Error in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
616
+  (0.1ms) rollback transaction
617
+  (0.1ms) begin transaction
618
+ Processing by AllParamController#new as HTML
619
+ Rendered text template (0.0ms)
620
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
621
+  (0.1ms) rollback transaction
622
+  (0.1ms) begin transaction
623
+ Processing by AllParamController#index as HTML
624
+ Rendered text template (0.0ms)
625
+ Completed 500 Internal Server Error in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
626
+  (0.1ms) rollback transaction
627
+  (0.1ms) begin transaction
628
+ Processing by SymbolParamsController#index as HTML
629
+ Rendered text template (0.0ms)
630
+ Completed 500 Internal Server Error in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
631
+  (0.1ms) rollback transaction
632
+  (0.1ms) begin transaction
633
+ Processing by SymbolParamsController#new as HTML
634
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
635
+  (0.1ms) rollback transaction
636
+  (0.5ms) begin transaction
637
+ Processing by SymbolParamsController#index as HTML
638
+ Rendered text template (0.0ms)
639
+ Completed 500 Internal Server Error in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
640
+  (0.1ms) rollback transaction
641
+  (0.1ms) begin transaction
642
+ Processing by SymbolParamsController#new as HTML
643
+  (0.3ms) begin transaction
644
+ Processing by AllParamController#index as HTML
645
+ Rendered text template (0.1ms)
646
+ Completed 500 Internal Server Error in 12ms (Views: 11.4ms | ActiveRecord: 0.0ms)
647
+  (0.1ms) rollback transaction
648
+  (0.6ms) begin transaction
649
+ Processing by AllParamController#edit as HTML
650
+ Rendered text template (0.0ms)
651
+ Completed 500 Internal Server Error in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
652
+  (0.1ms) rollback transaction
653
+  (0.1ms) begin transaction
654
+ Processing by AllParamController#index as HTML
655
+ Rendered text template (0.0ms)
656
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
657
+  (0.1ms) rollback transaction
658
+  (0.1ms) begin transaction
659
+ Processing by AllParamController#new as HTML
660
+ Rendered text template (0.0ms)
661
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
662
+  (0.1ms) rollback transaction
663
+  (0.3ms) begin transaction
664
+ Processing by AllParamController#index as HTML
665
+ Rendered text template (0.0ms)
666
+ Completed 500 Internal Server Error in 10ms (Views: 9.7ms | ActiveRecord: 0.0ms)
667
+  (0.1ms) rollback transaction
668
+  (0.1ms) begin transaction
669
+ Processing by AllParamController#new as HTML
670
+ Rendered text template (0.0ms)
671
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
672
+  (0.1ms) rollback transaction
673
+  (0.0ms) begin transaction
674
+ Processing by AllParamController#edit as HTML
675
+ Rendered text template (0.0ms)
676
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
677
+  (0.1ms) rollback transaction
678
+  (0.1ms) begin transaction
679
+ Processing by ArrayParamsController#index as HTML
680
+ Rendered text template (0.0ms)
681
+ Completed 500 Internal Server Error in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
682
+  (0.2ms) rollback transaction
683
+  (0.1ms) begin transaction
684
+ Processing by ArrayParamsController#new as HTML
685
+ Rendered text template (0.0ms)
686
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
687
+  (0.1ms) rollback transaction
688
+  (0.1ms) begin transaction
689
+ Processing by ArrayParamsController#edit as HTML
690
+ Completed 500 Internal Server Error in 14223ms (ActiveRecord: 0.0ms)
691
+  (0.1ms) rollback transaction
692
+  (0.1ms) begin transaction
693
+ Processing by SymbolParamsController#index as HTML
694
+ Rendered text template (0.0ms)
695
+ Completed 500 Internal Server Error in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
696
+  (0.1ms) rollback transaction
697
+  (0.1ms) begin transaction
698
+ Processing by SymbolParamsController#new as HTML
699
+ Completed 500 Internal Server Error in 4798ms (ActiveRecord: 0.0ms)
700
+  (0.2ms) rollback transaction
701
+  (0.3ms) begin transaction
702
+ Processing by SymbolParamsController#index as HTML
703
+ Rendered text template (0.0ms)
704
+ Completed 500 Internal Server Error in 11ms (Views: 10.7ms | ActiveRecord: 0.0ms)
705
+  (0.1ms) rollback transaction
706
+  (0.1ms) begin transaction
707
+ Processing by SymbolParamsController#new as HTML
708
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
709
+  (0.1ms) rollback transaction
710
+  (0.1ms) begin transaction
711
+ Processing by AllParamController#new as HTML
712
+ Rendered text template (0.0ms)
713
+ Completed 500 Internal Server Error in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
714
+  (0.1ms) rollback transaction
715
+  (0.1ms) begin transaction
716
+ Processing by AllParamController#edit as HTML
717
+ Rendered text template (0.0ms)
718
+ Completed 500 Internal Server Error in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
719
+  (0.1ms) rollback transaction
720
+  (0.1ms) begin transaction
721
+ Processing by AllParamController#index as HTML
722
+ Rendered text template (0.0ms)
723
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
724
+  (0.1ms) rollback transaction
725
+  (0.1ms) begin transaction
726
+ Processing by ArrayParamsController#new as HTML
727
+ Rendered text template (0.0ms)
728
+ Completed 500 Internal Server Error in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
729
+  (0.1ms) rollback transaction
730
+  (0.1ms) begin transaction
731
+ Processing by ArrayParamsController#index as HTML
732
+ Rendered text template (0.0ms)
733
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
734
+  (0.1ms) rollback transaction
735
+  (0.1ms) begin transaction
736
+ Processing by ArrayParamsController#edit as HTML
737
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
738
+  (0.1ms) rollback transaction
739
+  (0.3ms) begin transaction
740
+ Processing by ArrayParamsController#index as HTML
741
+ Rendered text template (0.0ms)
742
+ Completed 500 Internal Server Error in 30ms (Views: 29.3ms | ActiveRecord: 0.0ms)
743
+  (0.1ms) rollback transaction
744
+  (0.1ms) begin transaction
745
+ Processing by ArrayParamsController#new as HTML
746
+ Rendered text template (0.0ms)
747
+ Completed 500 Internal Server Error in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
748
+  (0.1ms) rollback transaction
749
+  (0.1ms) begin transaction
750
+ Processing by ArrayParamsController#edit as HTML
751
+ Completed 500 Internal Server Error in 3178ms (ActiveRecord: 0.0ms)
752
+  (0.2ms) rollback transaction
753
+  (0.1ms) begin transaction
754
+ Processing by AllParamController#new as HTML
755
+ Rendered text template (0.0ms)
756
+ Completed 500 Internal Server Error in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
757
+  (0.1ms) rollback transaction
758
+  (0.1ms) begin transaction
759
+ Processing by AllParamController#edit as HTML
760
+ Rendered text template (0.0ms)
761
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
762
+  (0.1ms) rollback transaction
763
+  (0.1ms) begin transaction
764
+ Processing by AllParamController#index as HTML
765
+ Rendered text template (0.0ms)
766
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
767
+  (0.1ms) rollback transaction
768
+  (0.1ms) begin transaction
769
+ Processing by SymbolParamsController#index as HTML
770
+ Rendered text template (0.0ms)
771
+ Completed 500 Internal Server Error in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
772
+  (0.1ms) rollback transaction
773
+  (0.1ms) begin transaction
774
+ Processing by SymbolParamsController#new as HTML
775
+ Completed 500 Internal Server Error in 1431ms (ActiveRecord: 0.0ms)
776
+  (0.1ms) rollback transaction
777
+  (0.5ms) begin transaction
778
+ Processing by SymbolParamsController#index as HTML
779
+ Rendered text template (0.0ms)
780
+ Completed 500 Internal Server Error in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
781
+  (0.1ms) rollback transaction
782
+  (0.1ms) begin transaction
783
+ Processing by SymbolParamsController#new as HTML
784
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
785
+  (0.1ms) rollback transaction
786
+  (0.1ms) begin transaction
787
+ Processing by ArrayParamsController#edit as HTML
788
+ Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
789
+  (0.1ms) rollback transaction
790
+  (0.1ms) begin transaction
791
+ Processing by ArrayParamsController#index as HTML
792
+ Rendered text template (0.0ms)
793
+ Completed 500 Internal Server Error in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
794
+  (0.1ms) rollback transaction
795
+  (0.1ms) begin transaction
796
+ Processing by ArrayParamsController#new as HTML
797
+ Rendered text template (0.0ms)
798
+ Completed 500 Internal Server Error in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
799
+  (0.1ms) rollback transaction
800
+  (0.1ms) begin transaction
801
+ Processing by AllParamController#index as HTML
802
+ Rendered text template (0.0ms)
803
+ Completed 500 Internal Server Error in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
804
+  (0.1ms) rollback transaction
805
+  (0.1ms) begin transaction
806
+ Processing by AllParamController#new as HTML
807
+ Rendered text template (0.0ms)
808
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
809
+  (0.1ms) rollback transaction
810
+  (0.1ms) begin transaction
811
+ Processing by AllParamController#edit as HTML
812
+ Rendered text template (0.0ms)
813
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
814
+  (0.1ms) rollback transaction
815
+  (0.3ms) begin transaction
816
+ Processing by AllParamController#new as HTML
817
+ Rendered text template (0.0ms)
818
+ Completed 500 Internal Server Error in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
819
+  (0.1ms) rollback transaction
820
+  (0.1ms) begin transaction
821
+ Processing by AllParamController#index as HTML
822
+ Rendered text template (0.0ms)
823
+ Completed 500 Internal Server Error in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
824
+  (0.1ms) rollback transaction
825
+  (0.1ms) begin transaction
826
+ Processing by AllParamController#edit as HTML
827
+ Rendered text template (0.0ms)
828
+ Completed 500 Internal Server Error in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
829
+  (0.1ms) rollback transaction
830
+  (0.1ms) begin transaction
831
+ Processing by SymbolParamsController#index as HTML
832
+ Rendered text template (0.0ms)
833
+ Completed 500 Internal Server Error in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
834
+  (0.1ms) rollback transaction
835
+  (0.2ms) begin transaction
836
+ Processing by SymbolParamsController#new as HTML
837
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
838
+  (0.1ms) rollback transaction
839
+  (0.1ms) begin transaction
840
+ Processing by ArrayParamsController#edit as HTML
841
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
842
+  (0.1ms) rollback transaction
843
+  (0.1ms) begin transaction
844
+ Processing by ArrayParamsController#index as HTML
845
+ Rendered text template (0.0ms)
846
+ Completed 500 Internal Server Error in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
847
+  (0.1ms) rollback transaction
848
+  (0.1ms) begin transaction
849
+ Processing by ArrayParamsController#new as HTML
850
+ Rendered text template (0.0ms)
851
+ Completed 500 Internal Server Error in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
852
+  (0.3ms) rollback transaction
853
+  (0.3ms) begin transaction
854
+ Processing by ArrayParamsController#index as HTML
855
+ Rendered text template (0.0ms)
856
+ Completed 500 Internal Server Error in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms)
857
+  (0.1ms) rollback transaction
858
+  (0.1ms) begin transaction
859
+ Processing by ArrayParamsController#edit as HTML
860
+ Rendered text template (0.0ms)
861
+ Completed 500 Internal Server Error in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
862
+  (0.1ms) rollback transaction
863
+  (0.2ms) begin transaction
864
+ Processing by ArrayParamsController#new as HTML
865
+ Rendered text template (0.0ms)
866
+ Completed 500 Internal Server Error in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
867
+  (0.1ms) rollback transaction
868
+  (0.1ms) begin transaction
869
+ Processing by SymbolParamsController#index as HTML
870
+ Rendered text template (0.0ms)
871
+ Completed 500 Internal Server Error in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
872
+  (0.1ms) rollback transaction
873
+  (0.1ms) begin transaction
874
+ Processing by SymbolParamsController#new as HTML
875
+ Rendered text template (0.0ms)
876
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
877
+  (0.1ms) rollback transaction
878
+  (0.1ms) begin transaction
879
+ Processing by AllParamController#index as HTML
880
+ Rendered text template (0.0ms)
881
+ Completed 500 Internal Server Error in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
882
+  (0.1ms) rollback transaction
883
+  (0.1ms) begin transaction
884
+ Processing by AllParamController#edit as HTML
885
+ Rendered text template (0.0ms)
886
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
887
+  (0.1ms) rollback transaction
888
+  (0.1ms) begin transaction
889
+ Processing by AllParamController#new as HTML
890
+ Rendered text template (0.0ms)
891
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
892
+  (0.1ms) rollback transaction
893
+  (0.3ms) begin transaction
894
+ Processing by ArrayParamsController#index as HTML
895
+ Rendered text template (0.0ms)
896
+ Completed 500 Internal Server Error in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
897
+  (0.1ms) rollback transaction
898
+  (0.1ms) begin transaction
899
+ Processing by ArrayParamsController#new as HTML
900
+ Rendered text template (0.0ms)
901
+ Completed 500 Internal Server Error in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
902
+  (0.1ms) rollback transaction
903
+  (0.1ms) begin transaction
904
+ Processing by ArrayParamsController#edit as HTML
905
+ Rendered text template (0.0ms)
906
+ Completed 500 Internal Server Error in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
907
+  (0.1ms) rollback transaction
908
+  (0.1ms) begin transaction
909
+ Processing by SymbolParamsController#new as HTML
910
+ Rendered text template (0.0ms)
911
+ Completed 500 Internal Server Error in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
912
+  (0.1ms) rollback transaction
913
+  (0.1ms) begin transaction
914
+ Processing by SymbolParamsController#index as HTML
915
+ Rendered text template (0.0ms)
916
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
917
+  (0.1ms) rollback transaction
918
+  (0.1ms) begin transaction
919
+ Processing by AllParamController#new as HTML
920
+ Rendered text template (0.1ms)
921
+ Completed 500 Internal Server Error in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
922
+  (0.1ms) rollback transaction
923
+  (0.2ms) begin transaction
924
+ Processing by AllParamController#index as HTML
925
+ Rendered text template (0.0ms)
926
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
927
+  (0.1ms) rollback transaction
928
+  (0.1ms) begin transaction
929
+ Processing by AllParamController#edit as HTML
930
+ Rendered text template (0.1ms)
931
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
932
+  (0.1ms) rollback transaction
933
+  (0.4ms) begin transaction
934
+ Processing by ArrayParamsController#index as HTML
935
+ Rendered text template (0.1ms)
936
+ Completed 500 Internal Server Error in 19120ms (Views: 14.5ms | ActiveRecord: 0.0ms)
937
+  (0.1ms) rollback transaction
938
+  (0.1ms) begin transaction
939
+ Processing by ArrayParamsController#edit as HTML
940
+ Rendered text template (0.0ms)
941
+ Completed 500 Internal Server Error in 1191ms (Views: 0.6ms | ActiveRecord: 0.0ms)
942
+  (0.1ms) rollback transaction
943
+  (0.1ms) begin transaction
944
+ Processing by ArrayParamsController#new as HTML
945
+ Rendered text template (0.1ms)
946
+ Completed 500 Internal Server Error in 3782ms (Views: 1.0ms | ActiveRecord: 0.0ms)
947
+  (0.1ms) rollback transaction
948
+  (0.1ms) begin transaction
949
+ Processing by AllParamController#index as HTML
950
+ Rendered text template (0.0ms)
951
+ Completed 500 Internal Server Error in 1896ms (Views: 5.5ms | ActiveRecord: 0.0ms)
952
+  (0.1ms) rollback transaction
953
+  (0.2ms) begin transaction
954
+ Processing by AllParamController#edit as HTML
955
+ Rendered text template (0.0ms)
956
+ Completed 500 Internal Server Error in 1231ms (Views: 0.5ms | ActiveRecord: 0.0ms)
957
+  (0.1ms) rollback transaction
958
+  (0.1ms) begin transaction
959
+ Processing by AllParamController#new as HTML
960
+ Rendered text template (0.0ms)
961
+ Completed 500 Internal Server Error in 995ms (Views: 0.5ms | ActiveRecord: 0.0ms)
962
+  (0.1ms) rollback transaction
963
+  (0.1ms) begin transaction
964
+ Processing by SymbolParamsController#index as HTML
965
+ Rendered text template (0.0ms)
966
+ Completed 500 Internal Server Error in 1034ms (Views: 2.7ms | ActiveRecord: 0.0ms)
967
+  (0.1ms) rollback transaction
968
+  (0.1ms) begin transaction
969
+ Processing by SymbolParamsController#new as HTML
970
+ Rendered text template (0.1ms)
971
+ Completed 500 Internal Server Error in 1483ms (Views: 0.7ms | ActiveRecord: 0.0ms)
972
+  (0.1ms) rollback transaction
973
+  (0.3ms) begin transaction
974
+ Processing by AllParamController#edit as HTML
975
+ Rendered text template (0.0ms)
976
+ Completed 500 Internal Server Error in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms)
977
+  (0.1ms) rollback transaction
978
+  (0.1ms) begin transaction
979
+ Processing by AllParamController#index as HTML
980
+ Rendered text template (0.0ms)
981
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
982
+  (0.1ms) rollback transaction
983
+  (0.1ms) begin transaction
984
+ Processing by AllParamController#new as HTML
985
+ Rendered text template (0.0ms)
986
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
987
+  (0.1ms) rollback transaction
988
+  (0.1ms) begin transaction
989
+ Processing by SymbolParamsController#index as HTML
990
+ Rendered text template (0.0ms)
991
+ Completed 500 Internal Server Error in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
992
+  (0.1ms) rollback transaction
993
+  (0.1ms) begin transaction
994
+ Processing by SymbolParamsController#new as HTML
995
+ Rendered text template (0.0ms)
996
+ Completed 500 Internal Server Error in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
997
+  (0.1ms) rollback transaction
998
+  (0.1ms) begin transaction
999
+ Processing by ArrayParamsController#index as HTML
1000
+ Rendered text template (0.1ms)
1001
+ Completed 500 Internal Server Error in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
1002
+  (0.1ms) rollback transaction
1003
+  (0.1ms) begin transaction
1004
+ Processing by ArrayParamsController#new as HTML
1005
+ Rendered text template (0.0ms)
1006
+ Completed 500 Internal Server Error in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1007
+  (0.1ms) rollback transaction
1008
+  (0.1ms) begin transaction
1009
+ Processing by ArrayParamsController#edit as HTML
1010
+ Rendered text template (0.0ms)
1011
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1012
+  (0.1ms) rollback transaction
1013
+  (0.4ms) begin transaction
1014
+ Processing by ArrayParamsController#edit as HTML
1015
+ Rendered text template (0.0ms)
1016
+ Completed 500 Internal Server Error in 14ms (Views: 13.5ms | ActiveRecord: 0.0ms)
1017
+  (0.1ms) rollback transaction
1018
+  (0.3ms) begin transaction
1019
+ Processing by ArrayParamsController#edit as HTML
1020
+ Rendered text template (0.0ms)
1021
+ Completed 500 Internal Server Error in 9392ms (Views: 8.5ms | ActiveRecord: 0.0ms)
1022
+  (0.1ms) rollback transaction
1023
+  (0.6ms) begin transaction
1024
+ Processing by ArrayParamsController#edit as HTML
1025
+ Rendered text template (0.0ms)
1026
+ Completed 500 Internal Server Error in 36505ms (Views: 10.2ms | ActiveRecord: 0.0ms)
1027
+  (0.1ms) rollback transaction
1028
+  (0.5ms) begin transaction
1029
+ Processing by ArrayParamsController#edit as HTML
1030
+ Rendered text template (0.1ms)
1031
+ Completed 500 Internal Server Error in 66378ms (Views: 18.5ms | ActiveRecord: 0.0ms)
1032
+  (0.1ms) rollback transaction
1033
+  (0.3ms) begin transaction
1034
+ Processing by ArrayParamsController#edit as HTML
1035
+ Rendered text template (0.0ms)
1036
+ Completed 500 Internal Server Error in 29247ms (Views: 10.7ms | ActiveRecord: 0.0ms)
1037
+  (0.1ms) rollback transaction
1038
+  (0.4ms) begin transaction
1039
+ Processing by ArrayParamsController#edit as HTML
1040
+ Completed 500 Internal Server Error in 643ms (ActiveRecord: 0.0ms)
1041
+  (0.2ms) rollback transaction
1042
+  (0.3ms) begin transaction
1043
+ Processing by AllParamController#edit as HTML
1044
+ Rendered text template (0.0ms)
1045
+ Completed 500 Internal Server Error in 1560ms (Views: 19.9ms | ActiveRecord: 0.0ms)
1046
+  (0.1ms) rollback transaction
1047
+  (0.1ms) begin transaction
1048
+ Processing by AllParamController#new as HTML
1049
+ Rendered text template (0.1ms)
1050
+ Completed 500 Internal Server Error in 398ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1051
+  (0.1ms) rollback transaction
1052
+  (0.1ms) begin transaction
1053
+ Processing by AllParamController#index as HTML
1054
+ Rendered text template (0.0ms)
1055
+ Completed 500 Internal Server Error in 392ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1056
+  (0.1ms) rollback transaction
1057
+  (0.2ms) begin transaction
1058
+ Processing by SymbolParamsController#new as HTML
1059
+ Completed 500 Internal Server Error in 353ms (ActiveRecord: 0.0ms)
1060
+  (0.1ms) rollback transaction
1061
+  (0.1ms) begin transaction
1062
+ Processing by SymbolParamsController#index as HTML
1063
+ Rendered text template (0.0ms)
1064
+ Completed 500 Internal Server Error in 435ms (Views: 4.2ms | ActiveRecord: 0.0ms)
1065
+  (0.1ms) rollback transaction
1066
+  (0.1ms) begin transaction
1067
+ Processing by ArrayParamsController#new as HTML
1068
+ Rendered text template (0.1ms)
1069
+ Completed 500 Internal Server Error in 681ms (Views: 4.8ms | ActiveRecord: 0.0ms)
1070
+  (0.1ms) rollback transaction
1071
+  (0.1ms) begin transaction
1072
+ Processing by ArrayParamsController#edit as HTML
1073
+ Completed 500 Internal Server Error in 413ms (ActiveRecord: 0.0ms)
1074
+  (0.1ms) rollback transaction
1075
+  (0.1ms) begin transaction
1076
+ Processing by ArrayParamsController#index as HTML
1077
+ Rendered text template (0.0ms)
1078
+ Completed 500 Internal Server Error in 346ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1079
+  (0.1ms) rollback transaction
1080
+  (0.3ms) begin transaction
1081
+ Processing by AllParamController#index as HTML
1082
+ Rendered text template (0.0ms)
1083
+ Completed 500 Internal Server Error in 8ms (Views: 7.3ms | ActiveRecord: 0.0ms)
1084
+  (0.1ms) rollback transaction
1085
+  (0.1ms) begin transaction
1086
+ Processing by AllParamController#new as HTML
1087
+ Rendered text template (0.0ms)
1088
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1089
+  (0.1ms) rollback transaction
1090
+  (0.1ms) begin transaction
1091
+ Processing by AllParamController#edit as HTML
1092
+ Rendered text template (0.0ms)
1093
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1094
+  (0.1ms) rollback transaction
1095
+  (0.1ms) begin transaction
1096
+  (0.1ms) rollback transaction
1097
+  (0.2ms) begin transaction
1098
+ Processing by SymbolParamsController#index as HTML
1099
+ Rendered text template (0.0ms)
1100
+ Completed 500 Internal Server Error in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
1101
+  (0.1ms) rollback transaction
1102
+  (0.1ms) begin transaction
1103
+ Processing by ArrayParamsController#index as HTML
1104
+ Rendered text template (0.0ms)
1105
+ Completed 500 Internal Server Error in 9ms (Views: 8.2ms | ActiveRecord: 0.0ms)
1106
+  (0.1ms) rollback transaction
1107
+  (0.4ms) begin transaction
1108
+  (0.1ms) rollback transaction
1109
+  (0.1ms) begin transaction
1110
+ Processing by ArrayParamsController#new as HTML
1111
+ Rendered text template (0.0ms)
1112
+ Completed 500 Internal Server Error in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1113
+  (0.1ms) rollback transaction
1114
+  (0.4ms) begin transaction
1115
+ Processing by ArrayParamsController#edit as HTML
1116
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1117
+  (0.1ms) rollback transaction
1118
+  (0.2ms) begin transaction
1119
+ Processing by ArrayParamsController#index as HTML
1120
+ Rendered text template (0.0ms)
1121
+ Completed 500 Internal Server Error in 15ms (Views: 14.4ms | ActiveRecord: 0.0ms)
1122
+  (0.1ms) rollback transaction
1123
+  (0.1ms) begin transaction
1124
+ Processing by ArrayParamsController#new as HTML
1125
+ Rendered text template (0.0ms)
1126
+ Completed 500 Internal Server Error in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1127
+  (0.1ms) rollback transaction
1128
+  (0.1ms) begin transaction
1129
+ Processing by SymbolParamsController#index as HTML
1130
+ Rendered text template (0.0ms)
1131
+ Completed 500 Internal Server Error in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
1132
+  (0.1ms) rollback transaction
1133
+  (0.1ms) begin transaction
1134
+ Processing by SymbolParamsController#new as HTML
1135
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1136
+  (0.1ms) rollback transaction
1137
+  (0.1ms) begin transaction
1138
+ Processing by AllParamController#index as HTML
1139
+ Rendered text template (0.0ms)
1140
+ Completed 500 Internal Server Error in 5ms (Views: 4.1ms | ActiveRecord: 0.0ms)
1141
+  (0.1ms) rollback transaction
1142
+  (0.1ms) begin transaction
1143
+ Processing by AllParamController#edit as HTML
1144
+ Rendered text template (0.0ms)
1145
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1146
+  (0.1ms) rollback transaction
1147
+  (0.5ms) begin transaction
1148
+ Processing by AllParamController#new as HTML
1149
+ Rendered text template (0.0ms)
1150
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1151
+  (0.1ms) rollback transaction
1152
+  (0.4ms) begin transaction
1153
+ Processing by AllParamController#edit as HTML
1154
+ Rendered text template (0.0ms)
1155
+ Completed 500 Internal Server Error in 8ms (Views: 7.9ms | ActiveRecord: 0.0ms)
1156
+  (0.1ms) rollback transaction
1157
+  (0.1ms) begin transaction
1158
+ Processing by AllParamController#index as HTML
1159
+ Rendered text template (0.0ms)
1160
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1161
+  (0.1ms) rollback transaction
1162
+  (0.1ms) begin transaction
1163
+ Processing by AllParamController#new as HTML
1164
+ Rendered text template (0.0ms)
1165
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1166
+  (0.1ms) rollback transaction
1167
+  (0.2ms) begin transaction
1168
+ Processing by SymbolParamsController#new as HTML
1169
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1170
+  (0.1ms) rollback transaction
1171
+  (0.1ms) begin transaction
1172
+ Processing by SymbolParamsController#index as HTML
1173
+ Rendered text template (0.0ms)
1174
+ Completed 500 Internal Server Error in 10ms (Views: 10.1ms | ActiveRecord: 0.0ms)
1175
+  (0.1ms) rollback transaction
1176
+  (0.1ms) begin transaction
1177
+ Processing by ArrayParamsController#index as HTML
1178
+ Rendered text template (0.0ms)
1179
+ Completed 500 Internal Server Error in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
1180
+  (0.1ms) rollback transaction
1181
+  (0.1ms) begin transaction
1182
+ Processing by ArrayParamsController#edit as HTML
1183
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1184
+  (0.1ms) rollback transaction
1185
+  (0.1ms) begin transaction
1186
+ Processing by ArrayParamsController#new as HTML
1187
+ Rendered text template (0.0ms)
1188
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1189
+  (0.1ms) rollback transaction
1190
+  (0.3ms) begin transaction
1191
+ Processing by ArrayParamsController#edit as HTML
1192
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1193
+  (0.1ms) rollback transaction
1194
+  (0.1ms) begin transaction
1195
+ Processing by ArrayParamsController#new as HTML
1196
+ Rendered text template (0.0ms)
1197
+ Completed 500 Internal Server Error in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
1198
+  (0.1ms) rollback transaction
1199
+  (0.1ms) begin transaction
1200
+ Processing by ArrayParamsController#index as HTML
1201
+ Rendered text template (0.0ms)
1202
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1203
+  (0.1ms) rollback transaction
1204
+  (0.1ms) begin transaction
1205
+ Processing by AllParamController#edit as HTML
1206
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1207
+  (0.1ms) rollback transaction
1208
+  (0.1ms) begin transaction
1209
+ Processing by AllParamController#index as HTML
1210
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1211
+  (0.1ms) rollback transaction
1212
+  (0.1ms) begin transaction
1213
+ Processing by AllParamController#new as HTML
1214
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1215
+  (0.1ms) rollback transaction
1216
+  (0.1ms) begin transaction
1217
+ Processing by AllParamController#index as HTML
1218
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1219
+  (0.1ms) rollback transaction
1220
+  (0.1ms) begin transaction
1221
+ Processing by AllParamController#edit as HTML
1222
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1223
+  (0.1ms) rollback transaction
1224
+  (0.1ms) begin transaction
1225
+ Processing by AllParamController#new as HTML
1226
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
1227
+  (0.2ms) rollback transaction
1228
+  (0.1ms) begin transaction
1229
+ Processing by SymbolParamsController#index as HTML
1230
+ Rendered text template (0.0ms)
1231
+ Completed 500 Internal Server Error in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
1232
+  (0.1ms) rollback transaction
1233
+  (0.1ms) begin transaction
1234
+ Processing by SymbolParamsController#new as HTML
1235
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1236
+  (0.1ms) rollback transaction
1237
+  (0.3ms) begin transaction
1238
+ Processing by SymbolParamsController#new as HTML
1239
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1240
+  (0.1ms) rollback transaction
1241
+  (0.1ms) begin transaction
1242
+ Processing by SymbolParamsController#index as HTML
1243
+ Rendered text template (0.0ms)
1244
+ Completed 500 Internal Server Error in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
1245
+  (0.1ms) rollback transaction
1246
+  (0.1ms) begin transaction
1247
+ Processing by ArrayParamsController#index as HTML
1248
+ Rendered text template (0.1ms)
1249
+ Completed 500 Internal Server Error in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
1250
+  (0.2ms) rollback transaction
1251
+  (0.1ms) begin transaction
1252
+ Processing by ArrayParamsController#edit as HTML
1253
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1254
+  (0.1ms) rollback transaction
1255
+  (0.1ms) begin transaction
1256
+ Processing by ArrayParamsController#new as HTML
1257
+ Rendered text template (0.0ms)
1258
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1259
+  (0.1ms) rollback transaction
1260
+  (0.1ms) begin transaction
1261
+ Processing by AllParamController#edit as HTML
1262
+ Rendered text template (0.0ms)
1263
+ Completed 500 Internal Server Error in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
1264
+  (0.1ms) rollback transaction
1265
+  (0.1ms) begin transaction
1266
+ Processing by AllParamController#new as HTML
1267
+ Rendered text template (0.0ms)
1268
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1269
+  (0.1ms) rollback transaction
1270
+  (0.1ms) begin transaction
1271
+ Processing by AllParamController#index as HTML
1272
+ Rendered text template (0.0ms)
1273
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1274
+  (0.1ms) rollback transaction
1275
+  (0.4ms) begin transaction
1276
+ Processing by AllParamController#edit as HTML
1277
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1278
+  (0.1ms) rollback transaction
1279
+  (0.4ms) begin transaction
1280
+ Processing by AllParamController#edit as HTML
1281
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1282
+  (0.1ms) rollback transaction
1283
+  (0.1ms) begin transaction
1284
+ Processing by AllParamController#new as HTML
1285
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1286
+  (0.1ms) rollback transaction
1287
+  (0.1ms) begin transaction
1288
+ Processing by AllParamController#index as HTML
1289
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1290
+  (0.1ms) rollback transaction
1291
+  (0.1ms) begin transaction
1292
+ Processing by AllParamController#edit as HTML
1293
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1294
+  (0.1ms) rollback transaction
1295
+  (0.1ms) begin transaction
1296
+ Processing by AllParamController#index as HTML
1297
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1298
+  (0.1ms) rollback transaction
1299
+  (0.1ms) begin transaction
1300
+ Processing by AllParamController#new as HTML
1301
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1302
+  (0.1ms) rollback transaction
1303
+  (0.4ms) begin transaction
1304
+ Processing by AllParamController#new as HTML
1305
+ Rendered text template (0.0ms)
1306
+ Completed 500 Internal Server Error in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
1307
+  (0.2ms) rollback transaction
1308
+  (0.1ms) begin transaction
1309
+ Processing by AllParamController#edit as HTML
1310
+ Rendered text template (0.0ms)
1311
+ Completed 500 Internal Server Error in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1312
+  (0.1ms) rollback transaction
1313
+  (0.1ms) begin transaction
1314
+ Processing by AllParamController#index as HTML
1315
+ Rendered text template (0.0ms)
1316
+ Completed 500 Internal Server Error in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1317
+  (0.1ms) rollback transaction
1318
+  (0.4ms) begin transaction
1319
+ Processing by AllParamController#edit as HTML
1320
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1321
+  (0.1ms) rollback transaction
1322
+  (0.1ms) begin transaction
1323
+ Processing by AllParamController#new as HTML
1324
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1325
+  (0.1ms) rollback transaction
1326
+  (0.1ms) begin transaction
1327
+ Processing by AllParamController#index as HTML
1328
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1329
+  (0.1ms) rollback transaction
1330
+  (0.1ms) begin transaction
1331
+ Processing by AllParamController#index as HTML
1332
+ Rendered text template (0.0ms)
1333
+ Completed 500 Internal Server Error in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
1334
+  (0.1ms) rollback transaction
1335
+  (0.1ms) begin transaction
1336
+ Processing by AllParamController#new as HTML
1337
+ Rendered text template (0.1ms)
1338
+ Completed 500 Internal Server Error in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1339
+  (0.1ms) rollback transaction
1340
+  (0.4ms) begin transaction
1341
+ Processing by AllParamController#edit as HTML
1342
+ Rendered text template (0.0ms)
1343
+ Completed 500 Internal Server Error in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1344
+  (0.1ms) rollback transaction
1345
+  (0.3ms) begin transaction
1346
+  (0.1ms) rollback transaction
1347
+  (0.1ms) begin transaction
1348
+  (0.1ms) rollback transaction
1349
+  (0.1ms) begin transaction
1350
+ Processing by NoSetupController#index as HTML
1351
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1352
+  (0.1ms) rollback transaction
1353
+  (0.3ms) begin transaction
1354
+ Processing by NoSetupController#index as HTML
1355
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1356
+  (0.1ms) rollback transaction
1357
+  (0.4ms) begin transaction
1358
+ Processing by NoSetupController#index as HTML
1359
+ Rendered text template (0.0ms)
1360
+ Completed 500 Internal Server Error in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
1361
+  (0.1ms) rollback transaction
1362
+  (0.4ms) begin transaction
1363
+ Processing by AllParamController#new as HTML
1364
+ Rendered text template (0.0ms)
1365
+ Completed 500 Internal Server Error in 9ms (Views: 8.2ms | ActiveRecord: 0.0ms)
1366
+  (0.1ms) rollback transaction
1367
+  (0.1ms) begin transaction
1368
+ Processing by AllParamController#index as HTML
1369
+ Rendered text template (0.0ms)
1370
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1371
+  (0.1ms) rollback transaction
1372
+  (0.1ms) begin transaction
1373
+ Processing by AllParamController#edit as HTML
1374
+ Rendered text template (0.1ms)
1375
+ Completed 500 Internal Server Error in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1376
+  (0.1ms) rollback transaction
1377
+  (0.1ms) begin transaction
1378
+ Processing by AllParamController#index as HTML
1379
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1380
+  (0.1ms) rollback transaction
1381
+  (0.1ms) begin transaction
1382
+ Processing by AllParamController#new as HTML
1383
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1384
+  (0.1ms) rollback transaction
1385
+  (0.1ms) begin transaction
1386
+ Processing by AllParamController#edit as HTML
1387
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1388
+  (0.1ms) rollback transaction
1389
+  (0.1ms) begin transaction
1390
+ Processing by SymbolParamsController#new as HTML
1391
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
1392
+  (0.1ms) rollback transaction
1393
+  (0.1ms) begin transaction
1394
+ Processing by SymbolParamsController#index as HTML
1395
+ Rendered text template (0.0ms)
1396
+ Completed 500 Internal Server Error in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
1397
+  (0.1ms) rollback transaction
1398
+  (0.1ms) begin transaction
1399
+ Processing by ArrayParamsController#new as HTML
1400
+ Rendered text template (0.0ms)
1401
+ Completed 500 Internal Server Error in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
1402
+  (0.1ms) rollback transaction
1403
+  (0.1ms) begin transaction
1404
+ Processing by ArrayParamsController#index as HTML
1405
+ Rendered text template (0.0ms)
1406
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1407
+  (0.1ms) rollback transaction
1408
+  (0.1ms) begin transaction
1409
+ Processing by ArrayParamsController#edit as HTML
1410
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
1411
+  (0.1ms) rollback transaction
1412
+  (0.1ms) begin transaction
1413
+ Processing by NoSetupController#index as HTML
1414
+ Rendered text template (0.0ms)
1415
+ Completed 500 Internal Server Error in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
1416
+  (0.1ms) rollback transaction
1417
+  (0.3ms) begin transaction
1418
+ Processing by SymbolParamsController#index as HTML
1419
+ Rendered text template (0.0ms)
1420
+ Completed 500 Internal Server Error in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
1421
+  (0.2ms) rollback transaction
1422
+  (0.2ms) begin transaction
1423
+ Processing by SymbolParamsController#new as HTML
1424
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1425
+  (0.1ms) rollback transaction
1426
+  (0.1ms) begin transaction
1427
+ Processing by NoSetupController#index as HTML
1428
+ Rendered text template (0.1ms)
1429
+ Completed 500 Internal Server Error in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
1430
+  (0.1ms) rollback transaction
1431
+  (0.1ms) begin transaction
1432
+ Processing by ArrayParamsController#new as HTML
1433
+ Rendered text template (0.0ms)
1434
+ Completed 500 Internal Server Error in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
1435
+  (0.1ms) rollback transaction
1436
+  (0.1ms) begin transaction
1437
+ Processing by ArrayParamsController#edit as HTML
1438
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1439
+  (0.1ms) rollback transaction
1440
+  (0.1ms) begin transaction
1441
+ Processing by ArrayParamsController#index as HTML
1442
+ Rendered text template (0.0ms)
1443
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1444
+  (0.1ms) rollback transaction
1445
+  (0.1ms) begin transaction
1446
+ Processing by AllParamController#new as HTML
1447
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1448
+  (0.1ms) rollback transaction
1449
+  (0.1ms) begin transaction
1450
+ Processing by AllParamController#edit as HTML
1451
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1452
+  (0.1ms) rollback transaction
1453
+  (0.1ms) begin transaction
1454
+ Processing by AllParamController#index as HTML
1455
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1456
+  (0.1ms) rollback transaction
1457
+  (0.1ms) begin transaction
1458
+ Processing by AllParamController#edit as HTML
1459
+ Rendered text template (0.0ms)
1460
+ Completed 500 Internal Server Error in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
1461
+  (0.1ms) rollback transaction
1462
+  (0.1ms) begin transaction
1463
+ Processing by AllParamController#new as HTML
1464
+ Rendered text template (0.0ms)
1465
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1466
+  (0.1ms) rollback transaction
1467
+  (0.1ms) begin transaction
1468
+ Processing by AllParamController#index as HTML
1469
+ Rendered text template (0.0ms)
1470
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1471
+  (0.1ms) rollback transaction
1472
+  (0.3ms) begin transaction
1473
+ Processing by AllParamController#new as HTML
1474
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
1475
+  (0.1ms) rollback transaction
1476
+  (0.1ms) begin transaction
1477
+ Processing by AllParamController#index as HTML
1478
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
1479
+  (0.1ms) rollback transaction
1480
+  (0.1ms) begin transaction
1481
+ Processing by AllParamController#edit as HTML
1482
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1483
+  (0.1ms) rollback transaction
1484
+  (0.1ms) begin transaction
1485
+ Processing by AllParamController#index as HTML
1486
+ Rendered text template (0.0ms)
1487
+ Completed 500 Internal Server Error in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
1488
+  (0.1ms) rollback transaction
1489
+  (0.1ms) begin transaction
1490
+ Processing by AllParamController#edit as HTML
1491
+ Rendered text template (0.0ms)
1492
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1493
+  (0.1ms) rollback transaction
1494
+  (0.1ms) begin transaction
1495
+ Processing by AllParamController#new as HTML
1496
+ Rendered text template (0.0ms)
1497
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1498
+  (0.1ms) rollback transaction
1499
+  (0.1ms) begin transaction
1500
+ Processing by NoSetupController#index as HTML
1501
+ Rendered text template (0.0ms)
1502
+ Completed 500 Internal Server Error in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
1503
+  (0.1ms) rollback transaction
1504
+  (0.1ms) begin transaction
1505
+ Processing by ArrayParamsController#edit as HTML
1506
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
1507
+  (0.1ms) rollback transaction
1508
+  (0.1ms) begin transaction
1509
+ Processing by ArrayParamsController#index as HTML
1510
+ Rendered text template (0.0ms)
1511
+ Completed 500 Internal Server Error in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
1512
+  (0.1ms) rollback transaction
1513
+  (0.1ms) begin transaction
1514
+ Processing by ArrayParamsController#new as HTML
1515
+ Rendered text template (0.0ms)
1516
+ Completed 500 Internal Server Error in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1517
+  (0.1ms) rollback transaction
1518
+  (0.1ms) begin transaction
1519
+ Processing by SymbolParamsController#index as HTML
1520
+ Rendered text template (0.0ms)
1521
+ Completed 500 Internal Server Error in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
1522
+  (0.1ms) rollback transaction
1523
+  (0.1ms) begin transaction
1524
+ Processing by SymbolParamsController#new as HTML
1525
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1526
+  (0.1ms) rollback transaction
1527
+  (0.4ms) begin transaction
1528
+ Processing by AllParamController#index as HTML
1529
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1530
+  (0.1ms) rollback transaction
1531
+  (0.1ms) begin transaction
1532
+ Processing by AllParamController#new as HTML
1533
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1534
+  (0.1ms) rollback transaction
1535
+  (0.1ms) begin transaction
1536
+ Processing by AllParamController#edit as HTML
1537
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1538
+  (0.1ms) rollback transaction
1539
+  (0.1ms) begin transaction
1540
+ Processing by AllParamController#new as HTML
1541
+ Rendered text template (0.0ms)
1542
+ Completed 500 Internal Server Error in 14ms (Views: 13.3ms | ActiveRecord: 0.0ms)
1543
+  (0.1ms) rollback transaction
1544
+  (0.1ms) begin transaction
1545
+ Processing by AllParamController#index as HTML
1546
+ Rendered text template (0.0ms)
1547
+ Completed 500 Internal Server Error in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1548
+  (0.1ms) rollback transaction
1549
+  (0.1ms) begin transaction
1550
+ Processing by AllParamController#edit as HTML
1551
+ Rendered text template (0.0ms)
1552
+ Completed 500 Internal Server Error in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1553
+  (0.1ms) rollback transaction
1554
+  (0.4ms) begin transaction
1555
+ Processing by ArrayParamsController#edit as HTML
1556
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
1557
+  (0.1ms) rollback transaction
1558
+  (0.3ms) begin transaction
1559
+ Processing by ArrayParamsController#index as HTML
1560
+ Rendered text template (0.0ms)
1561
+ Completed 500 Internal Server Error in 5ms (Views: 4.1ms | ActiveRecord: 0.0ms)
1562
+  (0.1ms) rollback transaction
1563
+  (0.2ms) begin transaction
1564
+ Processing by ArrayParamsController#new as HTML
1565
+ Rendered text template (0.0ms)
1566
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1567
+  (0.1ms) rollback transaction
1568
+  (0.1ms) begin transaction
1569
+ Processing by NoSetupController#index as HTML
1570
+ Rendered text template (0.0ms)
1571
+ Completed 500 Internal Server Error in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
1572
+  (0.1ms) rollback transaction
1573
+  (0.1ms) begin transaction
1574
+ Processing by SymbolParamsController#new as HTML
1575
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1576
+  (0.1ms) rollback transaction
1577
+  (0.1ms) begin transaction
1578
+ Processing by SymbolParamsController#index as HTML
1579
+ Rendered text template (0.0ms)
1580
+ Completed 500 Internal Server Error in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
1581
+  (0.1ms) rollback transaction
1582
+  (0.3ms) begin transaction
1583
+ Processing by SymbolParamsController#new as HTML
1584
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
1585
+  (0.1ms) rollback transaction
1586
+  (0.1ms) begin transaction
1587
+ Processing by SymbolParamsController#index as HTML
1588
+ Rendered text template (0.0ms)
1589
+ Completed 500 Internal Server Error in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
1590
+  (0.1ms) rollback transaction
1591
+  (0.1ms) begin transaction
1592
+ Processing by ArrayParamsController#new as HTML
1593
+ Rendered text template (0.0ms)
1594
+ Completed 500 Internal Server Error in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1595
+  (0.1ms) rollback transaction
1596
+  (0.1ms) begin transaction
1597
+ Processing by ArrayParamsController#edit as HTML
1598
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1599
+  (0.1ms) rollback transaction
1600
+  (0.1ms) begin transaction
1601
+ Processing by ArrayParamsController#index as HTML
1602
+ Rendered text template (0.0ms)
1603
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1604
+  (0.1ms) rollback transaction
1605
+  (0.1ms) begin transaction
1606
+ Processing by AllParamController#index as HTML
1607
+ Rendered text template (0.0ms)
1608
+ Completed 500 Internal Server Error in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1609
+  (0.1ms) rollback transaction
1610
+  (0.2ms) begin transaction
1611
+ Processing by AllParamController#edit as HTML
1612
+ Rendered text template (0.0ms)
1613
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1614
+  (0.1ms) rollback transaction
1615
+  (0.1ms) begin transaction
1616
+ Processing by AllParamController#new as HTML
1617
+ Rendered text template (0.0ms)
1618
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1619
+  (0.1ms) rollback transaction
1620
+  (0.1ms) begin transaction
1621
+ Processing by AllParamController#index as HTML
1622
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1623
+  (0.1ms) rollback transaction
1624
+  (0.1ms) begin transaction
1625
+ Processing by AllParamController#new as HTML
1626
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1627
+  (0.1ms) rollback transaction
1628
+  (0.1ms) begin transaction
1629
+ Processing by AllParamController#edit as HTML
1630
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1631
+  (0.1ms) rollback transaction
1632
+  (0.1ms) begin transaction
1633
+ Processing by NoSetupController#index as HTML
1634
+ Rendered text template (0.0ms)
1635
+ Completed 500 Internal Server Error in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
1636
+  (0.1ms) rollback transaction
1637
+  (0.3ms) begin transaction
1638
+ Processing by ArrayParamsController#new as HTML
1639
+ Rendered text template (0.1ms)
1640
+ Completed 500 Internal Server Error in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
1641
+  (0.1ms) rollback transaction
1642
+  (0.1ms) begin transaction
1643
+ Processing by ArrayParamsController#edit as HTML
1644
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
1645
+  (0.1ms) rollback transaction
1646
+  (0.1ms) begin transaction
1647
+ Processing by ArrayParamsController#index as HTML
1648
+ Rendered text template (0.0ms)
1649
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1650
+  (0.1ms) rollback transaction
1651
+  (0.1ms) begin transaction
1652
+ Processing by AllParamController#edit as HTML
1653
+ Rendered text template (0.0ms)
1654
+ Completed 500 Internal Server Error in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1655
+  (0.1ms) rollback transaction
1656
+  (0.1ms) begin transaction
1657
+ Processing by AllParamController#new as HTML
1658
+ Rendered text template (0.0ms)
1659
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1660
+  (0.1ms) rollback transaction
1661
+  (0.1ms) begin transaction
1662
+ Processing by AllParamController#index as HTML
1663
+ Rendered text template (0.0ms)
1664
+ Completed 500 Internal Server Error in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1665
+  (0.1ms) rollback transaction
1666
+  (0.1ms) begin transaction
1667
+ Processing by AllParamController#index as HTML
1668
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1669
+  (0.1ms) rollback transaction
1670
+  (0.2ms) begin transaction
1671
+ Processing by AllParamController#new as HTML
1672
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
1673
+  (0.1ms) rollback transaction
1674
+  (0.1ms) begin transaction
1675
+ Processing by AllParamController#edit as HTML
1676
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1677
+  (0.1ms) rollback transaction
1678
+  (0.1ms) begin transaction
1679
+ Processing by NoSetupController#index as HTML
1680
+ Rendered text template (0.0ms)
1681
+ Completed 500 Internal Server Error in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
1682
+  (0.1ms) rollback transaction
1683
+  (0.1ms) begin transaction
1684
+ Processing by SymbolParamsController#index as HTML
1685
+ Rendered text template (0.0ms)
1686
+ Completed 500 Internal Server Error in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
1687
+  (0.1ms) rollback transaction
1688
+  (0.1ms) begin transaction
1689
+ Processing by SymbolParamsController#new as HTML
1690
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1691
+  (0.1ms) rollback transaction
1692
+  (0.3ms) begin transaction
1693
+ Processing by ArrayParamsController#new as HTML
1694
+ Rendered text template (0.0ms)
1695
+ Completed 500 Internal Server Error in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)
1696
+  (0.1ms) rollback transaction
1697
+  (0.1ms) begin transaction
1698
+ Processing by ArrayParamsController#edit as HTML
1699
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1700
+  (0.1ms) rollback transaction
1701
+  (0.1ms) begin transaction
1702
+ Processing by ArrayParamsController#index as HTML
1703
+ Rendered text template (0.0ms)
1704
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1705
+  (0.1ms) rollback transaction
1706
+  (0.1ms) begin transaction
1707
+ Processing by AllParamController#edit as HTML
1708
+ Rendered text template (0.1ms)
1709
+ Completed 500 Internal Server Error in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms)
1710
+  (0.1ms) rollback transaction
1711
+  (0.1ms) begin transaction
1712
+ Processing by AllParamController#index as HTML
1713
+ Rendered text template (0.0ms)
1714
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1715
+  (0.1ms) rollback transaction
1716
+  (0.1ms) begin transaction
1717
+ Processing by AllParamController#new as HTML
1718
+ Rendered text template (0.0ms)
1719
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1720
+  (0.1ms) rollback transaction
1721
+  (0.1ms) begin transaction
1722
+ Processing by AllParamController#index as HTML
1723
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1724
+  (0.1ms) rollback transaction
1725
+  (0.1ms) begin transaction
1726
+ Processing by AllParamController#edit as HTML
1727
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1728
+  (0.1ms) rollback transaction
1729
+  (0.1ms) begin transaction
1730
+ Processing by AllParamController#new as HTML
1731
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1732
+  (0.1ms) rollback transaction
1733
+  (0.1ms) begin transaction
1734
+ Processing by SymbolParamsController#new as HTML
1735
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1736
+  (0.1ms) rollback transaction
1737
+  (0.1ms) begin transaction
1738
+ Processing by SymbolParamsController#index as HTML
1739
+ Rendered text template (0.0ms)
1740
+ Completed 500 Internal Server Error in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
1741
+  (0.1ms) rollback transaction
1742
+  (0.1ms) begin transaction
1743
+ Processing by NoSetupController#index as HTML
1744
+ Rendered text template (0.0ms)
1745
+ Completed 500 Internal Server Error in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
1746
+  (0.1ms) rollback transaction
1747
+  (0.4ms) begin transaction
1748
+ Processing by AllParamController#edit as HTML
1749
+ Rendered text template (0.1ms)
1750
+ Completed 500 Internal Server Error in 38ms (Views: 37.8ms | ActiveRecord: 0.0ms)
1751
+  (0.1ms) rollback transaction
1752
+  (0.2ms) begin transaction
1753
+ Processing by AllParamController#index as HTML
1754
+ Rendered text template (0.0ms)
1755
+ Completed 500 Internal Server Error in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1756
+  (0.2ms) rollback transaction
1757
+  (0.1ms) begin transaction
1758
+ Processing by AllParamController#new as HTML
1759
+ Rendered text template (0.0ms)
1760
+ Completed 500 Internal Server Error in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1761
+  (0.2ms) rollback transaction
1762
+  (0.1ms) begin transaction
1763
+ Processing by AllParamController#new as HTML
1764
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1765
+  (0.1ms) rollback transaction
1766
+  (0.1ms) begin transaction
1767
+ Processing by AllParamController#edit as HTML
1768
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
1769
+  (0.1ms) rollback transaction
1770
+  (0.1ms) begin transaction
1771
+ Processing by AllParamController#index as HTML
1772
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1773
+  (0.1ms) rollback transaction
1774
+  (0.1ms) begin transaction
1775
+ Processing by ArrayParamsController#edit as HTML
1776
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1777
+  (0.1ms) rollback transaction
1778
+  (0.1ms) begin transaction
1779
+ Processing by ArrayParamsController#index as HTML
1780
+ Rendered text template (0.0ms)
1781
+ Completed 500 Internal Server Error in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
1782
+  (0.1ms) rollback transaction
1783
+  (0.1ms) begin transaction
1784
+ Processing by ArrayParamsController#new as HTML
1785
+ Rendered text template (0.0ms)
1786
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1787
+  (0.1ms) rollback transaction
1788
+  (0.1ms) begin transaction
1789
+ Processing by NoSetupController#index as HTML
1790
+ Rendered text template (0.0ms)
1791
+ Completed 500 Internal Server Error in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
1792
+  (0.1ms) rollback transaction
1793
+  (0.1ms) begin transaction
1794
+ Processing by SymbolParamsController#new as HTML
1795
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1796
+  (0.1ms) rollback transaction
1797
+  (0.1ms) begin transaction
1798
+ Processing by SymbolParamsController#index as HTML
1799
+ Rendered text template (0.0ms)
1800
+ Completed 500 Internal Server Error in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
1801
+  (0.1ms) rollback transaction
1802
+  (0.3ms) begin transaction
1803
+ Processing by AllParamController#edit as HTML
1804
+ Rendered text template (0.0ms)
1805
+ Completed 500 Internal Server Error in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms)
1806
+  (0.1ms) rollback transaction
1807
+  (0.1ms) begin transaction
1808
+ Processing by AllParamController#index as HTML
1809
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
1810
+  (0.1ms) rollback transaction
1811
+  (0.1ms) begin transaction
1812
+ Processing by AllParamController#new as HTML
1813
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1814
+  (0.1ms) rollback transaction
1815
+  (0.4ms) begin transaction
1816
+ Processing by MultipleAllowancesController#index as HTML
1817
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1818
+  (0.2ms) rollback transaction
1819
+  (0.1ms) begin transaction
1820
+ Processing by MultipleAllowancesController#new as HTML
1821
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1822
+  (0.1ms) rollback transaction
1823
+  (0.1ms) begin transaction
1824
+ Processing by MultipleAllowancesController#edit as HTML
1825
+ Rendered text template (0.0ms)
1826
+ Completed 500 Internal Server Error in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms)
1827
+  (0.1ms) rollback transaction
1828
+  (0.3ms) begin transaction
1829
+ Processing by MultipleAllowancesController#index as HTML
1830
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
1831
+  (0.1ms) rollback transaction
1832
+  (0.3ms) begin transaction
1833
+ Processing by MultipleAllowancesController#index as HTML
1834
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1835
+  (0.1ms) rollback transaction
1836
+  (0.3ms) begin transaction
1837
+ Processing by MultipleAllowancesController#index as HTML
1838
+ Rendered text template (0.0ms)
1839
+ Completed 500 Internal Server Error in 12721ms (Views: 11.8ms | ActiveRecord: 0.0ms)
1840
+  (0.1ms) rollback transaction
1841
+  (0.4ms) begin transaction
1842
+ Processing by MultipleAllowancesController#index as HTML
1843
+ Rendered text template (0.0ms)
1844
+ Completed 500 Internal Server Error in 3116ms (Views: 10.4ms | ActiveRecord: 0.0ms)
1845
+  (0.1ms) rollback transaction
1846
+  (0.3ms) begin transaction
1847
+ Processing by MultipleAllowancesController#index as HTML
1848
+ Rendered text template (0.0ms)
1849
+ Completed 500 Internal Server Error in 933ms (Views: 9.9ms | ActiveRecord: 0.0ms)
1850
+  (0.1ms) rollback transaction
1851
+  (0.3ms) begin transaction
1852
+ Processing by MultipleAllowancesController#index as HTML
1853
+ Rendered text template (0.0ms)
1854
+ Completed 500 Internal Server Error in 48293ms (Views: 10.4ms | ActiveRecord: 0.0ms)
1855
+  (0.1ms) rollback transaction
1856
+  (0.3ms) begin transaction
1857
+ Processing by AllParamController#edit as HTML
1858
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1859
+  (0.1ms) rollback transaction
1860
+  (0.1ms) begin transaction
1861
+ Processing by AllParamController#new as HTML
1862
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1863
+  (0.1ms) rollback transaction
1864
+  (0.1ms) begin transaction
1865
+ Processing by AllParamController#index as HTML
1866
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1867
+  (0.1ms) rollback transaction
1868
+  (0.1ms) begin transaction
1869
+ Processing by AllParamController#new as HTML
1870
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1871
+  (0.1ms) rollback transaction
1872
+  (0.1ms) begin transaction
1873
+ Processing by AllParamController#edit as HTML
1874
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1875
+  (0.1ms) rollback transaction
1876
+  (0.1ms) begin transaction
1877
+ Processing by AllParamController#index as HTML
1878
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1879
+  (0.1ms) rollback transaction
1880
+  (0.1ms) begin transaction
1881
+ Processing by ArrayParamsController#new as HTML
1882
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1883
+  (0.1ms) rollback transaction
1884
+  (0.1ms) begin transaction
1885
+  (0.1ms) rollback transaction
1886
+  (0.0ms) begin transaction
1887
+ Processing by ArrayParamsController#index as HTML
1888
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1889
+  (0.1ms) rollback transaction
1890
+  (0.1ms) begin transaction
1891
+ Processing by MultipleAllowancesController#index as HTML
1892
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1893
+  (0.1ms) rollback transaction
1894
+  (0.1ms) begin transaction
1895
+ Processing by MultipleAllowancesController#new as HTML
1896
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1897
+  (0.1ms) rollback transaction
1898
+  (0.1ms) begin transaction
1899
+ Processing by MultipleAllowancesController#edit as HTML
1900
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1901
+  (0.1ms) rollback transaction
1902
+  (0.1ms) begin transaction
1903
+ Processing by NoSetupController#index as HTML
1904
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1905
+  (0.1ms) rollback transaction
1906
+  (0.1ms) begin transaction
1907
+  (0.1ms) rollback transaction
1908
+  (0.1ms) begin transaction
1909
+ Processing by SymbolParamsController#index as HTML
1910
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1911
+  (0.1ms) rollback transaction
1912
+  (0.4ms) begin transaction
1913
+ Processing by NoSetupController#index as HTML
1914
+ Rendered text template (0.0ms)
1915
+ Completed 500 Internal Server Error in 14ms (Views: 13.6ms | ActiveRecord: 0.0ms)
1916
+  (0.1ms) rollback transaction
1917
+  (0.1ms) begin transaction
1918
+ Processing by MultipleAllowancesController#index as HTML
1919
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1920
+  (0.1ms) rollback transaction
1921
+  (0.1ms) begin transaction
1922
+ Processing by MultipleAllowancesController#new as HTML
1923
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1924
+  (0.1ms) rollback transaction
1925
+  (0.1ms) begin transaction
1926
+ Processing by MultipleAllowancesController#edit as HTML
1927
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1928
+  (0.1ms) rollback transaction
1929
+  (0.1ms) begin transaction
1930
+ Processing by SymbolParamsController#index as HTML
1931
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1932
+  (0.1ms) rollback transaction
1933
+  (0.1ms) begin transaction
1934
+  (0.1ms) rollback transaction
1935
+  (0.1ms) begin transaction
1936
+  (0.1ms) rollback transaction
1937
+  (0.1ms) begin transaction
1938
+ Processing by ArrayParamsController#new as HTML
1939
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1940
+  (0.1ms) rollback transaction
1941
+  (0.1ms) begin transaction
1942
+ Processing by ArrayParamsController#index as HTML
1943
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
1944
+  (0.1ms) rollback transaction
1945
+  (0.1ms) begin transaction
1946
+ Processing by AllParamController#edit as HTML
1947
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1948
+  (0.1ms) rollback transaction
1949
+  (0.1ms) begin transaction
1950
+ Processing by AllParamController#index as HTML
1951
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1952
+  (0.1ms) rollback transaction
1953
+  (0.1ms) begin transaction
1954
+ Processing by AllParamController#new as HTML
1955
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1956
+  (0.1ms) rollback transaction
1957
+  (0.1ms) begin transaction
1958
+ Processing by AllParamController#edit as HTML
1959
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1960
+  (0.1ms) rollback transaction
1961
+  (0.1ms) begin transaction
1962
+ Processing by AllParamController#index as HTML
1963
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1964
+  (0.1ms) rollback transaction
1965
+  (0.1ms) begin transaction
1966
+ Processing by AllParamController#new as HTML
1967
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1968
+  (0.1ms) rollback transaction
1969
+  (0.3ms) begin transaction
1970
+ Processing by ArrayParamsController#new as HTML
1971
+ Rendered text template (0.0ms)
1972
+ Completed 500 Internal Server Error in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
1973
+  (0.1ms) rollback transaction
1974
+  (0.1ms) begin transaction
1975
+ Processing by ArrayParamsController#index as HTML
1976
+ Rendered text template (0.0ms)
1977
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1978
+  (0.1ms) rollback transaction
1979
+  (0.1ms) begin transaction
1980
+  (0.1ms) rollback transaction
1981
+  (0.1ms) begin transaction
1982
+ Processing by AllParamController#index as HTML
1983
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1984
+  (0.1ms) rollback transaction
1985
+  (0.1ms) begin transaction
1986
+ Processing by AllParamController#new as HTML
1987
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1988
+  (0.1ms) rollback transaction
1989
+  (0.1ms) begin transaction
1990
+ Processing by AllParamController#edit as HTML
1991
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
1992
+  (0.1ms) rollback transaction
1993
+  (0.1ms) begin transaction
1994
+ Processing by AllParamController#edit as HTML
1995
+ Rendered text template (0.0ms)
1996
+ Completed 500 Internal Server Error in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
1997
+  (0.1ms) rollback transaction
1998
+  (0.1ms) begin transaction
1999
+ Processing by AllParamController#index as HTML
2000
+ Rendered text template (0.0ms)
2001
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2002
+  (0.1ms) rollback transaction
2003
+  (0.1ms) begin transaction
2004
+ Processing by AllParamController#new as HTML
2005
+ Rendered text template (0.0ms)
2006
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2007
+  (0.1ms) rollback transaction
2008
+  (0.1ms) begin transaction
2009
+ Processing by MultipleAllowancesController#edit as HTML
2010
+ Rendered text template (0.0ms)
2011
+ Completed 500 Internal Server Error in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
2012
+  (0.1ms) rollback transaction
2013
+  (0.1ms) begin transaction
2014
+ Processing by MultipleAllowancesController#index as HTML
2015
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2016
+  (0.1ms) rollback transaction
2017
+  (0.1ms) begin transaction
2018
+ Processing by MultipleAllowancesController#new as HTML
2019
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2020
+  (0.1ms) rollback transaction
2021
+  (0.1ms) begin transaction
2022
+  (0.1ms) rollback transaction
2023
+  (0.1ms) begin transaction
2024
+ Processing by SymbolParamsController#index as HTML
2025
+ Rendered text template (0.0ms)
2026
+ Completed 500 Internal Server Error in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
2027
+  (0.1ms) rollback transaction
2028
+  (0.1ms) begin transaction
2029
+ Processing by NoSetupController#index as HTML
2030
+ Rendered text template (0.1ms)
2031
+ Completed 500 Internal Server Error in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
2032
+  (0.1ms) rollback transaction
2033
+  (0.4ms) begin transaction
2034
+ Processing by AllParamController#index as HTML
2035
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2036
+  (0.1ms) rollback transaction
2037
+  (0.1ms) begin transaction
2038
+ Processing by AllParamController#new as HTML
2039
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2040
+  (0.1ms) rollback transaction
2041
+  (0.1ms) begin transaction
2042
+ Processing by AllParamController#edit as HTML
2043
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2044
+  (0.1ms) rollback transaction
2045
+  (0.2ms) begin transaction
2046
+ Processing by AllParamController#new as HTML
2047
+ Rendered text template (0.0ms)
2048
+ Completed 500 Internal Server Error in 8ms (Views: 7.8ms | ActiveRecord: 0.0ms)
2049
+  (0.1ms) rollback transaction
2050
+  (0.1ms) begin transaction
2051
+ Processing by AllParamController#edit as HTML
2052
+ Rendered text template (0.0ms)
2053
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2054
+  (0.1ms) rollback transaction
2055
+  (0.2ms) begin transaction
2056
+ Processing by AllParamController#index as HTML
2057
+ Rendered text template (0.0ms)
2058
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2059
+  (0.1ms) rollback transaction
2060
+  (0.1ms) begin transaction
2061
+ Processing by ArrayParamsController#index as HTML
2062
+ Rendered text template (0.0ms)
2063
+ Completed 500 Internal Server Error in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
2064
+  (0.1ms) rollback transaction
2065
+  (0.1ms) begin transaction
2066
+ Processing by ArrayParamsController#new as HTML
2067
+ Rendered text template (0.0ms)
2068
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2069
+  (0.1ms) rollback transaction
2070
+  (0.1ms) begin transaction
2071
+ Processing by ArrayParamsController#edit as HTML
2072
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2073
+  (0.1ms) rollback transaction
2074
+  (0.1ms) begin transaction
2075
+ Processing by SymbolParamsController#new as HTML
2076
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2077
+  (0.1ms) rollback transaction
2078
+  (0.1ms) begin transaction
2079
+ Processing by SymbolParamsController#index as HTML
2080
+ Rendered text template (0.0ms)
2081
+ Completed 500 Internal Server Error in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
2082
+  (0.1ms) rollback transaction
2083
+  (0.1ms) begin transaction
2084
+ Processing by NoSetupController#index as HTML
2085
+ Rendered text template (0.0ms)
2086
+ Completed 500 Internal Server Error in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
2087
+  (0.1ms) rollback transaction
2088
+  (0.1ms) begin transaction
2089
+ Processing by MultipleAllowancesController#new as HTML
2090
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2091
+  (0.1ms) rollback transaction
2092
+  (0.1ms) begin transaction
2093
+ Processing by MultipleAllowancesController#index as HTML
2094
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2095
+  (0.1ms) rollback transaction
2096
+  (0.1ms) begin transaction
2097
+ Processing by MultipleAllowancesController#edit as HTML
2098
+ Rendered text template (0.0ms)
2099
+ Completed 500 Internal Server Error in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2100
+  (0.1ms) rollback transaction
2101
+  (0.4ms) begin transaction
2102
+ Processing by ArrayParamsController#new as HTML
2103
+ Rendered text template (0.0ms)
2104
+ Completed 500 Internal Server Error in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
2105
+  (0.1ms) rollback transaction
2106
+  (0.1ms) begin transaction
2107
+ Processing by ArrayParamsController#index as HTML
2108
+ Rendered text template (0.0ms)
2109
+ Completed 500 Internal Server Error in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2110
+  (0.1ms) rollback transaction
2111
+  (0.1ms) begin transaction
2112
+ Processing by ArrayParamsController#edit as HTML
2113
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2114
+  (0.1ms) rollback transaction
2115
+  (0.1ms) begin transaction
2116
+ Processing by MultipleAllowancesController#new as HTML
2117
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
2118
+  (0.1ms) rollback transaction
2119
+  (0.1ms) begin transaction
2120
+ Processing by MultipleAllowancesController#index as HTML
2121
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2122
+  (0.1ms) rollback transaction
2123
+  (0.1ms) begin transaction
2124
+ Processing by MultipleAllowancesController#edit as HTML
2125
+ Rendered text template (0.0ms)
2126
+ Completed 500 Internal Server Error in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
2127
+  (0.1ms) rollback transaction
2128
+  (0.1ms) begin transaction
2129
+ Processing by NoSetupController#index as HTML
2130
+ Rendered text template (0.0ms)
2131
+ Completed 500 Internal Server Error in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
2132
+  (0.1ms) rollback transaction
2133
+  (0.1ms) begin transaction
2134
+ Processing by AllParamController#new as HTML
2135
+ Rendered text template (0.0ms)
2136
+ Completed 500 Internal Server Error in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
2137
+  (0.1ms) rollback transaction
2138
+  (0.1ms) begin transaction
2139
+ Processing by AllParamController#index as HTML
2140
+ Rendered text template (0.0ms)
2141
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2142
+  (0.1ms) rollback transaction
2143
+  (0.1ms) begin transaction
2144
+ Processing by AllParamController#edit as HTML
2145
+ Rendered text template (0.0ms)
2146
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2147
+  (0.2ms) rollback transaction
2148
+  (0.1ms) begin transaction
2149
+ Processing by AllParamController#index as HTML
2150
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2151
+  (0.1ms) rollback transaction
2152
+  (0.1ms) begin transaction
2153
+ Processing by AllParamController#new as HTML
2154
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2155
+  (0.1ms) rollback transaction
2156
+  (0.1ms) begin transaction
2157
+ Processing by AllParamController#edit as HTML
2158
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2159
+  (0.1ms) rollback transaction
2160
+  (0.1ms) begin transaction
2161
+ Processing by SymbolParamsController#new as HTML
2162
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2163
+  (0.1ms) rollback transaction
2164
+  (0.1ms) begin transaction
2165
+ Processing by SymbolParamsController#index as HTML
2166
+ Rendered text template (0.0ms)
2167
+ Completed 500 Internal Server Error in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
2168
+  (0.1ms) rollback transaction
2169
+  (0.4ms) begin transaction
2170
+ Processing by NoSetupController#index as HTML
2171
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2172
+  (0.1ms) rollback transaction
2173
+  (0.1ms) begin transaction
2174
+ Processing by MultipleAllowancesController#index as HTML
2175
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2176
+  (0.1ms) rollback transaction
2177
+  (0.1ms) begin transaction
2178
+ Processing by MultipleAllowancesController#new as HTML
2179
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2180
+  (0.1ms) rollback transaction
2181
+  (0.1ms) begin transaction
2182
+ Processing by MultipleAllowancesController#edit as HTML
2183
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2184
+  (0.1ms) rollback transaction
2185
+  (0.1ms) begin transaction
2186
+ Processing by ArrayParamsController#edit as HTML
2187
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2188
+  (0.1ms) rollback transaction
2189
+  (0.1ms) begin transaction
2190
+ Processing by ArrayParamsController#index as HTML
2191
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2192
+  (0.1ms) rollback transaction
2193
+  (0.1ms) begin transaction
2194
+ Processing by ArrayParamsController#new as HTML
2195
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2196
+  (0.1ms) rollback transaction
2197
+  (0.1ms) begin transaction
2198
+ Processing by AllParamController#edit as HTML
2199
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2200
+  (0.1ms) rollback transaction
2201
+  (0.1ms) begin transaction
2202
+ Processing by AllParamController#index as HTML
2203
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2204
+  (0.1ms) rollback transaction
2205
+  (0.1ms) begin transaction
2206
+ Processing by AllParamController#new as HTML
2207
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2208
+  (0.1ms) rollback transaction
2209
+  (0.1ms) begin transaction
2210
+ Processing by AllParamController#index as HTML
2211
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2212
+  (0.1ms) rollback transaction
2213
+  (0.1ms) begin transaction
2214
+ Processing by AllParamController#new as HTML
2215
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2216
+  (0.1ms) rollback transaction
2217
+  (0.1ms) begin transaction
2218
+ Processing by AllParamController#edit as HTML
2219
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2220
+  (0.1ms) rollback transaction
2221
+  (0.1ms) begin transaction
2222
+ Processing by SymbolParamsController#index as HTML
2223
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2224
+  (0.1ms) rollback transaction
2225
+  (0.1ms) begin transaction
2226
+ Processing by SymbolParamsController#new as HTML
2227
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2228
+  (0.1ms) rollback transaction
2229
+  (0.3ms) begin transaction
2230
+ Processing by MultipleAllowancesController#edit as HTML
2231
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2232
+  (0.1ms) rollback transaction
2233
+  (0.1ms) begin transaction
2234
+ Processing by MultipleAllowancesController#index as HTML
2235
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2236
+  (0.1ms) rollback transaction
2237
+  (0.1ms) begin transaction
2238
+ Processing by MultipleAllowancesController#new as HTML
2239
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2240
+  (0.1ms) rollback transaction
2241
+  (0.1ms) begin transaction
2242
+ Processing by SymbolParamsController#new as HTML
2243
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2244
+  (0.1ms) rollback transaction
2245
+  (0.1ms) begin transaction
2246
+ Processing by SymbolParamsController#index as HTML
2247
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2248
+  (0.1ms) rollback transaction
2249
+  (0.1ms) begin transaction
2250
+ Processing by AllParamController#new as HTML
2251
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2252
+  (0.1ms) rollback transaction
2253
+  (0.1ms) begin transaction
2254
+ Processing by AllParamController#index as HTML
2255
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2256
+  (0.1ms) rollback transaction
2257
+  (0.1ms) begin transaction
2258
+ Processing by AllParamController#edit as HTML
2259
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2260
+  (0.1ms) rollback transaction
2261
+  (0.1ms) begin transaction
2262
+ Processing by AllParamController#edit as HTML
2263
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2264
+  (0.1ms) rollback transaction
2265
+  (0.1ms) begin transaction
2266
+ Processing by AllParamController#index as HTML
2267
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2268
+  (0.1ms) rollback transaction
2269
+  (0.1ms) begin transaction
2270
+ Processing by AllParamController#new as HTML
2271
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
2272
+  (0.1ms) rollback transaction
2273
+  (0.1ms) begin transaction
2274
+ Processing by ArrayParamsController#edit as HTML
2275
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2276
+  (0.1ms) rollback transaction
2277
+  (0.1ms) begin transaction
2278
+ Processing by ArrayParamsController#index as HTML
2279
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2280
+  (0.1ms) rollback transaction
2281
+  (0.1ms) begin transaction
2282
+ Processing by ArrayParamsController#new as HTML
2283
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2284
+  (0.1ms) rollback transaction
2285
+  (0.1ms) begin transaction
2286
+ Processing by NoSetupController#index as HTML
2287
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2288
+  (0.1ms) rollback transaction
2289
+  (0.3ms) begin transaction
2290
+ Processing by MultipleAllowancesController#edit as HTML
2291
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2292
+  (0.1ms) rollback transaction
2293
+  (0.4ms) begin transaction
2294
+ Processing by MultipleAllowancesController#edit as HTML
2295
+ Completed 500 Internal Server Error in 9714ms (ActiveRecord: 0.0ms)
2296
+  (0.1ms) rollback transaction
2297
+  (0.3ms) begin transaction
2298
+ Processing by MultipleAllowancesController#edit as HTML
2299
+ Completed 500 Internal Server Error in 21268ms (ActiveRecord: 0.0ms)
2300
+  (0.1ms) rollback transaction
2301
+  (0.3ms) begin transaction
2302
+ Processing by MultipleAllowancesController#edit as HTML
2303
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2304
+  (0.1ms) rollback transaction
2305
+  (0.4ms) begin transaction
2306
+ Processing by MultipleAllowancesController#edit as HTML
2307
+ Rendered text template (0.0ms)
2308
+ Completed 500 Internal Server Error in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms)
2309
+  (0.1ms) rollback transaction
2310
+  (0.3ms) begin transaction
2311
+ Processing by MultipleAllowancesController#edit as HTML
2312
+ Rendered text template (0.0ms)
2313
+ Completed 500 Internal Server Error in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
2314
+  (0.1ms) rollback transaction
2315
+  (0.1ms) begin transaction
2316
+ Processing by MultipleAllowancesController#index as HTML
2317
+ Rendered text template (0.0ms)
2318
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2319
+  (0.1ms) rollback transaction
2320
+  (0.1ms) begin transaction
2321
+ Processing by MultipleAllowancesController#new as HTML
2322
+ Rendered text template (0.0ms)
2323
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2324
+  (0.1ms) rollback transaction
2325
+  (0.4ms) begin transaction
2326
+ Processing by AllParamController#edit as HTML
2327
+ Rendered text template (0.0ms)
2328
+ Completed 500 Internal Server Error in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
2329
+  (0.1ms) rollback transaction
2330
+  (0.1ms) begin transaction
2331
+ Processing by AllParamController#new as HTML
2332
+ Rendered text template (0.0ms)
2333
+ Completed 500 Internal Server Error in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
2334
+  (0.1ms) rollback transaction
2335
+  (0.1ms) begin transaction
2336
+ Processing by AllParamController#index as HTML
2337
+ Rendered text template (0.0ms)
2338
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2339
+  (0.1ms) rollback transaction
2340
+  (0.1ms) begin transaction
2341
+ Processing by AllParamController#new as HTML
2342
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2343
+  (0.1ms) rollback transaction
2344
+  (0.1ms) begin transaction
2345
+ Processing by AllParamController#index as HTML
2346
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2347
+  (0.1ms) rollback transaction
2348
+  (0.1ms) begin transaction
2349
+ Processing by AllParamController#edit as HTML
2350
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2351
+  (0.1ms) rollback transaction
2352
+  (0.1ms) begin transaction
2353
+ Processing by MultipleAllowancesController#index as HTML
2354
+ Rendered text template (0.0ms)
2355
+ Completed 500 Internal Server Error in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
2356
+  (0.1ms) rollback transaction
2357
+  (0.1ms) begin transaction
2358
+ Processing by MultipleAllowancesController#new as HTML
2359
+ Rendered text template (0.0ms)
2360
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2361
+  (0.1ms) rollback transaction
2362
+  (0.1ms) begin transaction
2363
+ Processing by MultipleAllowancesController#edit as HTML
2364
+ Rendered text template (0.0ms)
2365
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2366
+  (0.1ms) rollback transaction
2367
+  (0.1ms) begin transaction
2368
+ Processing by SymbolParamsController#new as HTML
2369
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2370
+  (0.1ms) rollback transaction
2371
+  (0.1ms) begin transaction
2372
+ Processing by SymbolParamsController#index as HTML
2373
+ Rendered text template (0.0ms)
2374
+ Completed 500 Internal Server Error in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
2375
+  (0.1ms) rollback transaction
2376
+  (0.1ms) begin transaction
2377
+ Processing by NoSetupController#index as HTML
2378
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2379
+  (0.1ms) rollback transaction
2380
+  (0.2ms) begin transaction
2381
+ Processing by ArrayParamsController#index as HTML
2382
+ Rendered text template (0.1ms)
2383
+ Completed 500 Internal Server Error in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
2384
+  (0.1ms) rollback transaction
2385
+  (0.1ms) begin transaction
2386
+ Processing by ArrayParamsController#edit as HTML
2387
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2388
+  (0.1ms) rollback transaction
2389
+  (0.1ms) begin transaction
2390
+ Processing by ArrayParamsController#new as HTML
2391
+ Rendered text template (0.0ms)
2392
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2393
+  (0.1ms) rollback transaction
2394
+  (0.4ms) begin transaction
2395
+ Processing by NoSetupController#index as HTML
2396
+ Rendered text template (0.0ms)
2397
+ Completed 500 Internal Server Error in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
2398
+  (0.1ms) rollback transaction
2399
+  (0.1ms) begin transaction
2400
+ Processing by ArrayParamsController#new as HTML
2401
+ Rendered text template (0.0ms)
2402
+ Completed 500 Internal Server Error in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
2403
+  (0.1ms) rollback transaction
2404
+  (0.1ms) begin transaction
2405
+ Processing by ArrayParamsController#index as HTML
2406
+ Rendered text template (0.0ms)
2407
+ Completed 500 Internal Server Error in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2408
+  (0.1ms) rollback transaction
2409
+  (0.1ms) begin transaction
2410
+ Processing by ArrayParamsController#edit as HTML
2411
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2412
+  (0.1ms) rollback transaction
2413
+  (0.1ms) begin transaction
2414
+ Processing by AllParamController#index as HTML
2415
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2416
+  (0.1ms) rollback transaction
2417
+  (0.1ms) begin transaction
2418
+ Processing by AllParamController#edit as HTML
2419
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2420
+  (0.1ms) rollback transaction
2421
+  (0.1ms) begin transaction
2422
+ Processing by AllParamController#new as HTML
2423
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2424
+  (0.1ms) rollback transaction
2425
+  (0.1ms) begin transaction
2426
+ Processing by AllParamController#edit as HTML
2427
+ Rendered text template (0.0ms)
2428
+ Completed 500 Internal Server Error in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
2429
+  (0.1ms) rollback transaction
2430
+  (0.1ms) begin transaction
2431
+ Processing by AllParamController#index as HTML
2432
+ Rendered text template (0.0ms)
2433
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2434
+  (0.1ms) rollback transaction
2435
+  (0.1ms) begin transaction
2436
+ Processing by AllParamController#new as HTML
2437
+ Rendered text template (0.0ms)
2438
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2439
+  (0.1ms) rollback transaction
2440
+  (0.1ms) begin transaction
2441
+ Processing by SymbolParamsController#new as HTML
2442
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2443
+  (0.1ms) rollback transaction
2444
+  (0.2ms) begin transaction
2445
+ Processing by SymbolParamsController#index as HTML
2446
+ Rendered text template (0.0ms)
2447
+ Completed 500 Internal Server Error in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
2448
+  (0.1ms) rollback transaction
2449
+  (0.1ms) begin transaction
2450
+ Processing by MultipleAllowancesController#edit as HTML
2451
+ Rendered text template (0.0ms)
2452
+ Completed 500 Internal Server Error in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
2453
+  (0.1ms) rollback transaction
2454
+  (0.1ms) begin transaction
2455
+ Processing by MultipleAllowancesController#new as HTML
2456
+ Rendered text template (0.0ms)
2457
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2458
+  (0.1ms) rollback transaction
2459
+  (0.1ms) begin transaction
2460
+ Processing by MultipleAllowancesController#index as HTML
2461
+ Rendered text template (0.0ms)
2462
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2463
+  (0.1ms) rollback transaction
2464
+  (0.4ms) begin transaction
2465
+ Processing by ArrayParamsController#new as HTML
2466
+ Rendered text template (0.0ms)
2467
+ Completed 500 Internal Server Error in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
2468
+  (0.1ms) rollback transaction
2469
+  (0.1ms) begin transaction
2470
+ Processing by ArrayParamsController#index as HTML
2471
+ Rendered text template (0.0ms)
2472
+ Completed 500 Internal Server Error in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2473
+  (0.1ms) rollback transaction
2474
+  (0.1ms) begin transaction
2475
+ Processing by ArrayParamsController#edit as HTML
2476
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2477
+  (0.1ms) rollback transaction
2478
+  (0.1ms) begin transaction
2479
+ Processing by SymbolParamsController#new as HTML
2480
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2481
+  (0.1ms) rollback transaction
2482
+  (0.1ms) begin transaction
2483
+ Processing by SymbolParamsController#index as HTML
2484
+ Rendered text template (0.0ms)
2485
+ Completed 500 Internal Server Error in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
2486
+  (0.1ms) rollback transaction
2487
+  (0.1ms) begin transaction
2488
+ Processing by NoSetupController#index as HTML
2489
+ Rendered text template (0.0ms)
2490
+ Completed 500 Internal Server Error in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
2491
+  (0.1ms) rollback transaction
2492
+  (0.1ms) begin transaction
2493
+ Processing by AllParamController#edit as HTML
2494
+ Rendered text template (0.0ms)
2495
+ Completed 500 Internal Server Error in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2496
+  (0.1ms) rollback transaction
2497
+  (0.1ms) begin transaction
2498
+ Processing by AllParamController#new as HTML
2499
+ Rendered text template (0.0ms)
2500
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2501
+  (0.1ms) rollback transaction
2502
+  (0.1ms) begin transaction
2503
+ Processing by AllParamController#index as HTML
2504
+ Rendered text template (0.0ms)
2505
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2506
+  (0.1ms) rollback transaction
2507
+  (0.1ms) begin transaction
2508
+ Processing by AllParamController#index as HTML
2509
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2510
+  (0.1ms) rollback transaction
2511
+  (0.1ms) begin transaction
2512
+ Processing by AllParamController#new as HTML
2513
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2514
+  (0.1ms) rollback transaction
2515
+  (0.1ms) begin transaction
2516
+ Processing by AllParamController#edit as HTML
2517
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2518
+  (0.1ms) rollback transaction
2519
+  (0.1ms) begin transaction
2520
+ Processing by MultipleAllowancesController#new as HTML
2521
+ Rendered text template (0.0ms)
2522
+ Completed 500 Internal Server Error in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
2523
+  (0.1ms) rollback transaction
2524
+  (0.1ms) begin transaction
2525
+ Processing by MultipleAllowancesController#edit as HTML
2526
+ Rendered text template (0.0ms)
2527
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2528
+  (0.1ms) rollback transaction
2529
+  (0.1ms) begin transaction
2530
+ Processing by MultipleAllowancesController#index as HTML
2531
+ Rendered text template (0.0ms)
2532
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2533
+  (0.1ms) rollback transaction
2534
+  (0.1ms) begin transaction
2535
+ Processing by MultipleAllowancesController#index as HTML
2536
+ Rendered text template (0.0ms)
2537
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2538
+  (0.1ms) rollback transaction
2539
+  (0.1ms) begin transaction
2540
+ Processing by MultipleAllowancesController#new as HTML
2541
+ Rendered text template (0.0ms)
2542
+ Completed 500 Internal Server Error in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
2543
+  (0.1ms) rollback transaction
2544
+  (0.3ms) begin transaction
2545
+ Processing by SymbolParamsController#new as HTML
2546
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2547
+  (0.1ms) rollback transaction
2548
+  (0.1ms) begin transaction
2549
+ Processing by SymbolParamsController#index as HTML
2550
+ Rendered text template (0.0ms)
2551
+ Completed 500 Internal Server Error in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
2552
+  (0.1ms) rollback transaction
2553
+  (0.1ms) begin transaction
2554
+ Processing by NoSetupController#index as HTML
2555
+ Rendered text template (0.0ms)
2556
+ Completed 500 Internal Server Error in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
2557
+  (0.1ms) rollback transaction
2558
+  (0.1ms) begin transaction
2559
+ Processing by ArrayParamsController#index as HTML
2560
+ Rendered text template (0.1ms)
2561
+ Completed 500 Internal Server Error in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
2562
+  (0.1ms) rollback transaction
2563
+  (0.1ms) begin transaction
2564
+ Processing by ArrayParamsController#new as HTML
2565
+ Rendered text template (0.0ms)
2566
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2567
+  (0.1ms) rollback transaction
2568
+  (0.1ms) begin transaction
2569
+ Processing by ArrayParamsController#edit as HTML
2570
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2571
+  (0.1ms) rollback transaction
2572
+  (0.1ms) begin transaction
2573
+ Processing by AllParamController#index as HTML
2574
+ Rendered text template (0.0ms)
2575
+ Completed 500 Internal Server Error in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
2576
+  (0.1ms) rollback transaction
2577
+  (0.1ms) begin transaction
2578
+ Processing by AllParamController#new as HTML
2579
+ Rendered text template (0.0ms)
2580
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2581
+  (0.1ms) rollback transaction
2582
+  (0.1ms) begin transaction
2583
+ Processing by AllParamController#edit as HTML
2584
+ Rendered text template (0.0ms)
2585
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2586
+  (0.1ms) rollback transaction
2587
+  (0.1ms) begin transaction
2588
+ Processing by AllParamController#index as HTML
2589
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2590
+  (0.1ms) rollback transaction
2591
+  (0.1ms) begin transaction
2592
+ Processing by AllParamController#edit as HTML
2593
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
2594
+  (0.1ms) rollback transaction
2595
+  (0.1ms) begin transaction
2596
+ Processing by AllParamController#new as HTML
2597
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2598
+  (0.1ms) rollback transaction
2599
+  (0.1ms) begin transaction
2600
+ Processing by MultipleAllowancesController#edit as HTML
2601
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2602
+  (0.1ms) rollback transaction
2603
+  (0.1ms) begin transaction
2604
+ Processing by MultipleAllowancesController#index as HTML
2605
+ Rendered text template (0.0ms)
2606
+ Completed 500 Internal Server Error in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
2607
+  (0.1ms) rollback transaction
2608
+  (0.2ms) begin transaction
2609
+ Processing by MultipleAllowancesController#new as HTML
2610
+ Rendered text template (0.1ms)
2611
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2612
+  (0.1ms) rollback transaction
2613
+  (0.1ms) begin transaction
2614
+ Processing by MultipleAllowancesController#edit as HTML
2615
+ Rendered text template (0.0ms)
2616
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2617
+  (0.1ms) rollback transaction
2618
+  (0.1ms) begin transaction
2619
+ Processing by MultipleAllowancesController#new as HTML
2620
+ Rendered text template (0.0ms)
2621
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2622
+  (0.1ms) rollback transaction
2623
+  (0.1ms) begin transaction
2624
+ Processing by MultipleAllowancesController#index as HTML
2625
+ Rendered text template (0.0ms)
2626
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2627
+  (0.1ms) rollback transaction
2628
+  (0.3ms) begin transaction
2629
+ Processing by NoSetupController#index as HTML
2630
+ Rendered text template (0.0ms)
2631
+ Completed 500 Internal Server Error in 6ms (Views: 6.3ms | ActiveRecord: 0.0ms)
2632
+  (0.1ms) rollback transaction
2633
+  (0.1ms) begin transaction
2634
+ Processing by SymbolParamsController#new as HTML
2635
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2636
+  (0.1ms) rollback transaction
2637
+  (0.1ms) begin transaction
2638
+ Processing by SymbolParamsController#index as HTML
2639
+ Rendered text template (0.0ms)
2640
+ Completed 500 Internal Server Error in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
2641
+  (0.1ms) rollback transaction
2642
+  (0.1ms) begin transaction
2643
+ Processing by ArrayParamsController#edit as HTML
2644
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2645
+  (0.1ms) rollback transaction
2646
+  (0.1ms) begin transaction
2647
+ Processing by ArrayParamsController#new as HTML
2648
+ Rendered text template (0.0ms)
2649
+ Completed 500 Internal Server Error in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
2650
+  (0.1ms) rollback transaction
2651
+  (0.1ms) begin transaction
2652
+ Processing by ArrayParamsController#index as HTML
2653
+ Rendered text template (0.0ms)
2654
+ Completed 500 Internal Server Error in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2655
+  (0.1ms) rollback transaction
2656
+  (0.1ms) begin transaction
2657
+ Processing by AllParamController#new as HTML
2658
+ Rendered text template (0.0ms)
2659
+ Completed 500 Internal Server Error in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
2660
+  (0.1ms) rollback transaction
2661
+  (0.0ms) begin transaction
2662
+ Processing by AllParamController#index as HTML
2663
+ Rendered text template (0.0ms)
2664
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2665
+  (0.1ms) rollback transaction
2666
+  (0.1ms) begin transaction
2667
+ Processing by AllParamController#edit as HTML
2668
+ Rendered text template (0.0ms)
2669
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2670
+  (0.1ms) rollback transaction
2671
+  (0.1ms) begin transaction
2672
+ Processing by AllParamController#new as HTML
2673
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2674
+  (0.1ms) rollback transaction
2675
+  (0.1ms) begin transaction
2676
+ Processing by AllParamController#edit as HTML
2677
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2678
+  (0.1ms) rollback transaction
2679
+  (0.1ms) begin transaction
2680
+ Processing by AllParamController#index as HTML
2681
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2682
+  (0.1ms) rollback transaction
2683
+  (0.1ms) begin transaction
2684
+ Processing by MultipleAllowancesController#edit as HTML
2685
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
2686
+  (0.1ms) rollback transaction
2687
+  (0.1ms) begin transaction
2688
+ Processing by MultipleAllowancesController#index as HTML
2689
+ Rendered text template (0.0ms)
2690
+ Completed 500 Internal Server Error in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2691
+  (0.1ms) rollback transaction
2692
+  (0.1ms) begin transaction
2693
+ Processing by MultipleAllowancesController#new as HTML
2694
+ Rendered text template (0.0ms)
2695
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2696
+  (0.1ms) rollback transaction
2697
+  (0.1ms) begin transaction
2698
+ Processing by MultipleAllowancesController#new as HTML
2699
+ Rendered text template (0.0ms)
2700
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2701
+  (0.1ms) rollback transaction
2702
+  (0.1ms) begin transaction
2703
+ Processing by MultipleAllowancesController#edit as HTML
2704
+ Rendered text template (0.0ms)
2705
+ Completed 500 Internal Server Error in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2706
+  (0.1ms) rollback transaction
2707
+  (0.1ms) begin transaction
2708
+ Processing by MultipleAllowancesController#index as HTML
2709
+ Rendered text template (0.0ms)
2710
+ Completed 500 Internal Server Error in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2711
+  (0.1ms) rollback transaction