batch_api 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/changelog.md +7 -0
- data/lib/batch_api/configuration.rb +1 -4
- data/lib/batch_api/operation/rack.rb +1 -1
- data/lib/batch_api/version.rb +1 -1
- data/readme.md +30 -5
- data/spec/dummy/log/test.log +1955 -0
- data/spec/integration/shared_examples.rb +37 -26
- data/spec/lib/operation/rack_spec.rb +6 -11
- metadata +4 -4
data/changelog.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
v0.2.2
|
2
|
+
* Update documentation to remove old options and add installation section
|
3
|
+
* Update gems
|
4
|
+
|
5
|
+
v0.2.1
|
6
|
+
* Default the method to GET if no method is specified
|
7
|
+
|
1
8
|
v0.2.0
|
2
9
|
* Refactor app to use internal middlewares for handling operations
|
3
10
|
* Refactor JSON decoding to a middleware
|
@@ -8,10 +8,7 @@ module BatchApi
|
|
8
8
|
# - verb: through which it's accessed (default "POST")
|
9
9
|
# - limit: how many requests can be processed in a single request
|
10
10
|
# (default 50)
|
11
|
-
|
12
|
-
# so they don't get double-decoded (e.g. when you decode the batch
|
13
|
-
# response, the bodies are already objects).
|
14
|
-
#
|
11
|
+
#
|
15
12
|
# There are also two middleware-related options -- check out middleware.rb
|
16
13
|
# for more information.
|
17
14
|
# - global_middleware: any middlewares to use round the entire batch request
|
data/lib/batch_api/version.rb
CHANGED
data/readme.md
CHANGED
@@ -49,13 +49,17 @@ As you can see from the example above, each request in the batch (an
|
|
49
49
|
would include:
|
50
50
|
|
51
51
|
* _url_ - the API endpoint to hit, formatted exactly as you would for a regular
|
52
|
-
REST API request
|
53
|
-
* _method_ - what type of request to make -- GET, POST, PUT, etc.
|
52
|
+
REST API request, leading / and all. (required)
|
53
|
+
* _method_ - what type of request to make -- GET, POST, PUT, etc. If no method
|
54
|
+
is supplied, GET is assumed. (optional)
|
54
55
|
* _args_ - a hash of arguments to the API. This can be used for both GET and
|
55
|
-
PUT/POST/PATCH requests.
|
56
|
-
* _headers_ - a hash of request-specific headers.
|
56
|
+
PUT/POST/PATCH requests. (optional)
|
57
|
+
* _headers_ - a hash of request-specific headers. The headers sent in the
|
57
58
|
request will be included as well, with operation-specific headers taking
|
58
|
-
precendence.)
|
59
|
+
precendence. (optional)
|
60
|
+
* _silent_ - whether to return a response for this request. You can save on
|
61
|
+
transfer if, for instance, you're making several PUT/POST requests, then
|
62
|
+
executing a GET at the end.
|
59
63
|
|
60
64
|
These individual operations are supplied as the "ops" parameter in the
|
61
65
|
overall request. Other options include:
|
@@ -87,6 +91,27 @@ same status code and body they would return as individual requests.
|
|
87
91
|
If the Batch API itself returns a non-200 status code, that indicates a global
|
88
92
|
problem.
|
89
93
|
|
94
|
+
## Installation
|
95
|
+
|
96
|
+
Setting up the Batch API is simple. Just add the gem to your middlewares:
|
97
|
+
|
98
|
+
```ruby
|
99
|
+
# in application.rb
|
100
|
+
config.middleware.use BatchApi::RackMiddleware do |batch_config|
|
101
|
+
# you can set various configuration options:
|
102
|
+
batch_config.verb = :put # default :post
|
103
|
+
batch_config.endpoint = "/batchapi" # default /batch
|
104
|
+
batch_config.limit = 100 # how many operations max per request, default 50
|
105
|
+
|
106
|
+
# default middleware stack run for each batch request
|
107
|
+
batch_config.batch_middleware = Proc.new { }
|
108
|
+
# default middleware stack run for each individual operation
|
109
|
+
batch_config.operation_middleware = Proc.new { }
|
110
|
+
end
|
111
|
+
```
|
112
|
+
|
113
|
+
That's it! Just fire up your curl, hit your endpoint with the right verb and a properly formatted request, and enjoy some batch API action.
|
114
|
+
|
90
115
|
## Why a Batch API?
|
91
116
|
|
92
117
|
Batch APIs, though unRESTful, are useful for reducing HTTP overhead
|
data/spec/dummy/log/test.log
CHANGED
@@ -48235,3 +48235,1958 @@ Completed 500 Internal Server Error in 0ms
|
|
48235
48235
|
Processing by EndpointsController#capture as JS
|
48236
48236
|
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"6870", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"6870"}}
|
48237
48237
|
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48238
|
+
Connecting to database specified by database.yml
|
48239
|
+
Connecting to database specified by database.yml
|
48240
|
+
|
48241
|
+
|
48242
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-11 20:21:08 +0200
|
48243
|
+
Processing by EndpointsController#get as JS
|
48244
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48245
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
48246
|
+
Processing by EndpointsController#post as JS
|
48247
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48248
|
+
Completed 203 Non-Authoritative Information in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48249
|
+
Processing by EndpointsController#error as JS
|
48250
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48251
|
+
Completed 500 Internal Server Error in 0ms
|
48252
|
+
Processing by EndpointsController#capture as JS
|
48253
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"4660", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"4660"}}
|
48254
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48255
|
+
Processing by EndpointsController#post as JS
|
48256
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48257
|
+
Completed 203 Non-Authoritative Information in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48258
|
+
Processing by EndpointsController#error as JS
|
48259
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48260
|
+
Completed 500 Internal Server Error in 0ms
|
48261
|
+
Processing by EndpointsController#get as JS
|
48262
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48263
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48264
|
+
|
48265
|
+
|
48266
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-11 20:21:08 +0200
|
48267
|
+
Processing by EndpointsController#get as JS
|
48268
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48269
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48270
|
+
Processing by EndpointsController#post as JS
|
48271
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48272
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48273
|
+
Processing by EndpointsController#error as JS
|
48274
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48275
|
+
Completed 500 Internal Server Error in 0ms
|
48276
|
+
Processing by EndpointsController#capture as JS
|
48277
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"5959", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"5959"}}
|
48278
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48279
|
+
Processing by EndpointsController#post as JS
|
48280
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48281
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48282
|
+
Processing by EndpointsController#error as JS
|
48283
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48284
|
+
Completed 500 Internal Server Error in 0ms
|
48285
|
+
Processing by EndpointsController#get as JS
|
48286
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48287
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48288
|
+
|
48289
|
+
|
48290
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-11 20:21:08 +0200
|
48291
|
+
Processing by EndpointsController#get as JS
|
48292
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48293
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48294
|
+
Processing by EndpointsController#post as JS
|
48295
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48296
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48297
|
+
Processing by EndpointsController#error as JS
|
48298
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48299
|
+
Completed 500 Internal Server Error in 0ms
|
48300
|
+
Processing by EndpointsController#capture as JS
|
48301
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"4660", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"4660"}}
|
48302
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48303
|
+
Processing by EndpointsController#post as JS
|
48304
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48305
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48306
|
+
Processing by EndpointsController#error as JS
|
48307
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48308
|
+
Completed 500 Internal Server Error in 0ms
|
48309
|
+
Processing by EndpointsController#get as JS
|
48310
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48311
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48312
|
+
|
48313
|
+
|
48314
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-11 20:21:08 +0200
|
48315
|
+
Processing by EndpointsController#get as JS
|
48316
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48317
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48318
|
+
Processing by EndpointsController#post as JS
|
48319
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48320
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48321
|
+
Processing by EndpointsController#error as JS
|
48322
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48323
|
+
Completed 500 Internal Server Error in 0ms
|
48324
|
+
Processing by EndpointsController#capture as JS
|
48325
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"5959", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"5959"}}
|
48326
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48327
|
+
Processing by EndpointsController#post as JS
|
48328
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48329
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48330
|
+
Processing by EndpointsController#error as JS
|
48331
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48332
|
+
Completed 500 Internal Server Error in 0ms
|
48333
|
+
Processing by EndpointsController#get as JS
|
48334
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48335
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48336
|
+
|
48337
|
+
|
48338
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-11 20:21:08 +0200
|
48339
|
+
Processing by EndpointsController#get as JS
|
48340
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48341
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48342
|
+
Processing by EndpointsController#post as JS
|
48343
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48344
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48345
|
+
Processing by EndpointsController#error as JS
|
48346
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48347
|
+
Completed 500 Internal Server Error in 0ms
|
48348
|
+
Processing by EndpointsController#capture as JS
|
48349
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"5959", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"5959"}}
|
48350
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48351
|
+
Processing by EndpointsController#post as JS
|
48352
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48353
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48354
|
+
Processing by EndpointsController#error as JS
|
48355
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48356
|
+
Completed 500 Internal Server Error in 0ms
|
48357
|
+
Processing by EndpointsController#get as JS
|
48358
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48359
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48360
|
+
|
48361
|
+
|
48362
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-11 20:21:08 +0200
|
48363
|
+
Processing by EndpointsController#get as JS
|
48364
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48365
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48366
|
+
Processing by EndpointsController#post as JS
|
48367
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48368
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48369
|
+
Processing by EndpointsController#error as JS
|
48370
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48371
|
+
Completed 500 Internal Server Error in 0ms
|
48372
|
+
Processing by EndpointsController#capture as JS
|
48373
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"794", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"794"}}
|
48374
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48375
|
+
Processing by EndpointsController#post as JS
|
48376
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48377
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48378
|
+
Processing by EndpointsController#error as JS
|
48379
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48380
|
+
Completed 500 Internal Server Error in 0ms
|
48381
|
+
Processing by EndpointsController#get as JS
|
48382
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48383
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48384
|
+
|
48385
|
+
|
48386
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-11 20:21:08 +0200
|
48387
|
+
Processing by EndpointsController#get as JS
|
48388
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48389
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48390
|
+
Processing by EndpointsController#post as JS
|
48391
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48392
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48393
|
+
Processing by EndpointsController#error as JS
|
48394
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48395
|
+
Completed 500 Internal Server Error in 0ms
|
48396
|
+
Processing by EndpointsController#capture as JS
|
48397
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"1230", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"1230"}}
|
48398
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48399
|
+
Processing by EndpointsController#post as JS
|
48400
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48401
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48402
|
+
Processing by EndpointsController#error as JS
|
48403
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48404
|
+
Completed 500 Internal Server Error in 0ms
|
48405
|
+
Processing by EndpointsController#get as JS
|
48406
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48407
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48408
|
+
|
48409
|
+
|
48410
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-11 20:21:08 +0200
|
48411
|
+
Processing by EndpointsController#get as JS
|
48412
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48413
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48414
|
+
Processing by EndpointsController#post as JS
|
48415
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48416
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48417
|
+
Processing by EndpointsController#error as JS
|
48418
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48419
|
+
Completed 500 Internal Server Error in 0ms
|
48420
|
+
Processing by EndpointsController#capture as JS
|
48421
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"1074", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"1074"}}
|
48422
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48423
|
+
Processing by EndpointsController#post as JS
|
48424
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48425
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48426
|
+
Processing by EndpointsController#error as JS
|
48427
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48428
|
+
Completed 500 Internal Server Error in 0ms
|
48429
|
+
Processing by EndpointsController#get as JS
|
48430
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48431
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48432
|
+
|
48433
|
+
|
48434
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-11 20:21:08 +0200
|
48435
|
+
Processing by EndpointsController#get as JS
|
48436
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48437
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48438
|
+
Processing by EndpointsController#post as JS
|
48439
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48440
|
+
Completed 203 Non-Authoritative Information in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48441
|
+
Processing by EndpointsController#error as JS
|
48442
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48443
|
+
Completed 500 Internal Server Error in 0ms
|
48444
|
+
Processing by EndpointsController#capture as JS
|
48445
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"5959", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"5959"}}
|
48446
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48447
|
+
Processing by EndpointsController#post as JS
|
48448
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48449
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48450
|
+
Processing by EndpointsController#error as JS
|
48451
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48452
|
+
Completed 500 Internal Server Error in 0ms
|
48453
|
+
Processing by EndpointsController#get as JS
|
48454
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48455
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48456
|
+
|
48457
|
+
|
48458
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-11 20:21:08 +0200
|
48459
|
+
Processing by EndpointsController#get as JS
|
48460
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48461
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
48462
|
+
Processing by EndpointsController#post as JS
|
48463
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48464
|
+
Completed 203 Non-Authoritative Information in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48465
|
+
Processing by EndpointsController#error as JS
|
48466
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48467
|
+
Completed 500 Internal Server Error in 0ms
|
48468
|
+
Processing by EndpointsController#capture as JS
|
48469
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"794", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"794"}}
|
48470
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48471
|
+
Processing by EndpointsController#post as JS
|
48472
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48473
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48474
|
+
Processing by EndpointsController#error as JS
|
48475
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48476
|
+
Completed 500 Internal Server Error in 0ms
|
48477
|
+
Processing by EndpointsController#get as JS
|
48478
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48479
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48480
|
+
|
48481
|
+
|
48482
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-11 20:21:08 +0200
|
48483
|
+
Processing by EndpointsController#get as JS
|
48484
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48485
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48486
|
+
Processing by EndpointsController#post as JS
|
48487
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48488
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48489
|
+
Processing by EndpointsController#error as JS
|
48490
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48491
|
+
Completed 500 Internal Server Error in 0ms
|
48492
|
+
Processing by EndpointsController#capture as JS
|
48493
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"1230", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"1230"}}
|
48494
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48495
|
+
Processing by EndpointsController#post as JS
|
48496
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48497
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48498
|
+
Processing by EndpointsController#error as JS
|
48499
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48500
|
+
Completed 500 Internal Server Error in 0ms
|
48501
|
+
Processing by EndpointsController#get as JS
|
48502
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48503
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48504
|
+
|
48505
|
+
|
48506
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-11 20:21:08 +0200
|
48507
|
+
Processing by EndpointsController#get as JS
|
48508
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48509
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48510
|
+
Processing by EndpointsController#post as JS
|
48511
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48512
|
+
Completed 203 Non-Authoritative Information in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
48513
|
+
Processing by EndpointsController#error as JS
|
48514
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48515
|
+
Completed 500 Internal Server Error in 0ms
|
48516
|
+
Processing by EndpointsController#capture as JS
|
48517
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"1074", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"1074"}}
|
48518
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48519
|
+
Processing by EndpointsController#post as JS
|
48520
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48521
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48522
|
+
Processing by EndpointsController#error as JS
|
48523
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48524
|
+
Completed 500 Internal Server Error in 0ms
|
48525
|
+
Processing by EndpointsController#get as JS
|
48526
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48527
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48528
|
+
|
48529
|
+
|
48530
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-11 20:21:08 +0200
|
48531
|
+
Processing by EndpointsController#get as JS
|
48532
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48533
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48534
|
+
Processing by EndpointsController#post as JS
|
48535
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48536
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48537
|
+
Processing by EndpointsController#error as JS
|
48538
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48539
|
+
Completed 500 Internal Server Error in 0ms
|
48540
|
+
Processing by EndpointsController#capture as JS
|
48541
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"6086", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"6086"}}
|
48542
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48543
|
+
Processing by EndpointsController#post as JS
|
48544
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48545
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48546
|
+
Processing by EndpointsController#error as JS
|
48547
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48548
|
+
Completed 500 Internal Server Error in 0ms
|
48549
|
+
Processing by EndpointsController#get as JS
|
48550
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48551
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48552
|
+
|
48553
|
+
|
48554
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-11 20:21:08 +0200
|
48555
|
+
Processing by EndpointsController#get as JS
|
48556
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48557
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48558
|
+
Processing by EndpointsController#post as JS
|
48559
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48560
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48561
|
+
Processing by EndpointsController#error as JS
|
48562
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48563
|
+
Completed 500 Internal Server Error in 0ms
|
48564
|
+
Processing by EndpointsController#capture as JS
|
48565
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"6086", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"6086"}}
|
48566
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48567
|
+
Processing by EndpointsController#post as JS
|
48568
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48569
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48570
|
+
Processing by EndpointsController#error as JS
|
48571
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48572
|
+
Completed 500 Internal Server Error in 0ms
|
48573
|
+
Processing by EndpointsController#get as JS
|
48574
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48575
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48576
|
+
|
48577
|
+
|
48578
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-11 20:21:08 +0200
|
48579
|
+
Processing by EndpointsController#get as JS
|
48580
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48581
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48582
|
+
Processing by EndpointsController#post as JS
|
48583
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48584
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48585
|
+
Processing by EndpointsController#error as JS
|
48586
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48587
|
+
Completed 500 Internal Server Error in 0ms
|
48588
|
+
Processing by EndpointsController#capture as JS
|
48589
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"6086", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"6086"}}
|
48590
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48591
|
+
Processing by EndpointsController#post as JS
|
48592
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48593
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48594
|
+
Processing by EndpointsController#error as JS
|
48595
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48596
|
+
Completed 500 Internal Server Error in 0ms
|
48597
|
+
Processing by EndpointsController#get as JS
|
48598
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48599
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48600
|
+
|
48601
|
+
|
48602
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-11 20:21:09 +0200
|
48603
|
+
Processing by EndpointsController#get as JS
|
48604
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48605
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48606
|
+
Processing by EndpointsController#post as JS
|
48607
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48608
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48609
|
+
Processing by EndpointsController#error as JS
|
48610
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48611
|
+
Completed 500 Internal Server Error in 0ms
|
48612
|
+
Processing by EndpointsController#capture as JS
|
48613
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"6086", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"6086"}}
|
48614
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48615
|
+
Processing by EndpointsController#post as JS
|
48616
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48617
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48618
|
+
Processing by EndpointsController#error as JS
|
48619
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48620
|
+
Completed 500 Internal Server Error in 0ms
|
48621
|
+
Processing by EndpointsController#get as JS
|
48622
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48623
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48624
|
+
|
48625
|
+
|
48626
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-11 20:21:09 +0200
|
48627
|
+
Processing by EndpointsController#get as JS
|
48628
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48629
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48630
|
+
Processing by EndpointsController#post as JS
|
48631
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48632
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48633
|
+
Processing by EndpointsController#error as JS
|
48634
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48635
|
+
Completed 500 Internal Server Error in 0ms
|
48636
|
+
Processing by EndpointsController#capture as JS
|
48637
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"1625", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"1625"}}
|
48638
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48639
|
+
Processing by EndpointsController#post as JS
|
48640
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48641
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48642
|
+
Processing by EndpointsController#error as JS
|
48643
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48644
|
+
Completed 500 Internal Server Error in 0ms
|
48645
|
+
Processing by EndpointsController#get as JS
|
48646
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48647
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48648
|
+
|
48649
|
+
|
48650
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-11 20:21:09 +0200
|
48651
|
+
Processing by EndpointsController#get as JS
|
48652
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48653
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
48654
|
+
Processing by EndpointsController#post as JS
|
48655
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48656
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48657
|
+
Processing by EndpointsController#error as JS
|
48658
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48659
|
+
Completed 500 Internal Server Error in 0ms
|
48660
|
+
Processing by EndpointsController#capture as JS
|
48661
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"8645", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"8645"}}
|
48662
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48663
|
+
Processing by EndpointsController#post as JS
|
48664
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48665
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48666
|
+
Processing by EndpointsController#error as JS
|
48667
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48668
|
+
Completed 500 Internal Server Error in 0ms
|
48669
|
+
Processing by EndpointsController#get as JS
|
48670
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48671
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48672
|
+
|
48673
|
+
|
48674
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-11 20:21:09 +0200
|
48675
|
+
Processing by EndpointsController#get as JS
|
48676
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48677
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48678
|
+
Processing by EndpointsController#post as JS
|
48679
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48680
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48681
|
+
Processing by EndpointsController#error as JS
|
48682
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48683
|
+
Completed 500 Internal Server Error in 0ms
|
48684
|
+
Processing by EndpointsController#capture as JS
|
48685
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"6781", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"6781"}}
|
48686
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48687
|
+
Processing by EndpointsController#post as JS
|
48688
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48689
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48690
|
+
Processing by EndpointsController#error as JS
|
48691
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48692
|
+
Completed 500 Internal Server Error in 0ms
|
48693
|
+
Processing by EndpointsController#get as JS
|
48694
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48695
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48696
|
+
|
48697
|
+
|
48698
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-11 20:21:09 +0200
|
48699
|
+
Processing by EndpointsController#post as JS
|
48700
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48701
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48702
|
+
|
48703
|
+
|
48704
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-11 20:21:09 +0200
|
48705
|
+
Processing by EndpointsController#get as JS
|
48706
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48707
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48708
|
+
Processing by EndpointsController#post as JS
|
48709
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48710
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48711
|
+
Processing by EndpointsController#error as JS
|
48712
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48713
|
+
Completed 500 Internal Server Error in 0ms
|
48714
|
+
Processing by EndpointsController#capture as JS
|
48715
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"2649", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"2649"}}
|
48716
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48717
|
+
Processing by EndpointsController#post as JS
|
48718
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48719
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48720
|
+
Processing by EndpointsController#error as JS
|
48721
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48722
|
+
Completed 500 Internal Server Error in 0ms
|
48723
|
+
Processing by EndpointsController#get as JS
|
48724
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48725
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48726
|
+
|
48727
|
+
|
48728
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-11 20:21:09 +0200
|
48729
|
+
Processing by EndpointsController#get as JS
|
48730
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48731
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48732
|
+
Processing by EndpointsController#post as JS
|
48733
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48734
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48735
|
+
Processing by EndpointsController#error as JS
|
48736
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48737
|
+
Completed 500 Internal Server Error in 0ms
|
48738
|
+
Processing by EndpointsController#capture as JS
|
48739
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"3854", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"3854"}}
|
48740
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48741
|
+
Processing by EndpointsController#post as JS
|
48742
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48743
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48744
|
+
Processing by EndpointsController#error as JS
|
48745
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48746
|
+
Completed 500 Internal Server Error in 0ms
|
48747
|
+
Processing by EndpointsController#get as JS
|
48748
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48749
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48750
|
+
Connecting to database specified by database.yml
|
48751
|
+
|
48752
|
+
|
48753
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:49:31 +0200
|
48754
|
+
Processing by EndpointsController#get as JS
|
48755
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48756
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
48757
|
+
Processing by EndpointsController#post as JS
|
48758
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48759
|
+
Completed 203 Non-Authoritative Information in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48760
|
+
Processing by EndpointsController#error as JS
|
48761
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48762
|
+
Completed 500 Internal Server Error in 0ms
|
48763
|
+
Processing by EndpointsController#capture as JS
|
48764
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"305", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"305"}}
|
48765
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48766
|
+
Processing by EndpointsController#post as JS
|
48767
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48768
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48769
|
+
Processing by EndpointsController#error as JS
|
48770
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48771
|
+
Completed 500 Internal Server Error in 0ms
|
48772
|
+
Processing by EndpointsController#get as JS
|
48773
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48774
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48775
|
+
|
48776
|
+
|
48777
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:49:32 +0200
|
48778
|
+
Processing by EndpointsController#get as JS
|
48779
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48780
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48781
|
+
Processing by EndpointsController#post as JS
|
48782
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48783
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48784
|
+
Processing by EndpointsController#error as JS
|
48785
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48786
|
+
Completed 500 Internal Server Error in 0ms
|
48787
|
+
Processing by EndpointsController#capture as JS
|
48788
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"6389", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"6389"}}
|
48789
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48790
|
+
Processing by EndpointsController#post as JS
|
48791
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48792
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48793
|
+
Processing by EndpointsController#error as JS
|
48794
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48795
|
+
Completed 500 Internal Server Error in 0ms
|
48796
|
+
Processing by EndpointsController#get as JS
|
48797
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48798
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48799
|
+
|
48800
|
+
|
48801
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:49:32 +0200
|
48802
|
+
Processing by EndpointsController#get as JS
|
48803
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48804
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48805
|
+
Processing by EndpointsController#post as JS
|
48806
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48807
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48808
|
+
Processing by EndpointsController#error as JS
|
48809
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48810
|
+
Completed 500 Internal Server Error in 0ms
|
48811
|
+
Processing by EndpointsController#capture as JS
|
48812
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"6389", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"6389"}}
|
48813
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48814
|
+
Processing by EndpointsController#post as JS
|
48815
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48816
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48817
|
+
Processing by EndpointsController#error as JS
|
48818
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48819
|
+
Completed 500 Internal Server Error in 0ms
|
48820
|
+
Processing by EndpointsController#get as JS
|
48821
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48822
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48823
|
+
|
48824
|
+
|
48825
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:49:32 +0200
|
48826
|
+
Processing by EndpointsController#get as JS
|
48827
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48828
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48829
|
+
Processing by EndpointsController#post as JS
|
48830
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48831
|
+
Completed 203 Non-Authoritative Information in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
48832
|
+
Processing by EndpointsController#error as JS
|
48833
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48834
|
+
Completed 500 Internal Server Error in 0ms
|
48835
|
+
Processing by EndpointsController#capture as JS
|
48836
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"614", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"614"}}
|
48837
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48838
|
+
Processing by EndpointsController#post as JS
|
48839
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48840
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48841
|
+
Processing by EndpointsController#error as JS
|
48842
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48843
|
+
Completed 500 Internal Server Error in 0ms
|
48844
|
+
Processing by EndpointsController#get as JS
|
48845
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48846
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48847
|
+
|
48848
|
+
|
48849
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:49:32 +0200
|
48850
|
+
Processing by EndpointsController#get as JS
|
48851
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48852
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48853
|
+
Processing by EndpointsController#post as JS
|
48854
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48855
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48856
|
+
Processing by EndpointsController#error as JS
|
48857
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48858
|
+
Completed 500 Internal Server Error in 0ms
|
48859
|
+
Processing by EndpointsController#capture as JS
|
48860
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"5913", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"5913"}}
|
48861
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48862
|
+
Processing by EndpointsController#post as JS
|
48863
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48864
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48865
|
+
Processing by EndpointsController#error as JS
|
48866
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48867
|
+
Completed 500 Internal Server Error in 0ms
|
48868
|
+
Processing by EndpointsController#get as JS
|
48869
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48870
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48871
|
+
|
48872
|
+
|
48873
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:49:32 +0200
|
48874
|
+
Processing by EndpointsController#get as JS
|
48875
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48876
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48877
|
+
Processing by EndpointsController#post as JS
|
48878
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48879
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48880
|
+
Processing by EndpointsController#error as JS
|
48881
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48882
|
+
Completed 500 Internal Server Error in 0ms
|
48883
|
+
Processing by EndpointsController#capture as JS
|
48884
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"6658", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"6658"}}
|
48885
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48886
|
+
Processing by EndpointsController#post as JS
|
48887
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48888
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48889
|
+
Processing by EndpointsController#error as JS
|
48890
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48891
|
+
Completed 500 Internal Server Error in 0ms
|
48892
|
+
Processing by EndpointsController#get as JS
|
48893
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48894
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48895
|
+
|
48896
|
+
|
48897
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:49:32 +0200
|
48898
|
+
Processing by EndpointsController#get as JS
|
48899
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48900
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48901
|
+
Processing by EndpointsController#post as JS
|
48902
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48903
|
+
Completed 203 Non-Authoritative Information in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48904
|
+
Processing by EndpointsController#error as JS
|
48905
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48906
|
+
Completed 500 Internal Server Error in 0ms
|
48907
|
+
Processing by EndpointsController#capture as JS
|
48908
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"1824", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"1824"}}
|
48909
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48910
|
+
Processing by EndpointsController#post as JS
|
48911
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48912
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48913
|
+
Processing by EndpointsController#error as JS
|
48914
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48915
|
+
Completed 500 Internal Server Error in 0ms
|
48916
|
+
Processing by EndpointsController#get as JS
|
48917
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48918
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48919
|
+
|
48920
|
+
|
48921
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:49:32 +0200
|
48922
|
+
Processing by EndpointsController#get as JS
|
48923
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48924
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48925
|
+
Processing by EndpointsController#post as JS
|
48926
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48927
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48928
|
+
Processing by EndpointsController#error as JS
|
48929
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48930
|
+
Completed 500 Internal Server Error in 0ms
|
48931
|
+
Processing by EndpointsController#capture as JS
|
48932
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"6389", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"6389"}}
|
48933
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48934
|
+
Processing by EndpointsController#post as JS
|
48935
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48936
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48937
|
+
Processing by EndpointsController#error as JS
|
48938
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48939
|
+
Completed 500 Internal Server Error in 0ms
|
48940
|
+
Processing by EndpointsController#get as JS
|
48941
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48942
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48943
|
+
|
48944
|
+
|
48945
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:49:32 +0200
|
48946
|
+
Processing by EndpointsController#get as JS
|
48947
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48948
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48949
|
+
Processing by EndpointsController#post as JS
|
48950
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48951
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48952
|
+
Processing by EndpointsController#error as JS
|
48953
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48954
|
+
Completed 500 Internal Server Error in 0ms
|
48955
|
+
Processing by EndpointsController#capture as JS
|
48956
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"614", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"614"}}
|
48957
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48958
|
+
Processing by EndpointsController#post as JS
|
48959
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48960
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48961
|
+
Processing by EndpointsController#error as JS
|
48962
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48963
|
+
Completed 500 Internal Server Error in 0ms
|
48964
|
+
Processing by EndpointsController#get as JS
|
48965
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48966
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48967
|
+
|
48968
|
+
|
48969
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:49:32 +0200
|
48970
|
+
Processing by EndpointsController#get as JS
|
48971
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48972
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48973
|
+
Processing by EndpointsController#post as JS
|
48974
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48975
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48976
|
+
Processing by EndpointsController#error as JS
|
48977
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48978
|
+
Completed 500 Internal Server Error in 0ms
|
48979
|
+
Processing by EndpointsController#capture as JS
|
48980
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"5913", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"5913"}}
|
48981
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48982
|
+
Processing by EndpointsController#post as JS
|
48983
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
48984
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
48985
|
+
Processing by EndpointsController#error as JS
|
48986
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
48987
|
+
Completed 500 Internal Server Error in 0ms
|
48988
|
+
Processing by EndpointsController#get as JS
|
48989
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48990
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
48991
|
+
|
48992
|
+
|
48993
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:49:32 +0200
|
48994
|
+
Processing by EndpointsController#get as JS
|
48995
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
48996
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
48997
|
+
Processing by EndpointsController#post as JS
|
48998
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
48999
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49000
|
+
Processing by EndpointsController#error as JS
|
49001
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49002
|
+
Completed 500 Internal Server Error in 0ms
|
49003
|
+
Processing by EndpointsController#capture as JS
|
49004
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"6658", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"6658"}}
|
49005
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49006
|
+
Processing by EndpointsController#post as JS
|
49007
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49008
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49009
|
+
Processing by EndpointsController#error as JS
|
49010
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49011
|
+
Completed 500 Internal Server Error in 0ms
|
49012
|
+
Processing by EndpointsController#get as JS
|
49013
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49014
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49015
|
+
|
49016
|
+
|
49017
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:49:32 +0200
|
49018
|
+
Processing by EndpointsController#get as JS
|
49019
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49020
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49021
|
+
Processing by EndpointsController#post as JS
|
49022
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49023
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49024
|
+
Processing by EndpointsController#error as JS
|
49025
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49026
|
+
Completed 500 Internal Server Error in 0ms
|
49027
|
+
Processing by EndpointsController#capture as JS
|
49028
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"6389", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"6389"}}
|
49029
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49030
|
+
Processing by EndpointsController#post as JS
|
49031
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49032
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49033
|
+
Processing by EndpointsController#error as JS
|
49034
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49035
|
+
Completed 500 Internal Server Error in 0ms
|
49036
|
+
Processing by EndpointsController#get as JS
|
49037
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49038
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
49039
|
+
|
49040
|
+
|
49041
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:49:32 +0200
|
49042
|
+
Processing by EndpointsController#get as JS
|
49043
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49044
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
49045
|
+
Processing by EndpointsController#post as JS
|
49046
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49047
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
49048
|
+
Processing by EndpointsController#error as JS
|
49049
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49050
|
+
Completed 500 Internal Server Error in 0ms
|
49051
|
+
Processing by EndpointsController#capture as JS
|
49052
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"614", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"614"}}
|
49053
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49054
|
+
Processing by EndpointsController#post as JS
|
49055
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49056
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49057
|
+
Processing by EndpointsController#error as JS
|
49058
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49059
|
+
Completed 500 Internal Server Error in 0ms
|
49060
|
+
Processing by EndpointsController#get as JS
|
49061
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49062
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49063
|
+
|
49064
|
+
|
49065
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:49:32 +0200
|
49066
|
+
Processing by EndpointsController#get as JS
|
49067
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49068
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
49069
|
+
Processing by EndpointsController#post as JS
|
49070
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49071
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
49072
|
+
Processing by EndpointsController#error as JS
|
49073
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49074
|
+
Completed 500 Internal Server Error in 0ms
|
49075
|
+
Processing by EndpointsController#capture as JS
|
49076
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"5913", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"5913"}}
|
49077
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49078
|
+
Processing by EndpointsController#post as JS
|
49079
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49080
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49081
|
+
Processing by EndpointsController#error as JS
|
49082
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49083
|
+
Completed 500 Internal Server Error in 0ms
|
49084
|
+
Processing by EndpointsController#get as JS
|
49085
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49086
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49087
|
+
|
49088
|
+
|
49089
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:49:32 +0200
|
49090
|
+
Processing by EndpointsController#get as JS
|
49091
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49092
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
49093
|
+
Processing by EndpointsController#post as JS
|
49094
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49095
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49096
|
+
Processing by EndpointsController#error as JS
|
49097
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49098
|
+
Completed 500 Internal Server Error in 0ms
|
49099
|
+
Processing by EndpointsController#capture as JS
|
49100
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"6658", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"6658"}}
|
49101
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49102
|
+
Processing by EndpointsController#post as JS
|
49103
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49104
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49105
|
+
Processing by EndpointsController#error as JS
|
49106
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49107
|
+
Completed 500 Internal Server Error in 0ms
|
49108
|
+
Processing by EndpointsController#get as JS
|
49109
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49110
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49111
|
+
|
49112
|
+
|
49113
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:49:32 +0200
|
49114
|
+
Processing by EndpointsController#get as JS
|
49115
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49116
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49117
|
+
Processing by EndpointsController#post as JS
|
49118
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49119
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49120
|
+
Processing by EndpointsController#error as JS
|
49121
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49122
|
+
Completed 500 Internal Server Error in 0ms
|
49123
|
+
Processing by EndpointsController#capture as JS
|
49124
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"1824", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"1824"}}
|
49125
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49126
|
+
Processing by EndpointsController#post as JS
|
49127
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49128
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49129
|
+
Processing by EndpointsController#error as JS
|
49130
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49131
|
+
Completed 500 Internal Server Error in 0ms
|
49132
|
+
Processing by EndpointsController#get as JS
|
49133
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49134
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49135
|
+
|
49136
|
+
|
49137
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:49:32 +0200
|
49138
|
+
Processing by EndpointsController#get as JS
|
49139
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49140
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49141
|
+
Processing by EndpointsController#post as JS
|
49142
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49143
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49144
|
+
Processing by EndpointsController#error as JS
|
49145
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49146
|
+
Completed 500 Internal Server Error in 0ms
|
49147
|
+
Processing by EndpointsController#capture as JS
|
49148
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"305", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"305"}}
|
49149
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49150
|
+
Processing by EndpointsController#post as JS
|
49151
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49152
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49153
|
+
Processing by EndpointsController#error as JS
|
49154
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49155
|
+
Completed 500 Internal Server Error in 0ms
|
49156
|
+
Processing by EndpointsController#get as JS
|
49157
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49158
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49159
|
+
|
49160
|
+
|
49161
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:49:32 +0200
|
49162
|
+
Processing by EndpointsController#get as JS
|
49163
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49164
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
49165
|
+
Processing by EndpointsController#post as JS
|
49166
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49167
|
+
Completed 203 Non-Authoritative Information in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
49168
|
+
Processing by EndpointsController#error as JS
|
49169
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49170
|
+
Completed 500 Internal Server Error in 0ms
|
49171
|
+
Processing by EndpointsController#capture as JS
|
49172
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"6389", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"6389"}}
|
49173
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49174
|
+
Processing by EndpointsController#post as JS
|
49175
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49176
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49177
|
+
Processing by EndpointsController#error as JS
|
49178
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49179
|
+
Completed 500 Internal Server Error in 0ms
|
49180
|
+
Processing by EndpointsController#get as JS
|
49181
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49182
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49183
|
+
|
49184
|
+
|
49185
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:49:32 +0200
|
49186
|
+
Processing by EndpointsController#get as JS
|
49187
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49188
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
49189
|
+
Processing by EndpointsController#post as JS
|
49190
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49191
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49192
|
+
Processing by EndpointsController#error as JS
|
49193
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49194
|
+
Completed 500 Internal Server Error in 0ms
|
49195
|
+
Processing by EndpointsController#capture as JS
|
49196
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"1824", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"1824"}}
|
49197
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49198
|
+
Processing by EndpointsController#post as JS
|
49199
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49200
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49201
|
+
Processing by EndpointsController#error as JS
|
49202
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49203
|
+
Completed 500 Internal Server Error in 0ms
|
49204
|
+
Processing by EndpointsController#get as JS
|
49205
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49206
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49207
|
+
|
49208
|
+
|
49209
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:49:32 +0200
|
49210
|
+
Processing by EndpointsController#get as JS
|
49211
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49212
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49213
|
+
Processing by EndpointsController#post as JS
|
49214
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49215
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49216
|
+
Processing by EndpointsController#error as JS
|
49217
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49218
|
+
Completed 500 Internal Server Error in 0ms
|
49219
|
+
Processing by EndpointsController#capture as JS
|
49220
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"1824", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"1824"}}
|
49221
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49222
|
+
Processing by EndpointsController#post as JS
|
49223
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49224
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49225
|
+
Processing by EndpointsController#error as JS
|
49226
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49227
|
+
Completed 500 Internal Server Error in 0ms
|
49228
|
+
Processing by EndpointsController#get as JS
|
49229
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49230
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49231
|
+
Connecting to database specified by database.yml
|
49232
|
+
|
49233
|
+
|
49234
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:53:16 +0200
|
49235
|
+
Processing by EndpointsController#get as JS
|
49236
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49237
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
49238
|
+
Processing by EndpointsController#post as JS
|
49239
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49240
|
+
Completed 203 Non-Authoritative Information in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
49241
|
+
Processing by EndpointsController#error as JS
|
49242
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49243
|
+
Completed 500 Internal Server Error in 1ms
|
49244
|
+
Processing by EndpointsController#capture as JS
|
49245
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"7627", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"7627"}}
|
49246
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49247
|
+
Processing by EndpointsController#post as JS
|
49248
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49249
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49250
|
+
Processing by EndpointsController#error as JS
|
49251
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49252
|
+
Completed 500 Internal Server Error in 0ms
|
49253
|
+
Processing by EndpointsController#get as JS
|
49254
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49255
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49256
|
+
|
49257
|
+
|
49258
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:53:16 +0200
|
49259
|
+
Processing by EndpointsController#get as JS
|
49260
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49261
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
49262
|
+
Processing by EndpointsController#post as JS
|
49263
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49264
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49265
|
+
Processing by EndpointsController#error as JS
|
49266
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49267
|
+
Completed 500 Internal Server Error in 0ms
|
49268
|
+
Processing by EndpointsController#capture as JS
|
49269
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"7345", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"7345"}}
|
49270
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49271
|
+
Processing by EndpointsController#post as JS
|
49272
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49273
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49274
|
+
Processing by EndpointsController#error as JS
|
49275
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49276
|
+
Completed 500 Internal Server Error in 0ms
|
49277
|
+
Processing by EndpointsController#get as JS
|
49278
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49279
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49280
|
+
|
49281
|
+
|
49282
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:53:16 +0200
|
49283
|
+
Processing by EndpointsController#get as JS
|
49284
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49285
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
49286
|
+
Processing by EndpointsController#post as JS
|
49287
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49288
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49289
|
+
Processing by EndpointsController#error as JS
|
49290
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49291
|
+
Completed 500 Internal Server Error in 0ms
|
49292
|
+
Processing by EndpointsController#capture as JS
|
49293
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"329", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"329"}}
|
49294
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49295
|
+
Processing by EndpointsController#post as JS
|
49296
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49297
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49298
|
+
Processing by EndpointsController#error as JS
|
49299
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49300
|
+
Completed 500 Internal Server Error in 0ms
|
49301
|
+
Processing by EndpointsController#get as JS
|
49302
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49303
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49304
|
+
|
49305
|
+
|
49306
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:53:16 +0200
|
49307
|
+
Processing by EndpointsController#get as JS
|
49308
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49309
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
49310
|
+
Processing by EndpointsController#post as JS
|
49311
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49312
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49313
|
+
Processing by EndpointsController#error as JS
|
49314
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49315
|
+
Completed 500 Internal Server Error in 0ms
|
49316
|
+
Processing by EndpointsController#capture as JS
|
49317
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"329", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"329"}}
|
49318
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49319
|
+
Processing by EndpointsController#post as JS
|
49320
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49321
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49322
|
+
Processing by EndpointsController#error as JS
|
49323
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49324
|
+
Completed 500 Internal Server Error in 0ms
|
49325
|
+
Processing by EndpointsController#get as JS
|
49326
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49327
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49328
|
+
|
49329
|
+
|
49330
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:53:16 +0200
|
49331
|
+
Processing by EndpointsController#get as JS
|
49332
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49333
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
49334
|
+
Processing by EndpointsController#post as JS
|
49335
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49336
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49337
|
+
Processing by EndpointsController#error as JS
|
49338
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49339
|
+
Completed 500 Internal Server Error in 0ms
|
49340
|
+
Processing by EndpointsController#capture as JS
|
49341
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"7345", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"7345"}}
|
49342
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49343
|
+
Processing by EndpointsController#post as JS
|
49344
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49345
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49346
|
+
Processing by EndpointsController#error as JS
|
49347
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49348
|
+
Completed 500 Internal Server Error in 0ms
|
49349
|
+
Processing by EndpointsController#get as JS
|
49350
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49351
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49352
|
+
|
49353
|
+
|
49354
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:53:16 +0200
|
49355
|
+
Processing by EndpointsController#get as JS
|
49356
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49357
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49358
|
+
Processing by EndpointsController#post as JS
|
49359
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49360
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49361
|
+
Processing by EndpointsController#error as JS
|
49362
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49363
|
+
Completed 500 Internal Server Error in 0ms
|
49364
|
+
Processing by EndpointsController#capture as JS
|
49365
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"7182", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"7182"}}
|
49366
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49367
|
+
Processing by EndpointsController#post as JS
|
49368
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49369
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49370
|
+
Processing by EndpointsController#error as JS
|
49371
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49372
|
+
Completed 500 Internal Server Error in 0ms
|
49373
|
+
Processing by EndpointsController#get as JS
|
49374
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49375
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49376
|
+
|
49377
|
+
|
49378
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:53:16 +0200
|
49379
|
+
Processing by EndpointsController#get as JS
|
49380
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49381
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
49382
|
+
Processing by EndpointsController#post as JS
|
49383
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49384
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49385
|
+
Processing by EndpointsController#error as JS
|
49386
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49387
|
+
Completed 500 Internal Server Error in 0ms
|
49388
|
+
Processing by EndpointsController#capture as JS
|
49389
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"8404", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"8404"}}
|
49390
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49391
|
+
Processing by EndpointsController#post as JS
|
49392
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49393
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49394
|
+
Processing by EndpointsController#error as JS
|
49395
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49396
|
+
Completed 500 Internal Server Error in 0ms
|
49397
|
+
Processing by EndpointsController#get as JS
|
49398
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49399
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49400
|
+
|
49401
|
+
|
49402
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:53:16 +0200
|
49403
|
+
Processing by EndpointsController#get as JS
|
49404
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49405
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49406
|
+
Processing by EndpointsController#post as JS
|
49407
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49408
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49409
|
+
Processing by EndpointsController#error as JS
|
49410
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49411
|
+
Completed 500 Internal Server Error in 0ms
|
49412
|
+
Processing by EndpointsController#capture as JS
|
49413
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"5039", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"5039"}}
|
49414
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49415
|
+
Processing by EndpointsController#post as JS
|
49416
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49417
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49418
|
+
Processing by EndpointsController#error as JS
|
49419
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49420
|
+
Completed 500 Internal Server Error in 0ms
|
49421
|
+
Processing by EndpointsController#get as JS
|
49422
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49423
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49424
|
+
|
49425
|
+
|
49426
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:53:16 +0200
|
49427
|
+
Processing by EndpointsController#get as JS
|
49428
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49429
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
49430
|
+
Processing by EndpointsController#post as JS
|
49431
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49432
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49433
|
+
Processing by EndpointsController#error as JS
|
49434
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49435
|
+
Completed 500 Internal Server Error in 0ms
|
49436
|
+
Processing by EndpointsController#capture as JS
|
49437
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"7345", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"7345"}}
|
49438
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49439
|
+
Processing by EndpointsController#post as JS
|
49440
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49441
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49442
|
+
Processing by EndpointsController#error as JS
|
49443
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49444
|
+
Completed 500 Internal Server Error in 0ms
|
49445
|
+
Processing by EndpointsController#get as JS
|
49446
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49447
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49448
|
+
|
49449
|
+
|
49450
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:53:16 +0200
|
49451
|
+
Processing by EndpointsController#get as JS
|
49452
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49453
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
49454
|
+
Processing by EndpointsController#post as JS
|
49455
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49456
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49457
|
+
Processing by EndpointsController#error as JS
|
49458
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49459
|
+
Completed 500 Internal Server Error in 0ms
|
49460
|
+
Processing by EndpointsController#capture as JS
|
49461
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"7182", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"7182"}}
|
49462
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49463
|
+
Processing by EndpointsController#post as JS
|
49464
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49465
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49466
|
+
Processing by EndpointsController#error as JS
|
49467
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49468
|
+
Completed 500 Internal Server Error in 0ms
|
49469
|
+
Processing by EndpointsController#get as JS
|
49470
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49471
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49472
|
+
|
49473
|
+
|
49474
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:53:16 +0200
|
49475
|
+
Processing by EndpointsController#get as JS
|
49476
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49477
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
49478
|
+
Processing by EndpointsController#post as JS
|
49479
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49480
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49481
|
+
Processing by EndpointsController#error as JS
|
49482
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49483
|
+
Completed 500 Internal Server Error in 0ms
|
49484
|
+
Processing by EndpointsController#capture as JS
|
49485
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"8404", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"8404"}}
|
49486
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49487
|
+
Processing by EndpointsController#post as JS
|
49488
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49489
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49490
|
+
Processing by EndpointsController#error as JS
|
49491
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49492
|
+
Completed 500 Internal Server Error in 0ms
|
49493
|
+
Processing by EndpointsController#get as JS
|
49494
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49495
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49496
|
+
|
49497
|
+
|
49498
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:53:16 +0200
|
49499
|
+
Processing by EndpointsController#get as JS
|
49500
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49501
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49502
|
+
Processing by EndpointsController#post as JS
|
49503
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49504
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49505
|
+
Processing by EndpointsController#error as JS
|
49506
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49507
|
+
Completed 500 Internal Server Error in 0ms
|
49508
|
+
Processing by EndpointsController#capture as JS
|
49509
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"5039", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"5039"}}
|
49510
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49511
|
+
Processing by EndpointsController#post as JS
|
49512
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49513
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49514
|
+
Processing by EndpointsController#error as JS
|
49515
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49516
|
+
Completed 500 Internal Server Error in 0ms
|
49517
|
+
Processing by EndpointsController#get as JS
|
49518
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49519
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
49520
|
+
|
49521
|
+
|
49522
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:53:16 +0200
|
49523
|
+
Processing by EndpointsController#get as JS
|
49524
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49525
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49526
|
+
Processing by EndpointsController#post as JS
|
49527
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49528
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49529
|
+
Processing by EndpointsController#error as JS
|
49530
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49531
|
+
Completed 500 Internal Server Error in 0ms
|
49532
|
+
Processing by EndpointsController#capture as JS
|
49533
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"7627", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"7627"}}
|
49534
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49535
|
+
Processing by EndpointsController#post as JS
|
49536
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49537
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49538
|
+
Processing by EndpointsController#error as JS
|
49539
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49540
|
+
Completed 500 Internal Server Error in 0ms
|
49541
|
+
Processing by EndpointsController#get as JS
|
49542
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49543
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49544
|
+
|
49545
|
+
|
49546
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:53:16 +0200
|
49547
|
+
Processing by EndpointsController#get as JS
|
49548
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49549
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49550
|
+
Processing by EndpointsController#post as JS
|
49551
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49552
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49553
|
+
Processing by EndpointsController#error as JS
|
49554
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49555
|
+
Completed 500 Internal Server Error in 0ms
|
49556
|
+
Processing by EndpointsController#capture as JS
|
49557
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"7345", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"7345"}}
|
49558
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49559
|
+
Processing by EndpointsController#post as JS
|
49560
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49561
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49562
|
+
Processing by EndpointsController#error as JS
|
49563
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49564
|
+
Completed 500 Internal Server Error in 0ms
|
49565
|
+
Processing by EndpointsController#get as JS
|
49566
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49567
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49568
|
+
|
49569
|
+
|
49570
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:53:16 +0200
|
49571
|
+
Processing by EndpointsController#get as JS
|
49572
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49573
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
49574
|
+
Processing by EndpointsController#post as JS
|
49575
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49576
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49577
|
+
Processing by EndpointsController#error as JS
|
49578
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49579
|
+
Completed 500 Internal Server Error in 0ms
|
49580
|
+
Processing by EndpointsController#capture as JS
|
49581
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"329", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"329"}}
|
49582
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49583
|
+
Processing by EndpointsController#post as JS
|
49584
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49585
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49586
|
+
Processing by EndpointsController#error as JS
|
49587
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49588
|
+
Completed 500 Internal Server Error in 0ms
|
49589
|
+
Processing by EndpointsController#get as JS
|
49590
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49591
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
49592
|
+
|
49593
|
+
|
49594
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:53:16 +0200
|
49595
|
+
Processing by EndpointsController#get as JS
|
49596
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49597
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
49598
|
+
Processing by EndpointsController#post as JS
|
49599
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49600
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49601
|
+
Processing by EndpointsController#error as JS
|
49602
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49603
|
+
Completed 500 Internal Server Error in 0ms
|
49604
|
+
Processing by EndpointsController#capture as JS
|
49605
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"329", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"329"}}
|
49606
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49607
|
+
Processing by EndpointsController#post as JS
|
49608
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49609
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49610
|
+
Processing by EndpointsController#error as JS
|
49611
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49612
|
+
Completed 500 Internal Server Error in 0ms
|
49613
|
+
Processing by EndpointsController#get as JS
|
49614
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49615
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49616
|
+
|
49617
|
+
|
49618
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:53:16 +0200
|
49619
|
+
Processing by EndpointsController#get as JS
|
49620
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49621
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49622
|
+
Processing by EndpointsController#post as JS
|
49623
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49624
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49625
|
+
Processing by EndpointsController#error as JS
|
49626
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49627
|
+
Completed 500 Internal Server Error in 0ms
|
49628
|
+
Processing by EndpointsController#capture as JS
|
49629
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"7345", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"7345"}}
|
49630
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49631
|
+
Processing by EndpointsController#post as JS
|
49632
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49633
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49634
|
+
Processing by EndpointsController#error as JS
|
49635
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49636
|
+
Completed 500 Internal Server Error in 0ms
|
49637
|
+
Processing by EndpointsController#get as JS
|
49638
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49639
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49640
|
+
|
49641
|
+
|
49642
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:53:16 +0200
|
49643
|
+
Processing by EndpointsController#get as JS
|
49644
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49645
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
49646
|
+
Processing by EndpointsController#post as JS
|
49647
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49648
|
+
Completed 203 Non-Authoritative Information in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
49649
|
+
Processing by EndpointsController#error as JS
|
49650
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49651
|
+
Completed 500 Internal Server Error in 0ms
|
49652
|
+
Processing by EndpointsController#capture as JS
|
49653
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"7182", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"7182"}}
|
49654
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49655
|
+
Processing by EndpointsController#post as JS
|
49656
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49657
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49658
|
+
Processing by EndpointsController#error as JS
|
49659
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49660
|
+
Completed 500 Internal Server Error in 0ms
|
49661
|
+
Processing by EndpointsController#get as JS
|
49662
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49663
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49664
|
+
|
49665
|
+
|
49666
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:53:16 +0200
|
49667
|
+
Processing by EndpointsController#get as JS
|
49668
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49669
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
49670
|
+
Processing by EndpointsController#post as JS
|
49671
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49672
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49673
|
+
Processing by EndpointsController#error as JS
|
49674
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49675
|
+
Completed 500 Internal Server Error in 0ms
|
49676
|
+
Processing by EndpointsController#capture as JS
|
49677
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"8404", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"8404"}}
|
49678
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49679
|
+
Processing by EndpointsController#post as JS
|
49680
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49681
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49682
|
+
Processing by EndpointsController#error as JS
|
49683
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49684
|
+
Completed 500 Internal Server Error in 0ms
|
49685
|
+
Processing by EndpointsController#get as JS
|
49686
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49687
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49688
|
+
|
49689
|
+
|
49690
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:53:16 +0200
|
49691
|
+
Processing by EndpointsController#get as JS
|
49692
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49693
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49694
|
+
Processing by EndpointsController#post as JS
|
49695
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49696
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49697
|
+
Processing by EndpointsController#error as JS
|
49698
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49699
|
+
Completed 500 Internal Server Error in 0ms
|
49700
|
+
Processing by EndpointsController#capture as JS
|
49701
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"5039", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"5039"}}
|
49702
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49703
|
+
Processing by EndpointsController#post as JS
|
49704
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49705
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49706
|
+
Processing by EndpointsController#error as JS
|
49707
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49708
|
+
Completed 500 Internal Server Error in 0ms
|
49709
|
+
Processing by EndpointsController#get as JS
|
49710
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49711
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49712
|
+
Connecting to database specified by database.yml
|
49713
|
+
|
49714
|
+
|
49715
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:55:36 +0200
|
49716
|
+
Processing by EndpointsController#get as JS
|
49717
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49718
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
49719
|
+
Processing by EndpointsController#post as JS
|
49720
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49721
|
+
Completed 203 Non-Authoritative Information in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
49722
|
+
Processing by EndpointsController#error as JS
|
49723
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49724
|
+
Completed 500 Internal Server Error in 1ms
|
49725
|
+
Processing by EndpointsController#capture as JS
|
49726
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"8522", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"8522"}}
|
49727
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
49728
|
+
Processing by EndpointsController#post as JS
|
49729
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49730
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49731
|
+
Processing by EndpointsController#error as JS
|
49732
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49733
|
+
Completed 500 Internal Server Error in 0ms
|
49734
|
+
Processing by EndpointsController#get as JS
|
49735
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49736
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49737
|
+
|
49738
|
+
|
49739
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:55:36 +0200
|
49740
|
+
Processing by EndpointsController#get as JS
|
49741
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49742
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49743
|
+
Processing by EndpointsController#post as JS
|
49744
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49745
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49746
|
+
Processing by EndpointsController#error as JS
|
49747
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49748
|
+
Completed 500 Internal Server Error in 0ms
|
49749
|
+
Processing by EndpointsController#capture as JS
|
49750
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"6463", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"6463"}}
|
49751
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49752
|
+
Processing by EndpointsController#post as JS
|
49753
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49754
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49755
|
+
Processing by EndpointsController#error as JS
|
49756
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49757
|
+
Completed 500 Internal Server Error in 0ms
|
49758
|
+
Processing by EndpointsController#get as JS
|
49759
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49760
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49761
|
+
|
49762
|
+
|
49763
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:55:36 +0200
|
49764
|
+
Processing by EndpointsController#get as JS
|
49765
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49766
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49767
|
+
Processing by EndpointsController#post as JS
|
49768
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49769
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49770
|
+
Processing by EndpointsController#error as JS
|
49771
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49772
|
+
Completed 500 Internal Server Error in 0ms
|
49773
|
+
Processing by EndpointsController#capture as JS
|
49774
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"3452", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"3452"}}
|
49775
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49776
|
+
Processing by EndpointsController#post as JS
|
49777
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49778
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49779
|
+
Processing by EndpointsController#error as JS
|
49780
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49781
|
+
Completed 500 Internal Server Error in 0ms
|
49782
|
+
Processing by EndpointsController#get as JS
|
49783
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49784
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49785
|
+
|
49786
|
+
|
49787
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:55:36 +0200
|
49788
|
+
Processing by EndpointsController#get as JS
|
49789
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49790
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
49791
|
+
Processing by EndpointsController#post as JS
|
49792
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49793
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49794
|
+
Processing by EndpointsController#error as JS
|
49795
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49796
|
+
Completed 500 Internal Server Error in 0ms
|
49797
|
+
Processing by EndpointsController#capture as JS
|
49798
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"6463", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"6463"}}
|
49799
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49800
|
+
Processing by EndpointsController#post as JS
|
49801
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49802
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49803
|
+
Processing by EndpointsController#error as JS
|
49804
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49805
|
+
Completed 500 Internal Server Error in 0ms
|
49806
|
+
Processing by EndpointsController#get as JS
|
49807
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49808
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49809
|
+
|
49810
|
+
|
49811
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:55:36 +0200
|
49812
|
+
Processing by EndpointsController#get as JS
|
49813
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49814
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
49815
|
+
Processing by EndpointsController#post as JS
|
49816
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49817
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49818
|
+
Processing by EndpointsController#error as JS
|
49819
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49820
|
+
Completed 500 Internal Server Error in 0ms
|
49821
|
+
Processing by EndpointsController#capture as JS
|
49822
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"4546", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"4546"}}
|
49823
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49824
|
+
Processing by EndpointsController#post as JS
|
49825
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49826
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49827
|
+
Processing by EndpointsController#error as JS
|
49828
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49829
|
+
Completed 500 Internal Server Error in 0ms
|
49830
|
+
Processing by EndpointsController#get as JS
|
49831
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49832
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49833
|
+
|
49834
|
+
|
49835
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:55:36 +0200
|
49836
|
+
Processing by EndpointsController#get as JS
|
49837
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49838
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49839
|
+
Processing by EndpointsController#post as JS
|
49840
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49841
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49842
|
+
Processing by EndpointsController#error as JS
|
49843
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49844
|
+
Completed 500 Internal Server Error in 0ms
|
49845
|
+
Processing by EndpointsController#capture as JS
|
49846
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"748", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"748"}}
|
49847
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49848
|
+
Processing by EndpointsController#post as JS
|
49849
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49850
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49851
|
+
Processing by EndpointsController#error as JS
|
49852
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49853
|
+
Completed 500 Internal Server Error in 0ms
|
49854
|
+
Processing by EndpointsController#get as JS
|
49855
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49856
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49857
|
+
|
49858
|
+
|
49859
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:55:36 +0200
|
49860
|
+
Processing by EndpointsController#get as JS
|
49861
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49862
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
49863
|
+
Processing by EndpointsController#post as JS
|
49864
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49865
|
+
Completed 203 Non-Authoritative Information in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
49866
|
+
Processing by EndpointsController#error as JS
|
49867
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49868
|
+
Completed 500 Internal Server Error in 0ms
|
49869
|
+
Processing by EndpointsController#capture as JS
|
49870
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"7874", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"7874"}}
|
49871
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49872
|
+
Processing by EndpointsController#post as JS
|
49873
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49874
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49875
|
+
Processing by EndpointsController#error as JS
|
49876
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49877
|
+
Completed 500 Internal Server Error in 0ms
|
49878
|
+
Processing by EndpointsController#get as JS
|
49879
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49880
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49881
|
+
|
49882
|
+
|
49883
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:55:36 +0200
|
49884
|
+
Processing by EndpointsController#get as JS
|
49885
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49886
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49887
|
+
Processing by EndpointsController#post as JS
|
49888
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49889
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49890
|
+
Processing by EndpointsController#error as JS
|
49891
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49892
|
+
Completed 500 Internal Server Error in 0ms
|
49893
|
+
Processing by EndpointsController#capture as JS
|
49894
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"6463", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"6463"}}
|
49895
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49896
|
+
Processing by EndpointsController#post as JS
|
49897
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49898
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49899
|
+
Processing by EndpointsController#error as JS
|
49900
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49901
|
+
Completed 500 Internal Server Error in 0ms
|
49902
|
+
Processing by EndpointsController#get as JS
|
49903
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49904
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49905
|
+
|
49906
|
+
|
49907
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:55:36 +0200
|
49908
|
+
Processing by EndpointsController#get as JS
|
49909
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49910
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
49911
|
+
Processing by EndpointsController#post as JS
|
49912
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49913
|
+
Completed 203 Non-Authoritative Information in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
49914
|
+
Processing by EndpointsController#error as JS
|
49915
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49916
|
+
Completed 500 Internal Server Error in 0ms
|
49917
|
+
Processing by EndpointsController#capture as JS
|
49918
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"4546", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"4546"}}
|
49919
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49920
|
+
Processing by EndpointsController#post as JS
|
49921
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49922
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49923
|
+
Processing by EndpointsController#error as JS
|
49924
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49925
|
+
Completed 500 Internal Server Error in 0ms
|
49926
|
+
Processing by EndpointsController#get as JS
|
49927
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49928
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49929
|
+
|
49930
|
+
|
49931
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:55:36 +0200
|
49932
|
+
Processing by EndpointsController#get as JS
|
49933
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49934
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
49935
|
+
Processing by EndpointsController#post as JS
|
49936
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49937
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49938
|
+
Processing by EndpointsController#error as JS
|
49939
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49940
|
+
Completed 500 Internal Server Error in 0ms
|
49941
|
+
Processing by EndpointsController#capture as JS
|
49942
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"748", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"748"}}
|
49943
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49944
|
+
Processing by EndpointsController#post as JS
|
49945
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49946
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49947
|
+
Processing by EndpointsController#error as JS
|
49948
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49949
|
+
Completed 500 Internal Server Error in 0ms
|
49950
|
+
Processing by EndpointsController#get as JS
|
49951
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49952
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49953
|
+
|
49954
|
+
|
49955
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:55:36 +0200
|
49956
|
+
Processing by EndpointsController#get as JS
|
49957
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49958
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49959
|
+
Processing by EndpointsController#post as JS
|
49960
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49961
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49962
|
+
Processing by EndpointsController#error as JS
|
49963
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49964
|
+
Completed 500 Internal Server Error in 0ms
|
49965
|
+
Processing by EndpointsController#capture as JS
|
49966
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"7874", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"7874"}}
|
49967
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49968
|
+
Processing by EndpointsController#post as JS
|
49969
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49970
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49971
|
+
Processing by EndpointsController#error as JS
|
49972
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49973
|
+
Completed 500 Internal Server Error in 0ms
|
49974
|
+
Processing by EndpointsController#get as JS
|
49975
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49976
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49977
|
+
|
49978
|
+
|
49979
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:55:36 +0200
|
49980
|
+
Processing by EndpointsController#get as JS
|
49981
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
49982
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
49983
|
+
Processing by EndpointsController#post as JS
|
49984
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
49985
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
49986
|
+
Processing by EndpointsController#error as JS
|
49987
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49988
|
+
Completed 500 Internal Server Error in 0ms
|
49989
|
+
Processing by EndpointsController#capture as JS
|
49990
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"8522", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"8522"}}
|
49991
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49992
|
+
Processing by EndpointsController#post as JS
|
49993
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
49994
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
49995
|
+
Processing by EndpointsController#error as JS
|
49996
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
49997
|
+
Completed 500 Internal Server Error in 0ms
|
49998
|
+
Processing by EndpointsController#get as JS
|
49999
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
50000
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
50001
|
+
|
50002
|
+
|
50003
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:55:36 +0200
|
50004
|
+
Processing by EndpointsController#get as JS
|
50005
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
50006
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
50007
|
+
Processing by EndpointsController#post as JS
|
50008
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
50009
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
50010
|
+
Processing by EndpointsController#error as JS
|
50011
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
50012
|
+
Completed 500 Internal Server Error in 0ms
|
50013
|
+
Processing by EndpointsController#capture as JS
|
50014
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"6463", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"6463"}}
|
50015
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
50016
|
+
Processing by EndpointsController#post as JS
|
50017
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
50018
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
50019
|
+
Processing by EndpointsController#error as JS
|
50020
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
50021
|
+
Completed 500 Internal Server Error in 0ms
|
50022
|
+
Processing by EndpointsController#get as JS
|
50023
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
50024
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
50025
|
+
|
50026
|
+
|
50027
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:55:36 +0200
|
50028
|
+
Processing by EndpointsController#get as JS
|
50029
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
50030
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
50031
|
+
Processing by EndpointsController#post as JS
|
50032
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
50033
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
50034
|
+
Processing by EndpointsController#error as JS
|
50035
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
50036
|
+
Completed 500 Internal Server Error in 0ms
|
50037
|
+
Processing by EndpointsController#capture as JS
|
50038
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"6463", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"6463"}}
|
50039
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
50040
|
+
Processing by EndpointsController#post as JS
|
50041
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
50042
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
50043
|
+
Processing by EndpointsController#error as JS
|
50044
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
50045
|
+
Completed 500 Internal Server Error in 0ms
|
50046
|
+
Processing by EndpointsController#get as JS
|
50047
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
50048
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
50049
|
+
|
50050
|
+
|
50051
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:55:36 +0200
|
50052
|
+
Processing by EndpointsController#get as JS
|
50053
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
50054
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
50055
|
+
Processing by EndpointsController#post as JS
|
50056
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
50057
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
50058
|
+
Processing by EndpointsController#error as JS
|
50059
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
50060
|
+
Completed 500 Internal Server Error in 0ms
|
50061
|
+
Processing by EndpointsController#capture as JS
|
50062
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"4546", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"4546"}}
|
50063
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
50064
|
+
Processing by EndpointsController#post as JS
|
50065
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
50066
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
50067
|
+
Processing by EndpointsController#error as JS
|
50068
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
50069
|
+
Completed 500 Internal Server Error in 0ms
|
50070
|
+
Processing by EndpointsController#get as JS
|
50071
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
50072
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
50073
|
+
|
50074
|
+
|
50075
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:55:36 +0200
|
50076
|
+
Processing by EndpointsController#get as JS
|
50077
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
50078
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
50079
|
+
Processing by EndpointsController#post as JS
|
50080
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
50081
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
50082
|
+
Processing by EndpointsController#error as JS
|
50083
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
50084
|
+
Completed 500 Internal Server Error in 0ms
|
50085
|
+
Processing by EndpointsController#capture as JS
|
50086
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"748", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"748"}}
|
50087
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
50088
|
+
Processing by EndpointsController#post as JS
|
50089
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
50090
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
50091
|
+
Processing by EndpointsController#error as JS
|
50092
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
50093
|
+
Completed 500 Internal Server Error in 0ms
|
50094
|
+
Processing by EndpointsController#get as JS
|
50095
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
50096
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
50097
|
+
|
50098
|
+
|
50099
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:55:36 +0200
|
50100
|
+
Processing by EndpointsController#get as JS
|
50101
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
50102
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
50103
|
+
Processing by EndpointsController#post as JS
|
50104
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
50105
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
50106
|
+
Processing by EndpointsController#error as JS
|
50107
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
50108
|
+
Completed 500 Internal Server Error in 0ms
|
50109
|
+
Processing by EndpointsController#capture as JS
|
50110
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"7874", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"7874"}}
|
50111
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
50112
|
+
Processing by EndpointsController#post as JS
|
50113
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
50114
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
50115
|
+
Processing by EndpointsController#error as JS
|
50116
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
50117
|
+
Completed 500 Internal Server Error in 0ms
|
50118
|
+
Processing by EndpointsController#get as JS
|
50119
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
50120
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
50121
|
+
|
50122
|
+
|
50123
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:55:36 +0200
|
50124
|
+
Processing by EndpointsController#get as JS
|
50125
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
50126
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
50127
|
+
Processing by EndpointsController#post as JS
|
50128
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
50129
|
+
Completed 203 Non-Authoritative Information in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
50130
|
+
Processing by EndpointsController#error as JS
|
50131
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
50132
|
+
Completed 500 Internal Server Error in 0ms
|
50133
|
+
Processing by EndpointsController#capture as JS
|
50134
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"3452", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"3452"}}
|
50135
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
50136
|
+
Processing by EndpointsController#post as JS
|
50137
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
50138
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
50139
|
+
Processing by EndpointsController#error as JS
|
50140
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
50141
|
+
Completed 500 Internal Server Error in 35ms
|
50142
|
+
Processing by EndpointsController#get as JS
|
50143
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
50144
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
50145
|
+
|
50146
|
+
|
50147
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:55:36 +0200
|
50148
|
+
Processing by EndpointsController#get as JS
|
50149
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
50150
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
50151
|
+
Processing by EndpointsController#post as JS
|
50152
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
50153
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
50154
|
+
Processing by EndpointsController#error as JS
|
50155
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
50156
|
+
Completed 500 Internal Server Error in 0ms
|
50157
|
+
Processing by EndpointsController#capture as JS
|
50158
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"3452", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"3452"}}
|
50159
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
50160
|
+
Processing by EndpointsController#post as JS
|
50161
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
50162
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
50163
|
+
Processing by EndpointsController#error as JS
|
50164
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
50165
|
+
Completed 500 Internal Server Error in 0ms
|
50166
|
+
Processing by EndpointsController#get as JS
|
50167
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
50168
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
50169
|
+
|
50170
|
+
|
50171
|
+
Started POST "/batch" for 127.0.0.1 at 2012-10-22 22:55:36 +0200
|
50172
|
+
Processing by EndpointsController#get as JS
|
50173
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
50174
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
50175
|
+
Processing by EndpointsController#post as JS
|
50176
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"post"}}
|
50177
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
50178
|
+
Processing by EndpointsController#error as JS
|
50179
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
50180
|
+
Completed 500 Internal Server Error in 0ms
|
50181
|
+
Processing by EndpointsController#capture as JS
|
50182
|
+
Parameters: {:controller=>"endpoints", :action=>"capture", :captured=>"3452", "endpoint"=>{:controller=>"endpoints", :action=>"capture", :captured=>"3452"}}
|
50183
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
50184
|
+
Processing by EndpointsController#post as JS
|
50185
|
+
Parameters: {:controller=>"endpoints", :action=>"post", "endpoint"=>{:controller=>"endpoints", :action=>"post"}}
|
50186
|
+
Completed 203 Non-Authoritative Information in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
50187
|
+
Processing by EndpointsController#error as JS
|
50188
|
+
Parameters: {:controller=>"endpoints", :action=>"error", "endpoint"=>{:controller=>"endpoints", :action=>"error"}}
|
50189
|
+
Completed 500 Internal Server Error in 0ms
|
50190
|
+
Processing by EndpointsController#get as JS
|
50191
|
+
Parameters: {"other"=>"value", "endpoint"=>{"other"=>"value", "controller"=>"endpoints", "action"=>"get"}}
|
50192
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|