rails-rfc6570 2.0.0 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 46e9cd70b9c5de2feb4f4fab318ba72c8662018e
4
- data.tar.gz: 2b22c3ed75ae6b6a164c4f13ff447cf855818a69
3
+ metadata.gz: 92c6b7ce1757ebb4de97eb02f949afe0328c87dc
4
+ data.tar.gz: b5f07f7b0834e06848ff8c7ef8af7b6953ff5a91
5
5
  SHA512:
6
- metadata.gz: e7ed81f8d4c160778a41c485918b6d04831bbe3b1112fdf5170a8718c7746600dce32909554802ff6885b1bd35664a4d2047b3ec059fdfa3ba7236095fbb14e2
7
- data.tar.gz: aa39e93e031d4f5631a1a2d50fa44f545d0e337ca9330fcdf2605d817c138ecbe4bea3067dd535ba61a8c38200b70250637754e9f4340cd60585ba9fcd90c4d6
6
+ metadata.gz: 118cba95ea0e1c3afaa67afc58c4e4de655eb8ff66b3098c7ac7e0a669cd26f929ef805968384c68a6fbb304de08c08186014fb0087eb5c7b257d1132a174679
7
+ data.tar.gz: 561d3bd9ad24f085572e0870d5b3b8b662918557ea2fb7825a0f99b6acfbf8cf236ce45447a99d84a2782f77714e93a9ee7505b3a01c897ce00fdfc18bcfdc7c
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.1.0
4
+
5
+ * Add emulation for Rails' routing behavior with original script name
6
+
3
7
  ## 2.0.0
4
8
 
5
9
  * Add support for Rails 5.1
@@ -293,9 +293,15 @@ module Rails
293
293
  options = t.url_options.merge(options)
294
294
  options[:path] = template.pattern
295
295
 
296
- url = ActionDispatch::Http::URL.url_for options
296
+ original_script_name = options.delete(:original_script_name)
297
297
 
298
- ::Addressable::Template.new url
298
+ if original_script_name
299
+ options[:script_name] = original_script_name + options[:script_name]
300
+ end
301
+
302
+ url = ActionDispatch::Http::URL.url_for(options)
303
+
304
+ ::Addressable::Template.new(url)
299
305
  end
300
306
  end
301
307
 
@@ -2,7 +2,7 @@ module Rails
2
2
  module RFC6570
3
3
  module VERSION
4
4
  MAJOR = 2
5
- MINOR = 0
5
+ MINOR = 1
6
6
  PATCH = 0
7
7
  STAGE = nil
8
8
 
@@ -983,3 +983,2603 @@ Completed 200 OK in 1ms (Views: 0.1ms)
983
983
  Started GET "/action" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
984
984
  Processing by APIController#action as HTML
985
985
  Completed 200 OK in 1ms (Views: 0.1ms)
986
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:30:55 +0100
987
+ Processing by APIController#index as HTML
988
+ Completed 200 OK in 3ms (Views: 0.2ms)
989
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:30:55 +0100
990
+ Processing by APIController#index as HTML
991
+ Completed 200 OK in 1ms (Views: 0.1ms)
992
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:30:55 +0100
993
+ Processing by APIController#index as HTML
994
+ Completed 200 OK in 1ms (Views: 0.1ms)
995
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:30:55 +0100
996
+ Processing by APIController#index as HTML
997
+ Completed 200 OK in 1ms (Views: 0.1ms)
998
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:30:55 +0100
999
+ Processing by APIController#index as HTML
1000
+ Completed 200 OK in 1ms (Views: 0.1ms)
1001
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:30:55 +0100
1002
+ Processing by APIController#index as HTML
1003
+ Completed 200 OK in 1ms (Views: 0.1ms)
1004
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:30:55 +0100
1005
+ Processing by APIController#index as HTML
1006
+ Completed 200 OK in 1ms (Views: 0.1ms)
1007
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:30:55 +0100
1008
+ Processing by APIController#index as HTML
1009
+ Completed 200 OK in 1ms (Views: 0.1ms)
1010
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:30:55 +0100
1011
+ Processing by APIController#action as HTML
1012
+ Completed 200 OK in 1ms (Views: 0.1ms)
1013
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:30:55 +0100
1014
+ Processing by APIController#action as HTML
1015
+ Completed 200 OK in 1ms (Views: 0.1ms)
1016
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:30:55 +0100
1017
+ Processing by APIController#action as HTML
1018
+ Completed 200 OK in 1ms (Views: 0.1ms)
1019
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:30:55 +0100
1020
+ Processing by APIController#action as HTML
1021
+ Completed 200 OK in 1ms (Views: 0.1ms)
1022
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:30:55 +0100
1023
+ Processing by APIController#action as HTML
1024
+ Completed 200 OK in 1ms (Views: 0.1ms)
1025
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:30:55 +0100
1026
+ Processing by APIController#action as HTML
1027
+ Completed 200 OK in 1ms (Views: 0.1ms)
1028
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:01 +0100
1029
+ Processing by APIController#index as HTML
1030
+ Completed 200 OK in 1ms (Views: 0.2ms)
1031
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:01 +0100
1032
+ Processing by APIController#index as HTML
1033
+ Completed 200 OK in 1ms (Views: 0.1ms)
1034
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:01 +0100
1035
+ Processing by APIController#index as HTML
1036
+ Completed 200 OK in 1ms (Views: 0.1ms)
1037
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:01 +0100
1038
+ Processing by APIController#index as HTML
1039
+ Completed 200 OK in 1ms (Views: 0.1ms)
1040
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:01 +0100
1041
+ Processing by APIController#index as HTML
1042
+ Completed 200 OK in 1ms (Views: 0.1ms)
1043
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:01 +0100
1044
+ Processing by APIController#index as HTML
1045
+ Completed 200 OK in 1ms (Views: 0.1ms)
1046
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:01 +0100
1047
+ Processing by APIController#index as HTML
1048
+ Completed 200 OK in 1ms (Views: 0.1ms)
1049
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:01 +0100
1050
+ Processing by APIController#index as HTML
1051
+ Completed 200 OK in 1ms (Views: 0.1ms)
1052
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:42:01 +0100
1053
+ Processing by APIController#action as HTML
1054
+ Completed 200 OK in 1ms (Views: 0.1ms)
1055
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:42:01 +0100
1056
+ Processing by APIController#action as HTML
1057
+ Completed 200 OK in 1ms (Views: 0.1ms)
1058
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:42:01 +0100
1059
+ Processing by APIController#action as HTML
1060
+ Completed 200 OK in 1ms (Views: 0.1ms)
1061
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:42:01 +0100
1062
+ Processing by APIController#action as HTML
1063
+ Completed 200 OK in 1ms (Views: 0.1ms)
1064
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:42:01 +0100
1065
+ Processing by APIController#action as HTML
1066
+ Completed 200 OK in 1ms (Views: 0.1ms)
1067
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:42:01 +0100
1068
+ Processing by APIController#action as HTML
1069
+ Completed 200 OK in 1ms (Views: 0.1ms)
1070
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:42:01 +0100
1071
+ Processing by APIController#action as HTML
1072
+ Completed 200 OK in 1ms (Views: 0.1ms)
1073
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:10 +0100
1074
+ Processing by APIController#index as HTML
1075
+ Completed 200 OK in 1ms (Views: 0.4ms)
1076
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:10 +0100
1077
+ Processing by APIController#index as HTML
1078
+ Completed 200 OK in 1ms (Views: 0.2ms)
1079
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:10 +0100
1080
+ Processing by APIController#index as HTML
1081
+ Completed 200 OK in 1ms (Views: 0.2ms)
1082
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:10 +0100
1083
+ Processing by APIController#index as HTML
1084
+ Completed 200 OK in 1ms (Views: 0.2ms)
1085
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:10 +0100
1086
+ Processing by APIController#index as HTML
1087
+ Completed 200 OK in 1ms (Views: 0.2ms)
1088
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:10 +0100
1089
+ Processing by APIController#index as HTML
1090
+ Completed 200 OK in 1ms (Views: 0.1ms)
1091
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:10 +0100
1092
+ Processing by APIController#index as HTML
1093
+ Completed 200 OK in 1ms (Views: 0.2ms)
1094
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:10 +0100
1095
+ Processing by APIController#index as HTML
1096
+ Completed 200 OK in 1ms (Views: 0.3ms)
1097
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:42:10 +0100
1098
+ Processing by APIController#action as HTML
1099
+ Completed 200 OK in 1ms (Views: 0.2ms)
1100
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:42:10 +0100
1101
+ Processing by APIController#action as HTML
1102
+ Completed 200 OK in 1ms (Views: 0.2ms)
1103
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:42:10 +0100
1104
+ Processing by APIController#action as HTML
1105
+ Completed 200 OK in 1ms (Views: 0.2ms)
1106
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:42:10 +0100
1107
+ Processing by APIController#action as HTML
1108
+ Completed 200 OK in 1ms (Views: 0.2ms)
1109
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:42:10 +0100
1110
+ Processing by APIController#action as HTML
1111
+ Completed 200 OK in 1ms (Views: 0.2ms)
1112
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:42:10 +0100
1113
+ Processing by APIController#action as HTML
1114
+ Completed 200 OK in 1ms (Views: 0.2ms)
1115
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:42:10 +0100
1116
+ Processing by APIController#action as HTML
1117
+ Completed 200 OK in 1ms (Views: 0.2ms)
1118
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:26 +0100
1119
+ Processing by APIController#index as HTML
1120
+ Completed 200 OK in 3ms (Views: 0.2ms)
1121
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:26 +0100
1122
+ Processing by APIController#index as HTML
1123
+ Completed 200 OK in 1ms (Views: 0.2ms)
1124
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:26 +0100
1125
+ Processing by APIController#index as HTML
1126
+ Completed 200 OK in 1ms (Views: 0.1ms)
1127
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:26 +0100
1128
+ Processing by APIController#index as HTML
1129
+ Completed 200 OK in 1ms (Views: 0.2ms)
1130
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:26 +0100
1131
+ Processing by APIController#index as HTML
1132
+ Completed 200 OK in 1ms (Views: 0.1ms)
1133
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:26 +0100
1134
+ Processing by APIController#index as HTML
1135
+ Completed 200 OK in 1ms (Views: 0.1ms)
1136
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:26 +0100
1137
+ Processing by APIController#index as HTML
1138
+ Completed 200 OK in 1ms (Views: 0.1ms)
1139
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:26 +0100
1140
+ Processing by APIController#index as HTML
1141
+ Completed 200 OK in 1ms (Views: 0.1ms)
1142
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:42:26 +0100
1143
+ Processing by APIController#action as HTML
1144
+ Completed 200 OK in 1ms (Views: 0.1ms)
1145
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:42:26 +0100
1146
+ Processing by APIController#action as HTML
1147
+ Completed 200 OK in 1ms (Views: 0.1ms)
1148
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:42:26 +0100
1149
+ Processing by APIController#action as HTML
1150
+ Completed 200 OK in 1ms (Views: 0.1ms)
1151
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:42:26 +0100
1152
+ Processing by APIController#action as HTML
1153
+ Completed 200 OK in 1ms (Views: 0.1ms)
1154
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:42:26 +0100
1155
+ Processing by APIController#action as HTML
1156
+ Completed 200 OK in 1ms (Views: 0.1ms)
1157
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:42:26 +0100
1158
+ Processing by APIController#action as HTML
1159
+ Completed 200 OK in 1ms (Views: 0.1ms)
1160
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:42:26 +0100
1161
+ Processing by APIController#action as HTML
1162
+ Completed 200 OK in 1ms (Views: 0.1ms)
1163
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:31 +0100
1164
+ Processing by APIController#index as HTML
1165
+ Completed 200 OK in 1ms (Views: 0.2ms)
1166
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:31 +0100
1167
+ Processing by APIController#index as HTML
1168
+ Completed 200 OK in 1ms (Views: 0.2ms)
1169
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:31 +0100
1170
+ Processing by APIController#index as HTML
1171
+ Completed 200 OK in 1ms (Views: 0.2ms)
1172
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:31 +0100
1173
+ Processing by APIController#index as HTML
1174
+ Completed 200 OK in 1ms (Views: 0.2ms)
1175
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:31 +0100
1176
+ Processing by APIController#index as HTML
1177
+ Completed 200 OK in 1ms (Views: 0.2ms)
1178
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:31 +0100
1179
+ Processing by APIController#index as HTML
1180
+ Completed 200 OK in 1ms (Views: 0.2ms)
1181
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:31 +0100
1182
+ Processing by APIController#index as HTML
1183
+ Completed 200 OK in 1ms (Views: 0.2ms)
1184
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:42:31 +0100
1185
+ Processing by APIController#index as HTML
1186
+ Completed 200 OK in 1ms (Views: 0.2ms)
1187
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:42:31 +0100
1188
+ Processing by APIController#action as HTML
1189
+ Completed 200 OK in 1ms (Views: 0.2ms)
1190
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:42:31 +0100
1191
+ Processing by APIController#action as HTML
1192
+ Completed 200 OK in 1ms (Views: 0.1ms)
1193
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:42:31 +0100
1194
+ Processing by APIController#action as HTML
1195
+ Completed 200 OK in 1ms (Views: 0.1ms)
1196
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:42:31 +0100
1197
+ Processing by APIController#action as HTML
1198
+ Completed 200 OK in 1ms (Views: 0.2ms)
1199
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:42:31 +0100
1200
+ Processing by APIController#action as HTML
1201
+ Completed 200 OK in 1ms (Views: 0.1ms)
1202
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:42:31 +0100
1203
+ Processing by APIController#action as HTML
1204
+ Completed 200 OK in 1ms (Views: 0.1ms)
1205
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:42:31 +0100
1206
+ Processing by APIController#action as HTML
1207
+ Completed 200 OK in 1ms (Views: 0.1ms)
1208
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:43:04 +0100
1209
+ Processing by APIController#action as HTML
1210
+ Completed 200 OK in 1ms (Views: 0.2ms)
1211
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:43:04 +0100
1212
+ Processing by APIController#action as HTML
1213
+ Completed 200 OK in 1ms (Views: 0.1ms)
1214
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:43:04 +0100
1215
+ Processing by APIController#action as HTML
1216
+ Completed 200 OK in 1ms (Views: 0.1ms)
1217
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:43:04 +0100
1218
+ Processing by APIController#action as HTML
1219
+ Completed 200 OK in 1ms (Views: 0.2ms)
1220
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:43:04 +0100
1221
+ Processing by APIController#action as HTML
1222
+ Completed 200 OK in 1ms (Views: 0.1ms)
1223
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:43:04 +0100
1224
+ Processing by APIController#action as HTML
1225
+ Completed 200 OK in 1ms (Views: 0.1ms)
1226
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:43:04 +0100
1227
+ Processing by APIController#action as HTML
1228
+ Completed 200 OK in 1ms (Views: 0.1ms)
1229
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:43:04 +0100
1230
+ Processing by APIController#index as HTML
1231
+ Completed 200 OK in 1ms (Views: 0.2ms)
1232
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:43:04 +0100
1233
+ Processing by APIController#index as HTML
1234
+ Completed 200 OK in 1ms (Views: 0.1ms)
1235
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:43:04 +0100
1236
+ Processing by APIController#index as HTML
1237
+ Completed 200 OK in 1ms (Views: 0.1ms)
1238
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:43:04 +0100
1239
+ Processing by APIController#index as HTML
1240
+ Completed 200 OK in 1ms (Views: 0.1ms)
1241
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:43:04 +0100
1242
+ Processing by APIController#index as HTML
1243
+ Completed 200 OK in 1ms (Views: 0.1ms)
1244
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:43:04 +0100
1245
+ Processing by APIController#index as HTML
1246
+ Completed 200 OK in 1ms (Views: 0.1ms)
1247
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:43:04 +0100
1248
+ Processing by APIController#index as HTML
1249
+ Completed 200 OK in 1ms (Views: 0.1ms)
1250
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:43:04 +0100
1251
+ Processing by APIController#index as HTML
1252
+ Completed 200 OK in 1ms (Views: 0.1ms)
1253
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:44:50 +0100
1254
+ Processing by APIController#action as HTML
1255
+ Completed 200 OK in 1ms (Views: 0.2ms)
1256
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:44:50 +0100
1257
+ Processing by APIController#action as HTML
1258
+ Completed 200 OK in 1ms (Views: 0.2ms)
1259
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:44:50 +0100
1260
+ Processing by APIController#action as HTML
1261
+ Completed 200 OK in 1ms (Views: 0.2ms)
1262
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:44:50 +0100
1263
+ Processing by APIController#action as HTML
1264
+ Completed 200 OK in 1ms (Views: 0.1ms)
1265
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:44:50 +0100
1266
+ Processing by APIController#action as HTML
1267
+ Completed 200 OK in 1ms (Views: 0.1ms)
1268
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:44:50 +0100
1269
+ Processing by APIController#action as HTML
1270
+ Completed 200 OK in 1ms (Views: 0.1ms)
1271
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:44:50 +0100
1272
+ Processing by APIController#action as HTML
1273
+ Completed 200 OK in 1ms (Views: 0.1ms)
1274
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:44:50 +0100
1275
+ Processing by APIController#index as HTML
1276
+ Completed 200 OK in 1ms (Views: 0.1ms)
1277
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:44:50 +0100
1278
+ Processing by APIController#index as HTML
1279
+ Completed 200 OK in 1ms (Views: 0.2ms)
1280
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:44:50 +0100
1281
+ Processing by APIController#index as HTML
1282
+ Completed 200 OK in 1ms (Views: 0.1ms)
1283
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:44:50 +0100
1284
+ Processing by APIController#index as HTML
1285
+ Completed 200 OK in 1ms (Views: 0.2ms)
1286
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:44:50 +0100
1287
+ Processing by APIController#index as HTML
1288
+ Completed 200 OK in 1ms (Views: 0.1ms)
1289
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:44:50 +0100
1290
+ Processing by APIController#index as HTML
1291
+ Completed 200 OK in 1ms (Views: 0.2ms)
1292
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:44:50 +0100
1293
+ Processing by APIController#index as HTML
1294
+ Completed 200 OK in 1ms (Views: 0.1ms)
1295
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:44:50 +0100
1296
+ Processing by APIController#index as HTML
1297
+ Completed 200 OK in 1ms (Views: 0.1ms)
1298
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:45:29 +0100
1299
+ Processing by APIController#index as HTML
1300
+ Completed 500 Internal Server Error in 0ms
1301
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:45:29 +0100
1302
+ Processing by APIController#index as HTML
1303
+ Completed 500 Internal Server Error in 0ms
1304
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:45:29 +0100
1305
+ Processing by APIController#index as HTML
1306
+ Completed 500 Internal Server Error in 0ms
1307
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:45:29 +0100
1308
+ Processing by APIController#index as HTML
1309
+ Completed 500 Internal Server Error in 0ms
1310
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:45:29 +0100
1311
+ Processing by APIController#index as HTML
1312
+ Completed 500 Internal Server Error in 0ms
1313
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:45:29 +0100
1314
+ Processing by APIController#index as HTML
1315
+ Completed 500 Internal Server Error in 0ms
1316
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:45:29 +0100
1317
+ Processing by APIController#index as HTML
1318
+ Completed 500 Internal Server Error in 0ms
1319
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:45:29 +0100
1320
+ Processing by APIController#index as HTML
1321
+ Completed 500 Internal Server Error in 0ms
1322
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:45:29 +0100
1323
+ Processing by APIController#action as HTML
1324
+ Completed 500 Internal Server Error in 1ms
1325
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:45:29 +0100
1326
+ Processing by APIController#action as HTML
1327
+ Completed 500 Internal Server Error in 1ms
1328
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:45:29 +0100
1329
+ Processing by APIController#action as HTML
1330
+ Completed 500 Internal Server Error in 1ms
1331
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:45:29 +0100
1332
+ Processing by APIController#action as HTML
1333
+ Completed 500 Internal Server Error in 1ms
1334
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:45:29 +0100
1335
+ Processing by APIController#action as HTML
1336
+ Completed 500 Internal Server Error in 1ms
1337
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:45:29 +0100
1338
+ Processing by APIController#action as HTML
1339
+ Completed 500 Internal Server Error in 1ms
1340
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:45:29 +0100
1341
+ Processing by APIController#action as HTML
1342
+ Completed 200 OK in 1ms (Views: 0.2ms)
1343
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:45:29 +0100
1344
+ Processing by APIController#action as HTML
1345
+ Completed 200 OK in 1ms (Views: 0.1ms)
1346
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:46:03 +0100
1347
+ Processing by APIController#index as HTML
1348
+ Completed 200 OK in 1ms (Views: 0.3ms)
1349
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:46:03 +0100
1350
+ Processing by APIController#index as HTML
1351
+ Completed 200 OK in 1ms (Views: 0.1ms)
1352
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:46:03 +0100
1353
+ Processing by APIController#index as HTML
1354
+ Completed 200 OK in 1ms (Views: 0.1ms)
1355
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:46:03 +0100
1356
+ Processing by APIController#index as HTML
1357
+ Completed 200 OK in 1ms (Views: 0.1ms)
1358
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:46:03 +0100
1359
+ Processing by APIController#index as HTML
1360
+ Completed 200 OK in 1ms (Views: 0.1ms)
1361
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:46:03 +0100
1362
+ Processing by APIController#index as HTML
1363
+ Completed 200 OK in 1ms (Views: 0.1ms)
1364
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:46:03 +0100
1365
+ Processing by APIController#index as HTML
1366
+ Completed 200 OK in 1ms (Views: 0.1ms)
1367
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:46:03 +0100
1368
+ Processing by APIController#index as HTML
1369
+ Completed 200 OK in 1ms (Views: 0.1ms)
1370
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:46:03 +0100
1371
+ Processing by APIController#action as HTML
1372
+ Completed 200 OK in 1ms (Views: 0.1ms)
1373
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:46:03 +0100
1374
+ Processing by APIController#action as HTML
1375
+ Completed 200 OK in 1ms (Views: 0.1ms)
1376
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:46:03 +0100
1377
+ Processing by APIController#action as HTML
1378
+ Completed 200 OK in 1ms (Views: 0.1ms)
1379
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:46:03 +0100
1380
+ Processing by APIController#action as HTML
1381
+ Completed 200 OK in 1ms (Views: 0.1ms)
1382
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:46:03 +0100
1383
+ Processing by APIController#action as HTML
1384
+ Completed 200 OK in 1ms (Views: 0.1ms)
1385
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:46:03 +0100
1386
+ Processing by APIController#action as HTML
1387
+ Completed 200 OK in 1ms (Views: 0.1ms)
1388
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:46:03 +0100
1389
+ Processing by APIController#action as HTML
1390
+ Completed 200 OK in 1ms (Views: 0.1ms)
1391
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:46:03 +0100
1392
+ Processing by APIController#action as HTML
1393
+ Completed 200 OK in 1ms (Views: 0.1ms)
1394
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:46:46 +0100
1395
+ Processing by APIController#index as HTML
1396
+ Completed 200 OK in 1ms (Views: 0.2ms)
1397
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:46:46 +0100
1398
+ Processing by APIController#index as HTML
1399
+ Completed 200 OK in 1ms (Views: 0.2ms)
1400
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:46:46 +0100
1401
+ Processing by APIController#index as HTML
1402
+ Completed 200 OK in 1ms (Views: 0.2ms)
1403
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:46:46 +0100
1404
+ Processing by APIController#index as HTML
1405
+ Completed 200 OK in 1ms (Views: 0.3ms)
1406
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:46:46 +0100
1407
+ Processing by APIController#index as HTML
1408
+ Completed 200 OK in 1ms (Views: 0.3ms)
1409
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:46:46 +0100
1410
+ Processing by APIController#index as HTML
1411
+ Completed 200 OK in 1ms (Views: 0.2ms)
1412
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:46:46 +0100
1413
+ Processing by APIController#index as HTML
1414
+ Completed 200 OK in 1ms (Views: 0.2ms)
1415
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:46:46 +0100
1416
+ Processing by APIController#index as HTML
1417
+ Completed 200 OK in 1ms (Views: 0.2ms)
1418
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:46:46 +0100
1419
+ Processing by APIController#action as HTML
1420
+ Completed 200 OK in 1ms (Views: 0.2ms)
1421
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:46:46 +0100
1422
+ Processing by APIController#action as HTML
1423
+ Completed 200 OK in 1ms (Views: 0.2ms)
1424
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:46:46 +0100
1425
+ Processing by APIController#action as HTML
1426
+ Completed 200 OK in 1ms (Views: 0.2ms)
1427
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:46:46 +0100
1428
+ Processing by APIController#action as HTML
1429
+ Completed 200 OK in 1ms (Views: 0.2ms)
1430
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:46:46 +0100
1431
+ Processing by APIController#action as HTML
1432
+ Completed 200 OK in 1ms (Views: 0.1ms)
1433
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:46:46 +0100
1434
+ Processing by APIController#action as HTML
1435
+ Completed 200 OK in 1ms (Views: 0.2ms)
1436
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:46:46 +0100
1437
+ Processing by APIController#action as HTML
1438
+ Completed 200 OK in 1ms (Views: 0.2ms)
1439
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:47:29 +0100
1440
+ Processing by APIController#action as HTML
1441
+ Completed 200 OK in 1ms (Views: 0.2ms)
1442
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:47:29 +0100
1443
+ Processing by APIController#action as HTML
1444
+ Completed 200 OK in 1ms (Views: 0.2ms)
1445
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:47:29 +0100
1446
+ Processing by APIController#action as HTML
1447
+ Completed 200 OK in 1ms (Views: 0.1ms)
1448
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:47:29 +0100
1449
+ Processing by APIController#action as HTML
1450
+ Completed 200 OK in 1ms (Views: 0.1ms)
1451
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:47:29 +0100
1452
+ Processing by APIController#action as HTML
1453
+ Completed 200 OK in 1ms (Views: 0.1ms)
1454
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:47:29 +0100
1455
+ Processing by APIController#action as HTML
1456
+ Completed 200 OK in 1ms (Views: 0.1ms)
1457
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 15:47:29 +0100
1458
+ Processing by APIController#action as HTML
1459
+ Completed 200 OK in 1ms (Views: 0.1ms)
1460
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:47:29 +0100
1461
+ Processing by APIController#index as HTML
1462
+ Completed 200 OK in 1ms (Views: 0.1ms)
1463
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:47:29 +0100
1464
+ Processing by APIController#index as HTML
1465
+ Completed 200 OK in 1ms (Views: 0.1ms)
1466
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:47:29 +0100
1467
+ Processing by APIController#index as HTML
1468
+ Completed 200 OK in 1ms (Views: 0.1ms)
1469
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:47:29 +0100
1470
+ Processing by APIController#index as HTML
1471
+ Completed 200 OK in 1ms (Views: 0.1ms)
1472
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:47:29 +0100
1473
+ Processing by APIController#index as HTML
1474
+ Completed 200 OK in 1ms (Views: 0.1ms)
1475
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:47:29 +0100
1476
+ Processing by APIController#index as HTML
1477
+ Completed 200 OK in 1ms (Views: 0.1ms)
1478
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:47:29 +0100
1479
+ Processing by APIController#index as HTML
1480
+ Completed 200 OK in 1ms (Views: 0.1ms)
1481
+ Started GET "/" for 127.0.0.1 at 2017-11-06 15:47:29 +0100
1482
+ Processing by APIController#index as HTML
1483
+ Completed 200 OK in 1ms (Views: 0.1ms)
1484
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:50:22 +0100
1485
+ Processing by APIController#index as HTML
1486
+ Completed 200 OK in 1ms (Views: 0.2ms)
1487
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:50:22 +0100
1488
+ Processing by APIController#index as HTML
1489
+ Completed 200 OK in 1ms (Views: 0.1ms)
1490
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:50:22 +0100
1491
+ Processing by APIController#index as HTML
1492
+ Completed 200 OK in 1ms (Views: 0.2ms)
1493
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:50:22 +0100
1494
+ Processing by APIController#index as HTML
1495
+ Completed 200 OK in 1ms (Views: 0.1ms)
1496
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:50:22 +0100
1497
+ Processing by APIController#index as HTML
1498
+ Completed 200 OK in 1ms (Views: 0.1ms)
1499
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:50:22 +0100
1500
+ Processing by APIController#index as HTML
1501
+ Completed 200 OK in 1ms (Views: 0.1ms)
1502
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:50:22 +0100
1503
+ Processing by APIController#index as HTML
1504
+ Completed 200 OK in 1ms (Views: 0.1ms)
1505
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:50:22 +0100
1506
+ Processing by APIController#index as HTML
1507
+ Completed 200 OK in 1ms (Views: 0.1ms)
1508
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:50:22 +0100
1509
+ Processing by APIController#action as HTML
1510
+ Completed 200 OK in 1ms (Views: 0.1ms)
1511
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:50:22 +0100
1512
+ Processing by APIController#action as HTML
1513
+ Completed 200 OK in 1ms (Views: 0.1ms)
1514
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:50:22 +0100
1515
+ Processing by APIController#action as HTML
1516
+ Completed 200 OK in 1ms (Views: 0.1ms)
1517
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:50:22 +0100
1518
+ Processing by APIController#action as HTML
1519
+ Completed 200 OK in 1ms (Views: 0.1ms)
1520
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:50:22 +0100
1521
+ Processing by APIController#action as HTML
1522
+ Completed 200 OK in 1ms (Views: 0.1ms)
1523
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:50:22 +0100
1524
+ Processing by APIController#action as HTML
1525
+ Completed 200 OK in 1ms (Views: 0.1ms)
1526
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:50:22 +0100
1527
+ Processing by APIController#action as HTML
1528
+ Completed 200 OK in 1ms (Views: 0.1ms)
1529
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:50:27 +0100
1530
+ Processing by APIController#action as HTML
1531
+ Completed 200 OK in 1ms (Views: 0.2ms)
1532
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:50:27 +0100
1533
+ Processing by APIController#action as HTML
1534
+ Completed 200 OK in 1ms (Views: 0.1ms)
1535
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:50:27 +0100
1536
+ Processing by APIController#action as HTML
1537
+ Completed 200 OK in 1ms (Views: 0.1ms)
1538
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:50:27 +0100
1539
+ Processing by APIController#action as HTML
1540
+ Completed 200 OK in 1ms (Views: 0.2ms)
1541
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:50:27 +0100
1542
+ Processing by APIController#action as HTML
1543
+ Completed 200 OK in 1ms (Views: 0.1ms)
1544
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:50:27 +0100
1545
+ Processing by APIController#action as HTML
1546
+ Completed 200 OK in 1ms (Views: 0.2ms)
1547
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:50:27 +0100
1548
+ Processing by APIController#action as HTML
1549
+ Completed 200 OK in 1ms (Views: 0.1ms)
1550
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:50:27 +0100
1551
+ Processing by APIController#index as HTML
1552
+ Completed 200 OK in 1ms (Views: 0.1ms)
1553
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:50:27 +0100
1554
+ Processing by APIController#index as HTML
1555
+ Completed 200 OK in 1ms (Views: 0.1ms)
1556
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:50:27 +0100
1557
+ Processing by APIController#index as HTML
1558
+ Completed 200 OK in 1ms (Views: 0.1ms)
1559
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:50:27 +0100
1560
+ Processing by APIController#index as HTML
1561
+ Completed 200 OK in 1ms (Views: 0.1ms)
1562
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:50:27 +0100
1563
+ Processing by APIController#index as HTML
1564
+ Completed 200 OK in 1ms (Views: 0.1ms)
1565
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:50:27 +0100
1566
+ Processing by APIController#index as HTML
1567
+ Completed 200 OK in 1ms (Views: 0.1ms)
1568
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:50:27 +0100
1569
+ Processing by APIController#index as HTML
1570
+ Completed 200 OK in 1ms (Views: 0.1ms)
1571
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:50:27 +0100
1572
+ Processing by APIController#index as HTML
1573
+ Completed 200 OK in 1ms (Views: 0.1ms)
1574
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:13 +0100
1575
+ Processing by APIController#index as HTML
1576
+ Completed 200 OK in 1ms (Views: 0.4ms)
1577
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:13 +0100
1578
+ Processing by APIController#index as HTML
1579
+ Completed 200 OK in 1ms (Views: 0.3ms)
1580
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:13 +0100
1581
+ Processing by APIController#index as HTML
1582
+ Completed 200 OK in 1ms (Views: 0.2ms)
1583
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:13 +0100
1584
+ Processing by APIController#index as HTML
1585
+ Completed 200 OK in 1ms (Views: 0.2ms)
1586
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:13 +0100
1587
+ Processing by APIController#index as HTML
1588
+ Completed 200 OK in 1ms (Views: 0.2ms)
1589
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:13 +0100
1590
+ Processing by APIController#index as HTML
1591
+ Completed 200 OK in 1ms (Views: 0.3ms)
1592
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:13 +0100
1593
+ Processing by APIController#index as HTML
1594
+ Completed 200 OK in 1ms (Views: 0.3ms)
1595
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:13 +0100
1596
+ Processing by APIController#index as HTML
1597
+ Completed 200 OK in 1ms (Views: 0.2ms)
1598
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:13 +0100
1599
+ Processing by APIController#action as HTML
1600
+ Completed 200 OK in 1ms (Views: 0.2ms)
1601
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:13 +0100
1602
+ Processing by APIController#action as HTML
1603
+ Completed 200 OK in 1ms (Views: 0.2ms)
1604
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:13 +0100
1605
+ Processing by APIController#action as HTML
1606
+ Completed 200 OK in 2ms (Views: 0.5ms)
1607
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:13 +0100
1608
+ Processing by APIController#action as HTML
1609
+ Completed 200 OK in 6ms (Views: 0.2ms)
1610
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:13 +0100
1611
+ Processing by APIController#action as HTML
1612
+ Completed 200 OK in 1ms (Views: 0.2ms)
1613
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:13 +0100
1614
+ Processing by APIController#action as HTML
1615
+ Completed 200 OK in 2ms (Views: 0.4ms)
1616
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:13 +0100
1617
+ Processing by APIController#action as HTML
1618
+ Completed 200 OK in 2ms (Views: 0.5ms)
1619
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:41 +0100
1620
+ Processing by APIController#action as HTML
1621
+ Completed 200 OK in 1ms (Views: 0.2ms)
1622
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:41 +0100
1623
+ Processing by APIController#action as HTML
1624
+ Completed 200 OK in 1ms (Views: 0.2ms)
1625
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:41 +0100
1626
+ Processing by APIController#action as HTML
1627
+ Completed 200 OK in 1ms (Views: 0.1ms)
1628
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:41 +0100
1629
+ Processing by APIController#action as HTML
1630
+ Completed 200 OK in 1ms (Views: 0.1ms)
1631
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:41 +0100
1632
+ Processing by APIController#action as HTML
1633
+ Completed 200 OK in 1ms (Views: 0.1ms)
1634
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:41 +0100
1635
+ Processing by APIController#action as HTML
1636
+ Completed 200 OK in 1ms (Views: 0.1ms)
1637
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:41 +0100
1638
+ Processing by APIController#action as HTML
1639
+ Completed 200 OK in 1ms (Views: 0.1ms)
1640
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:41 +0100
1641
+ Processing by APIController#index as HTML
1642
+ Completed 200 OK in 1ms (Views: 0.1ms)
1643
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:41 +0100
1644
+ Processing by APIController#index as HTML
1645
+ Completed 200 OK in 1ms (Views: 0.1ms)
1646
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:41 +0100
1647
+ Processing by APIController#index as HTML
1648
+ Completed 200 OK in 4ms (Views: 3.4ms)
1649
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:41 +0100
1650
+ Processing by APIController#index as HTML
1651
+ Completed 200 OK in 1ms (Views: 0.2ms)
1652
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:41 +0100
1653
+ Processing by APIController#index as HTML
1654
+ Completed 200 OK in 1ms (Views: 0.1ms)
1655
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:41 +0100
1656
+ Processing by APIController#index as HTML
1657
+ Completed 200 OK in 1ms (Views: 0.2ms)
1658
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:41 +0100
1659
+ Processing by APIController#index as HTML
1660
+ Completed 200 OK in 1ms (Views: 0.1ms)
1661
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:41 +0100
1662
+ Processing by APIController#index as HTML
1663
+ Completed 200 OK in 1ms (Views: 0.1ms)
1664
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:45 +0100
1665
+ Processing by APIController#index as HTML
1666
+ Completed 200 OK in 1ms (Views: 0.3ms)
1667
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:45 +0100
1668
+ Processing by APIController#index as HTML
1669
+ Completed 200 OK in 1ms (Views: 0.2ms)
1670
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:45 +0100
1671
+ Processing by APIController#index as HTML
1672
+ Completed 200 OK in 1ms (Views: 0.3ms)
1673
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:45 +0100
1674
+ Processing by APIController#index as HTML
1675
+ Completed 200 OK in 1ms (Views: 0.3ms)
1676
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:45 +0100
1677
+ Processing by APIController#index as HTML
1678
+ Completed 200 OK in 1ms (Views: 0.4ms)
1679
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:45 +0100
1680
+ Processing by APIController#index as HTML
1681
+ Completed 200 OK in 1ms (Views: 0.1ms)
1682
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:45 +0100
1683
+ Processing by APIController#index as HTML
1684
+ Completed 200 OK in 1ms (Views: 0.1ms)
1685
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:45 +0100
1686
+ Processing by APIController#index as HTML
1687
+ Completed 200 OK in 1ms (Views: 0.1ms)
1688
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:45 +0100
1689
+ Processing by APIController#action as HTML
1690
+ Completed 200 OK in 1ms (Views: 0.2ms)
1691
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:45 +0100
1692
+ Processing by APIController#action as HTML
1693
+ Completed 200 OK in 1ms (Views: 0.1ms)
1694
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:45 +0100
1695
+ Processing by APIController#action as HTML
1696
+ Completed 200 OK in 1ms (Views: 0.2ms)
1697
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:45 +0100
1698
+ Processing by APIController#action as HTML
1699
+ Completed 200 OK in 1ms (Views: 0.2ms)
1700
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:45 +0100
1701
+ Processing by APIController#action as HTML
1702
+ Completed 200 OK in 1ms (Views: 0.1ms)
1703
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:45 +0100
1704
+ Processing by APIController#action as HTML
1705
+ Completed 200 OK in 1ms (Views: 0.1ms)
1706
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:45 +0100
1707
+ Processing by APIController#action as HTML
1708
+ Completed 200 OK in 1ms (Views: 0.2ms)
1709
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:48 +0100
1710
+ Processing by APIController#index as HTML
1711
+ Completed 200 OK in 1ms (Views: 0.2ms)
1712
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:48 +0100
1713
+ Processing by APIController#index as HTML
1714
+ Completed 200 OK in 1ms (Views: 0.1ms)
1715
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:48 +0100
1716
+ Processing by APIController#index as HTML
1717
+ Completed 200 OK in 1ms (Views: 0.1ms)
1718
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:48 +0100
1719
+ Processing by APIController#index as HTML
1720
+ Completed 200 OK in 1ms (Views: 0.1ms)
1721
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:48 +0100
1722
+ Processing by APIController#index as HTML
1723
+ Completed 200 OK in 1ms (Views: 0.1ms)
1724
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:48 +0100
1725
+ Processing by APIController#index as HTML
1726
+ Completed 200 OK in 1ms (Views: 0.1ms)
1727
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:48 +0100
1728
+ Processing by APIController#index as HTML
1729
+ Completed 200 OK in 1ms (Views: 0.1ms)
1730
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:48 +0100
1731
+ Processing by APIController#index as HTML
1732
+ Completed 200 OK in 1ms (Views: 0.1ms)
1733
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:48 +0100
1734
+ Processing by APIController#action as HTML
1735
+ Completed 200 OK in 1ms (Views: 0.1ms)
1736
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:48 +0100
1737
+ Processing by APIController#action as HTML
1738
+ Completed 200 OK in 1ms (Views: 0.1ms)
1739
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:48 +0100
1740
+ Processing by APIController#action as HTML
1741
+ Completed 200 OK in 1ms (Views: 0.1ms)
1742
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:48 +0100
1743
+ Processing by APIController#action as HTML
1744
+ Completed 200 OK in 1ms (Views: 0.2ms)
1745
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:48 +0100
1746
+ Processing by APIController#action as HTML
1747
+ Completed 200 OK in 1ms (Views: 0.1ms)
1748
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:48 +0100
1749
+ Processing by APIController#action as HTML
1750
+ Completed 200 OK in 1ms (Views: 0.1ms)
1751
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:48 +0100
1752
+ Processing by APIController#action as HTML
1753
+ Completed 200 OK in 1ms (Views: 0.1ms)
1754
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:53 +0100
1755
+ Processing by APIController#action as HTML
1756
+ Completed 200 OK in 1ms (Views: 0.2ms)
1757
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:53 +0100
1758
+ Processing by APIController#action as HTML
1759
+ Completed 200 OK in 1ms (Views: 0.1ms)
1760
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:53 +0100
1761
+ Processing by APIController#action as HTML
1762
+ Completed 200 OK in 1ms (Views: 0.1ms)
1763
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:53 +0100
1764
+ Processing by APIController#action as HTML
1765
+ Completed 200 OK in 1ms (Views: 0.2ms)
1766
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:53 +0100
1767
+ Processing by APIController#action as HTML
1768
+ Completed 200 OK in 1ms (Views: 0.2ms)
1769
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:53 +0100
1770
+ Processing by APIController#action as HTML
1771
+ Completed 200 OK in 1ms (Views: 0.2ms)
1772
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:53 +0100
1773
+ Processing by APIController#action as HTML
1774
+ Completed 200 OK in 1ms (Views: 0.2ms)
1775
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:53 +0100
1776
+ Processing by APIController#index as HTML
1777
+ Completed 200 OK in 1ms (Views: 0.2ms)
1778
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:53 +0100
1779
+ Processing by APIController#index as HTML
1780
+ Completed 200 OK in 1ms (Views: 0.2ms)
1781
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:53 +0100
1782
+ Processing by APIController#index as HTML
1783
+ Completed 200 OK in 1ms (Views: 0.2ms)
1784
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:53 +0100
1785
+ Processing by APIController#index as HTML
1786
+ Completed 200 OK in 1ms (Views: 0.2ms)
1787
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:53 +0100
1788
+ Processing by APIController#index as HTML
1789
+ Completed 200 OK in 1ms (Views: 0.3ms)
1790
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:53 +0100
1791
+ Processing by APIController#index as HTML
1792
+ Completed 200 OK in 1ms (Views: 0.3ms)
1793
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:53 +0100
1794
+ Processing by APIController#index as HTML
1795
+ Completed 200 OK in 1ms (Views: 0.2ms)
1796
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:53 +0100
1797
+ Processing by APIController#index as HTML
1798
+ Completed 200 OK in 1ms (Views: 0.3ms)
1799
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:58 +0100
1800
+ Processing by APIController#index as HTML
1801
+ Completed 200 OK in 1ms (Views: 0.2ms)
1802
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:58 +0100
1803
+ Processing by APIController#index as HTML
1804
+ Completed 200 OK in 1ms (Views: 0.3ms)
1805
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:58 +0100
1806
+ Processing by APIController#index as HTML
1807
+ Completed 200 OK in 1ms (Views: 0.2ms)
1808
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:58 +0100
1809
+ Processing by APIController#index as HTML
1810
+ Completed 200 OK in 1ms (Views: 0.2ms)
1811
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:58 +0100
1812
+ Processing by APIController#index as HTML
1813
+ Completed 200 OK in 4ms (Views: 0.2ms)
1814
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:58 +0100
1815
+ Processing by APIController#index as HTML
1816
+ Completed 200 OK in 1ms (Views: 0.2ms)
1817
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:58 +0100
1818
+ Processing by APIController#index as HTML
1819
+ Completed 200 OK in 1ms (Views: 0.2ms)
1820
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:51:58 +0100
1821
+ Processing by APIController#index as HTML
1822
+ Completed 200 OK in 1ms (Views: 0.2ms)
1823
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:58 +0100
1824
+ Processing by APIController#action as HTML
1825
+ Completed 200 OK in 1ms (Views: 0.2ms)
1826
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:58 +0100
1827
+ Processing by APIController#action as HTML
1828
+ Completed 200 OK in 1ms (Views: 0.2ms)
1829
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:58 +0100
1830
+ Processing by APIController#action as HTML
1831
+ Completed 200 OK in 1ms (Views: 0.1ms)
1832
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:58 +0100
1833
+ Processing by APIController#action as HTML
1834
+ Completed 200 OK in 1ms (Views: 0.1ms)
1835
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:58 +0100
1836
+ Processing by APIController#action as HTML
1837
+ Completed 200 OK in 1ms (Views: 0.1ms)
1838
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:58 +0100
1839
+ Processing by APIController#action as HTML
1840
+ Completed 200 OK in 1ms (Views: 0.2ms)
1841
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:51:58 +0100
1842
+ Processing by APIController#action as HTML
1843
+ Completed 200 OK in 1ms (Views: 0.2ms)
1844
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:03 +0100
1845
+ Processing by APIController#index as HTML
1846
+ Completed 200 OK in 1ms (Views: 0.2ms)
1847
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:03 +0100
1848
+ Processing by APIController#index as HTML
1849
+ Completed 200 OK in 1ms (Views: 0.3ms)
1850
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:03 +0100
1851
+ Processing by APIController#index as HTML
1852
+ Completed 200 OK in 1ms (Views: 0.2ms)
1853
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:03 +0100
1854
+ Processing by APIController#index as HTML
1855
+ Completed 200 OK in 1ms (Views: 0.2ms)
1856
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:03 +0100
1857
+ Processing by APIController#index as HTML
1858
+ Completed 200 OK in 1ms (Views: 0.2ms)
1859
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:03 +0100
1860
+ Processing by APIController#index as HTML
1861
+ Completed 200 OK in 1ms (Views: 0.2ms)
1862
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:03 +0100
1863
+ Processing by APIController#index as HTML
1864
+ Completed 200 OK in 1ms (Views: 0.2ms)
1865
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:03 +0100
1866
+ Processing by APIController#index as HTML
1867
+ Completed 200 OK in 1ms (Views: 0.2ms)
1868
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:52:03 +0100
1869
+ Processing by APIController#action as HTML
1870
+ Parameters: {"headers"=>nil}
1871
+ Completed 200 OK in 1ms (Views: 0.2ms)
1872
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:52:03 +0100
1873
+ Processing by APIController#action as HTML
1874
+ Parameters: {"headers"=>nil}
1875
+ Completed 200 OK in 1ms (Views: 0.2ms)
1876
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:52:03 +0100
1877
+ Processing by APIController#action as HTML
1878
+ Parameters: {"headers"=>nil}
1879
+ Completed 200 OK in 1ms (Views: 0.2ms)
1880
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:52:03 +0100
1881
+ Processing by APIController#action as HTML
1882
+ Parameters: {"headers"=>nil}
1883
+ Completed 200 OK in 1ms (Views: 0.2ms)
1884
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:52:03 +0100
1885
+ Processing by APIController#action as HTML
1886
+ Parameters: {"headers"=>nil}
1887
+ Completed 200 OK in 1ms (Views: 0.2ms)
1888
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:52:03 +0100
1889
+ Processing by APIController#action as HTML
1890
+ Parameters: {"headers"=>nil}
1891
+ Completed 200 OK in 1ms (Views: 0.2ms)
1892
+ Started GET "/action?headers[__OSN]=%2Ffuubar" for 127.0.0.1 at 2017-11-06 16:52:03 +0100
1893
+ Processing by APIController#action as HTML
1894
+ Parameters: {"headers"=>{"__OSN"=>"/fuubar"}}
1895
+ Completed 200 OK in 1ms (Views: 0.2ms)
1896
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:08 +0100
1897
+ Processing by APIController#index as HTML
1898
+ Completed 200 OK in 1ms (Views: 0.2ms)
1899
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:08 +0100
1900
+ Processing by APIController#index as HTML
1901
+ Completed 200 OK in 1ms (Views: 0.1ms)
1902
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:08 +0100
1903
+ Processing by APIController#index as HTML
1904
+ Completed 200 OK in 1ms (Views: 0.1ms)
1905
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:08 +0100
1906
+ Processing by APIController#index as HTML
1907
+ Completed 200 OK in 1ms (Views: 0.1ms)
1908
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:08 +0100
1909
+ Processing by APIController#index as HTML
1910
+ Completed 200 OK in 1ms (Views: 0.2ms)
1911
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:08 +0100
1912
+ Processing by APIController#index as HTML
1913
+ Completed 200 OK in 1ms (Views: 0.1ms)
1914
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:08 +0100
1915
+ Processing by APIController#index as HTML
1916
+ Completed 200 OK in 1ms (Views: 0.1ms)
1917
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:08 +0100
1918
+ Processing by APIController#index as HTML
1919
+ Completed 200 OK in 1ms (Views: 0.1ms)
1920
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:52:08 +0100
1921
+ Processing by APIController#action as HTML
1922
+ Parameters: {"headers"=>nil}
1923
+ Completed 200 OK in 1ms (Views: 0.1ms)
1924
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:52:08 +0100
1925
+ Processing by APIController#action as HTML
1926
+ Parameters: {"headers"=>nil}
1927
+ Completed 200 OK in 1ms (Views: 0.1ms)
1928
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:52:08 +0100
1929
+ Processing by APIController#action as HTML
1930
+ Parameters: {"headers"=>nil}
1931
+ Completed 200 OK in 1ms (Views: 0.1ms)
1932
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:52:08 +0100
1933
+ Processing by APIController#action as HTML
1934
+ Parameters: {"headers"=>nil}
1935
+ Completed 200 OK in 1ms (Views: 0.1ms)
1936
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:52:08 +0100
1937
+ Processing by APIController#action as HTML
1938
+ Parameters: {"headers"=>nil}
1939
+ Completed 200 OK in 1ms (Views: 0.1ms)
1940
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:52:08 +0100
1941
+ Processing by APIController#action as HTML
1942
+ Parameters: {"headers"=>nil}
1943
+ Completed 200 OK in 1ms (Views: 0.1ms)
1944
+ Started GET "/action?headers[__OSN]=%2Ffuubar" for 127.0.0.1 at 2017-11-06 16:52:08 +0100
1945
+ Processing by APIController#action as HTML
1946
+ Parameters: {"headers"=>{"__OSN"=>"/fuubar"}}
1947
+ Completed 200 OK in 8ms (Views: 0.5ms)
1948
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:16 +0100
1949
+ Processing by APIController#index as HTML
1950
+ Completed 200 OK in 1ms (Views: 0.2ms)
1951
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:16 +0100
1952
+ Processing by APIController#index as HTML
1953
+ Completed 200 OK in 1ms (Views: 0.1ms)
1954
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:16 +0100
1955
+ Processing by APIController#index as HTML
1956
+ Completed 200 OK in 1ms (Views: 0.1ms)
1957
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:16 +0100
1958
+ Processing by APIController#index as HTML
1959
+ Completed 200 OK in 1ms (Views: 0.1ms)
1960
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:16 +0100
1961
+ Processing by APIController#index as HTML
1962
+ Completed 200 OK in 1ms (Views: 0.1ms)
1963
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:16 +0100
1964
+ Processing by APIController#index as HTML
1965
+ Completed 200 OK in 1ms (Views: 0.1ms)
1966
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:16 +0100
1967
+ Processing by APIController#index as HTML
1968
+ Completed 200 OK in 1ms (Views: 0.1ms)
1969
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:16 +0100
1970
+ Processing by APIController#index as HTML
1971
+ Completed 200 OK in 1ms (Views: 0.1ms)
1972
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:16 +0100
1973
+ Processing by APIController#action as HTML
1974
+ Completed 200 OK in 1ms (Views: 0.1ms)
1975
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:16 +0100
1976
+ Processing by APIController#action as HTML
1977
+ Completed 200 OK in 1ms (Views: 0.1ms)
1978
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:16 +0100
1979
+ Processing by APIController#action as HTML
1980
+ Completed 200 OK in 1ms (Views: 0.2ms)
1981
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:16 +0100
1982
+ Processing by APIController#action as HTML
1983
+ Completed 200 OK in 1ms (Views: 0.1ms)
1984
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:16 +0100
1985
+ Processing by APIController#action as HTML
1986
+ Completed 200 OK in 1ms (Views: 0.1ms)
1987
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:16 +0100
1988
+ Processing by APIController#action as HTML
1989
+ Completed 200 OK in 1ms (Views: 0.1ms)
1990
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:16 +0100
1991
+ Processing by APIController#action as HTML
1992
+ Completed 200 OK in 1ms (Views: 0.1ms)
1993
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:19 +0100
1994
+ Processing by APIController#index as HTML
1995
+ Completed 200 OK in 1ms (Views: 0.2ms)
1996
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:19 +0100
1997
+ Processing by APIController#index as HTML
1998
+ Completed 200 OK in 1ms (Views: 0.1ms)
1999
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:19 +0100
2000
+ Processing by APIController#index as HTML
2001
+ Completed 200 OK in 1ms (Views: 0.1ms)
2002
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:19 +0100
2003
+ Processing by APIController#index as HTML
2004
+ Completed 200 OK in 1ms (Views: 0.1ms)
2005
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:19 +0100
2006
+ Processing by APIController#index as HTML
2007
+ Completed 200 OK in 1ms (Views: 0.1ms)
2008
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:19 +0100
2009
+ Processing by APIController#index as HTML
2010
+ Completed 200 OK in 1ms (Views: 0.2ms)
2011
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:19 +0100
2012
+ Processing by APIController#index as HTML
2013
+ Completed 200 OK in 1ms (Views: 0.1ms)
2014
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:19 +0100
2015
+ Processing by APIController#index as HTML
2016
+ Completed 200 OK in 1ms (Views: 0.3ms)
2017
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:19 +0100
2018
+ Processing by APIController#action as HTML
2019
+ Completed 200 OK in 1ms (Views: 0.1ms)
2020
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:19 +0100
2021
+ Processing by APIController#action as HTML
2022
+ Completed 200 OK in 1ms (Views: 0.1ms)
2023
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:19 +0100
2024
+ Processing by APIController#action as HTML
2025
+ Completed 200 OK in 1ms (Views: 0.1ms)
2026
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:19 +0100
2027
+ Processing by APIController#action as HTML
2028
+ Completed 200 OK in 1ms (Views: 0.1ms)
2029
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:19 +0100
2030
+ Processing by APIController#action as HTML
2031
+ Completed 200 OK in 1ms (Views: 0.1ms)
2032
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:19 +0100
2033
+ Processing by APIController#action as HTML
2034
+ Completed 200 OK in 1ms (Views: 0.1ms)
2035
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:19 +0100
2036
+ Processing by APIController#action as HTML
2037
+ Completed 200 OK in 1ms (Views: 0.1ms)
2038
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:21 +0100
2039
+ Processing by APIController#index as HTML
2040
+ Completed 200 OK in 1ms (Views: 0.2ms)
2041
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:21 +0100
2042
+ Processing by APIController#index as HTML
2043
+ Completed 200 OK in 1ms (Views: 0.2ms)
2044
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:21 +0100
2045
+ Processing by APIController#index as HTML
2046
+ Completed 200 OK in 1ms (Views: 0.2ms)
2047
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:21 +0100
2048
+ Processing by APIController#index as HTML
2049
+ Completed 200 OK in 1ms (Views: 0.1ms)
2050
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:21 +0100
2051
+ Processing by APIController#index as HTML
2052
+ Completed 200 OK in 1ms (Views: 0.1ms)
2053
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:21 +0100
2054
+ Processing by APIController#index as HTML
2055
+ Completed 200 OK in 1ms (Views: 0.1ms)
2056
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:21 +0100
2057
+ Processing by APIController#index as HTML
2058
+ Completed 200 OK in 1ms (Views: 0.1ms)
2059
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:21 +0100
2060
+ Processing by APIController#index as HTML
2061
+ Completed 200 OK in 1ms (Views: 0.1ms)
2062
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:21 +0100
2063
+ Processing by APIController#action as HTML
2064
+ Completed 200 OK in 1ms (Views: 0.1ms)
2065
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:21 +0100
2066
+ Processing by APIController#action as HTML
2067
+ Completed 200 OK in 1ms (Views: 0.1ms)
2068
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:21 +0100
2069
+ Processing by APIController#action as HTML
2070
+ Completed 200 OK in 1ms (Views: 0.1ms)
2071
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:21 +0100
2072
+ Processing by APIController#action as HTML
2073
+ Completed 200 OK in 1ms (Views: 0.1ms)
2074
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:21 +0100
2075
+ Processing by APIController#action as HTML
2076
+ Completed 200 OK in 1ms (Views: 0.1ms)
2077
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:21 +0100
2078
+ Processing by APIController#action as HTML
2079
+ Completed 200 OK in 1ms (Views: 0.1ms)
2080
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:21 +0100
2081
+ Processing by APIController#action as HTML
2082
+ Completed 200 OK in 1ms (Views: 0.1ms)
2083
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:24 +0100
2084
+ Processing by APIController#index as HTML
2085
+ Completed 200 OK in 1ms (Views: 0.2ms)
2086
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:24 +0100
2087
+ Processing by APIController#index as HTML
2088
+ Completed 200 OK in 1ms (Views: 0.1ms)
2089
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:24 +0100
2090
+ Processing by APIController#index as HTML
2091
+ Completed 200 OK in 1ms (Views: 0.1ms)
2092
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:24 +0100
2093
+ Processing by APIController#index as HTML
2094
+ Completed 200 OK in 1ms (Views: 0.1ms)
2095
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:24 +0100
2096
+ Processing by APIController#index as HTML
2097
+ Completed 200 OK in 1ms (Views: 0.1ms)
2098
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:24 +0100
2099
+ Processing by APIController#index as HTML
2100
+ Completed 200 OK in 1ms (Views: 0.1ms)
2101
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:24 +0100
2102
+ Processing by APIController#index as HTML
2103
+ Completed 200 OK in 1ms (Views: 0.1ms)
2104
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:24 +0100
2105
+ Processing by APIController#index as HTML
2106
+ Completed 200 OK in 1ms (Views: 0.1ms)
2107
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:24 +0100
2108
+ Processing by APIController#action as HTML
2109
+ Completed 200 OK in 1ms (Views: 0.1ms)
2110
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:24 +0100
2111
+ Processing by APIController#action as HTML
2112
+ Completed 200 OK in 1ms (Views: 0.1ms)
2113
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:24 +0100
2114
+ Processing by APIController#action as HTML
2115
+ Completed 200 OK in 1ms (Views: 0.1ms)
2116
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:24 +0100
2117
+ Processing by APIController#action as HTML
2118
+ Completed 200 OK in 1ms (Views: 0.1ms)
2119
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:24 +0100
2120
+ Processing by APIController#action as HTML
2121
+ Completed 200 OK in 1ms (Views: 0.1ms)
2122
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:24 +0100
2123
+ Processing by APIController#action as HTML
2124
+ Completed 200 OK in 1ms (Views: 0.2ms)
2125
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:24 +0100
2126
+ Processing by APIController#action as HTML
2127
+ Completed 200 OK in 1ms (Views: 0.1ms)
2128
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:26 +0100
2129
+ Processing by APIController#action as HTML
2130
+ Completed 200 OK in 1ms (Views: 0.2ms)
2131
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:26 +0100
2132
+ Processing by APIController#action as HTML
2133
+ Completed 200 OK in 1ms (Views: 0.2ms)
2134
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:26 +0100
2135
+ Processing by APIController#action as HTML
2136
+ Completed 200 OK in 1ms (Views: 0.1ms)
2137
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:26 +0100
2138
+ Processing by APIController#action as HTML
2139
+ Completed 200 OK in 1ms (Views: 0.1ms)
2140
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:26 +0100
2141
+ Processing by APIController#action as HTML
2142
+ Completed 200 OK in 1ms (Views: 0.1ms)
2143
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:26 +0100
2144
+ Processing by APIController#action as HTML
2145
+ Completed 200 OK in 1ms (Views: 0.1ms)
2146
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:26 +0100
2147
+ Processing by APIController#action as HTML
2148
+ Completed 200 OK in 1ms (Views: 0.1ms)
2149
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:26 +0100
2150
+ Processing by APIController#index as HTML
2151
+ Completed 200 OK in 1ms (Views: 0.1ms)
2152
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:26 +0100
2153
+ Processing by APIController#index as HTML
2154
+ Completed 200 OK in 1ms (Views: 0.1ms)
2155
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:26 +0100
2156
+ Processing by APIController#index as HTML
2157
+ Completed 200 OK in 1ms (Views: 0.1ms)
2158
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:26 +0100
2159
+ Processing by APIController#index as HTML
2160
+ Completed 200 OK in 1ms (Views: 0.1ms)
2161
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:26 +0100
2162
+ Processing by APIController#index as HTML
2163
+ Completed 200 OK in 1ms (Views: 0.1ms)
2164
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:26 +0100
2165
+ Processing by APIController#index as HTML
2166
+ Completed 200 OK in 1ms (Views: 0.1ms)
2167
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:26 +0100
2168
+ Processing by APIController#index as HTML
2169
+ Completed 200 OK in 1ms (Views: 0.1ms)
2170
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:26 +0100
2171
+ Processing by APIController#index as HTML
2172
+ Completed 200 OK in 1ms (Views: 0.1ms)
2173
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:29 +0100
2174
+ Processing by APIController#action as HTML
2175
+ Completed 200 OK in 2ms (Views: 0.3ms)
2176
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:29 +0100
2177
+ Processing by APIController#action as HTML
2178
+ Completed 200 OK in 1ms (Views: 0.3ms)
2179
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:29 +0100
2180
+ Processing by APIController#action as HTML
2181
+ Completed 200 OK in 1ms (Views: 0.2ms)
2182
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:29 +0100
2183
+ Processing by APIController#action as HTML
2184
+ Completed 200 OK in 1ms (Views: 0.2ms)
2185
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:29 +0100
2186
+ Processing by APIController#action as HTML
2187
+ Completed 200 OK in 1ms (Views: 0.2ms)
2188
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:29 +0100
2189
+ Processing by APIController#action as HTML
2190
+ Completed 200 OK in 1ms (Views: 0.2ms)
2191
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:52:29 +0100
2192
+ Processing by APIController#action as HTML
2193
+ Completed 200 OK in 1ms (Views: 0.2ms)
2194
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:29 +0100
2195
+ Processing by APIController#index as HTML
2196
+ Completed 200 OK in 1ms (Views: 0.2ms)
2197
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:29 +0100
2198
+ Processing by APIController#index as HTML
2199
+ Completed 200 OK in 1ms (Views: 0.2ms)
2200
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:29 +0100
2201
+ Processing by APIController#index as HTML
2202
+ Completed 200 OK in 1ms (Views: 0.2ms)
2203
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:29 +0100
2204
+ Processing by APIController#index as HTML
2205
+ Completed 200 OK in 1ms (Views: 0.2ms)
2206
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:29 +0100
2207
+ Processing by APIController#index as HTML
2208
+ Completed 200 OK in 1ms (Views: 0.2ms)
2209
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:29 +0100
2210
+ Processing by APIController#index as HTML
2211
+ Completed 200 OK in 1ms (Views: 0.2ms)
2212
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:29 +0100
2213
+ Processing by APIController#index as HTML
2214
+ Completed 200 OK in 1ms (Views: 0.2ms)
2215
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:29 +0100
2216
+ Processing by APIController#index as HTML
2217
+ Completed 200 OK in 1ms (Views: 0.3ms)
2218
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:31 +0100
2219
+ Processing by APIController#index as HTML
2220
+ Completed 200 OK in 1ms (Views: 0.2ms)
2221
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:31 +0100
2222
+ Processing by APIController#index as HTML
2223
+ Completed 200 OK in 1ms (Views: 0.1ms)
2224
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:31 +0100
2225
+ Processing by APIController#index as HTML
2226
+ Completed 200 OK in 1ms (Views: 0.2ms)
2227
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:31 +0100
2228
+ Processing by APIController#index as HTML
2229
+ Completed 200 OK in 1ms (Views: 0.2ms)
2230
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:31 +0100
2231
+ Processing by APIController#index as HTML
2232
+ Completed 200 OK in 1ms (Views: 0.2ms)
2233
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:31 +0100
2234
+ Processing by APIController#index as HTML
2235
+ Completed 200 OK in 1ms (Views: 0.2ms)
2236
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:31 +0100
2237
+ Processing by APIController#index as HTML
2238
+ Completed 200 OK in 1ms (Views: 0.1ms)
2239
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:31 +0100
2240
+ Processing by APIController#index as HTML
2241
+ Completed 200 OK in 1ms (Views: 0.2ms)
2242
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:52:31 +0100
2243
+ Processing by APIController#action as HTML
2244
+ Parameters: {"headers"=>nil}
2245
+ Completed 200 OK in 1ms (Views: 0.2ms)
2246
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:52:31 +0100
2247
+ Processing by APIController#action as HTML
2248
+ Parameters: {"headers"=>nil}
2249
+ Completed 200 OK in 1ms (Views: 0.1ms)
2250
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:52:31 +0100
2251
+ Processing by APIController#action as HTML
2252
+ Parameters: {"headers"=>nil}
2253
+ Completed 200 OK in 1ms (Views: 0.1ms)
2254
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:52:31 +0100
2255
+ Processing by APIController#action as HTML
2256
+ Parameters: {"headers"=>nil}
2257
+ Completed 200 OK in 1ms (Views: 0.1ms)
2258
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:52:31 +0100
2259
+ Processing by APIController#action as HTML
2260
+ Parameters: {"headers"=>nil}
2261
+ Completed 200 OK in 1ms (Views: 0.1ms)
2262
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:52:31 +0100
2263
+ Processing by APIController#action as HTML
2264
+ Parameters: {"headers"=>nil}
2265
+ Completed 200 OK in 1ms (Views: 0.1ms)
2266
+ Started GET "/action?headers[__OSN]=%2Ffuubar" for 127.0.0.1 at 2017-11-06 16:52:31 +0100
2267
+ Processing by APIController#action as HTML
2268
+ Parameters: {"headers"=>{"__OSN"=>"/fuubar"}}
2269
+ Completed 200 OK in 1ms (Views: 0.1ms)
2270
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:34 +0100
2271
+ Processing by APIController#index as HTML
2272
+ Completed 200 OK in 1ms (Views: 0.2ms)
2273
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:34 +0100
2274
+ Processing by APIController#index as HTML
2275
+ Completed 200 OK in 1ms (Views: 0.1ms)
2276
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:34 +0100
2277
+ Processing by APIController#index as HTML
2278
+ Completed 200 OK in 1ms (Views: 0.1ms)
2279
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:34 +0100
2280
+ Processing by APIController#index as HTML
2281
+ Completed 200 OK in 1ms (Views: 0.1ms)
2282
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:34 +0100
2283
+ Processing by APIController#index as HTML
2284
+ Completed 200 OK in 1ms (Views: 0.2ms)
2285
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:34 +0100
2286
+ Processing by APIController#index as HTML
2287
+ Completed 200 OK in 1ms (Views: 0.1ms)
2288
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:34 +0100
2289
+ Processing by APIController#index as HTML
2290
+ Completed 200 OK in 1ms (Views: 0.1ms)
2291
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:52:34 +0100
2292
+ Processing by APIController#index as HTML
2293
+ Completed 200 OK in 1ms (Views: 0.1ms)
2294
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:52:34 +0100
2295
+ Processing by APIController#action as HTML
2296
+ Parameters: {"headers"=>nil}
2297
+ Completed 200 OK in 1ms (Views: 0.1ms)
2298
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:52:34 +0100
2299
+ Processing by APIController#action as HTML
2300
+ Parameters: {"headers"=>nil}
2301
+ Completed 200 OK in 1ms (Views: 0.1ms)
2302
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:52:34 +0100
2303
+ Processing by APIController#action as HTML
2304
+ Parameters: {"headers"=>nil}
2305
+ Completed 200 OK in 1ms (Views: 0.1ms)
2306
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:52:34 +0100
2307
+ Processing by APIController#action as HTML
2308
+ Parameters: {"headers"=>nil}
2309
+ Completed 200 OK in 1ms (Views: 0.1ms)
2310
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:52:34 +0100
2311
+ Processing by APIController#action as HTML
2312
+ Parameters: {"headers"=>nil}
2313
+ Completed 200 OK in 4ms (Views: 0.1ms)
2314
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:52:34 +0100
2315
+ Processing by APIController#action as HTML
2316
+ Parameters: {"headers"=>nil}
2317
+ Completed 200 OK in 1ms (Views: 0.1ms)
2318
+ Started GET "/action?headers[__OSN]=%2Ffuubar" for 127.0.0.1 at 2017-11-06 16:52:34 +0100
2319
+ Processing by APIController#action as HTML
2320
+ Parameters: {"headers"=>{"__OSN"=>"/fuubar"}}
2321
+ Completed 200 OK in 1ms (Views: 0.1ms)
2322
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:53:19 +0100
2323
+ Processing by APIController#index as HTML
2324
+ Completed 200 OK in 1ms (Views: 0.2ms)
2325
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:53:19 +0100
2326
+ Processing by APIController#index as HTML
2327
+ Completed 200 OK in 1ms (Views: 0.2ms)
2328
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:53:19 +0100
2329
+ Processing by APIController#index as HTML
2330
+ Completed 200 OK in 1ms (Views: 0.2ms)
2331
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:53:19 +0100
2332
+ Processing by APIController#index as HTML
2333
+ Completed 200 OK in 1ms (Views: 0.2ms)
2334
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:53:19 +0100
2335
+ Processing by APIController#index as HTML
2336
+ Completed 200 OK in 1ms (Views: 0.2ms)
2337
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:53:19 +0100
2338
+ Processing by APIController#index as HTML
2339
+ Completed 200 OK in 1ms (Views: 0.1ms)
2340
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:53:19 +0100
2341
+ Processing by APIController#index as HTML
2342
+ Completed 200 OK in 1ms (Views: 0.2ms)
2343
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:53:19 +0100
2344
+ Processing by APIController#index as HTML
2345
+ Completed 200 OK in 1ms (Views: 0.1ms)
2346
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:53:19 +0100
2347
+ Processing by APIController#action as HTML
2348
+ Parameters: {"headers"=>nil}
2349
+ Completed 200 OK in 1ms (Views: 0.1ms)
2350
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:53:19 +0100
2351
+ Processing by APIController#action as HTML
2352
+ Parameters: {"headers"=>nil}
2353
+ Completed 200 OK in 1ms (Views: 0.2ms)
2354
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:53:19 +0100
2355
+ Processing by APIController#action as HTML
2356
+ Parameters: {"headers"=>nil}
2357
+ Completed 200 OK in 1ms (Views: 0.1ms)
2358
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:53:19 +0100
2359
+ Processing by APIController#action as HTML
2360
+ Parameters: {"headers"=>nil}
2361
+ Completed 200 OK in 1ms (Views: 0.1ms)
2362
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:53:19 +0100
2363
+ Processing by APIController#action as HTML
2364
+ Parameters: {"headers"=>nil}
2365
+ Completed 200 OK in 1ms (Views: 0.1ms)
2366
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:53:19 +0100
2367
+ Processing by APIController#action as HTML
2368
+ Parameters: {"headers"=>nil}
2369
+ Completed 200 OK in 1ms (Views: 0.1ms)
2370
+ Started GET "/action?headers[__OSN]=%2Ffuubar" for 127.0.0.1 at 2017-11-06 16:53:19 +0100
2371
+ Processing by APIController#action as HTML
2372
+ Parameters: {"headers"=>{"__OSN"=>"/fuubar"}}
2373
+ Completed 200 OK in 1ms (Views: 0.2ms)
2374
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:53:57 +0100
2375
+ Processing by APIController#index as HTML
2376
+ Completed 200 OK in 1ms (Views: 0.2ms)
2377
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:53:57 +0100
2378
+ Processing by APIController#index as HTML
2379
+ Completed 200 OK in 1ms (Views: 0.1ms)
2380
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:53:57 +0100
2381
+ Processing by APIController#index as HTML
2382
+ Completed 200 OK in 1ms (Views: 0.1ms)
2383
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:53:57 +0100
2384
+ Processing by APIController#index as HTML
2385
+ Completed 200 OK in 1ms (Views: 0.1ms)
2386
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:53:57 +0100
2387
+ Processing by APIController#index as HTML
2388
+ Completed 200 OK in 1ms (Views: 0.1ms)
2389
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:53:57 +0100
2390
+ Processing by APIController#index as HTML
2391
+ Completed 200 OK in 1ms (Views: 0.1ms)
2392
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:53:57 +0100
2393
+ Processing by APIController#index as HTML
2394
+ Completed 200 OK in 1ms (Views: 0.2ms)
2395
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:53:57 +0100
2396
+ Processing by APIController#index as HTML
2397
+ Completed 200 OK in 1ms (Views: 0.1ms)
2398
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:53:57 +0100
2399
+ Processing by APIController#action as HTML
2400
+ Completed 200 OK in 1ms (Views: 0.1ms)
2401
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:53:57 +0100
2402
+ Processing by APIController#action as HTML
2403
+ Completed 200 OK in 1ms (Views: 0.1ms)
2404
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:53:57 +0100
2405
+ Processing by APIController#action as HTML
2406
+ Completed 200 OK in 1ms (Views: 0.1ms)
2407
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:53:57 +0100
2408
+ Processing by APIController#action as HTML
2409
+ Completed 200 OK in 1ms (Views: 0.1ms)
2410
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:53:57 +0100
2411
+ Processing by APIController#action as HTML
2412
+ Completed 200 OK in 1ms (Views: 0.1ms)
2413
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:53:57 +0100
2414
+ Processing by APIController#action as HTML
2415
+ Completed 200 OK in 1ms (Views: 0.1ms)
2416
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:53:57 +0100
2417
+ Processing by APIController#action as HTML
2418
+ Completed 200 OK in 1ms (Views: 0.1ms)
2419
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:00 +0100
2420
+ Processing by APIController#index as HTML
2421
+ Completed 200 OK in 1ms (Views: 0.2ms)
2422
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:00 +0100
2423
+ Processing by APIController#index as HTML
2424
+ Completed 200 OK in 1ms (Views: 0.2ms)
2425
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:00 +0100
2426
+ Processing by APIController#index as HTML
2427
+ Completed 200 OK in 1ms (Views: 0.2ms)
2428
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:00 +0100
2429
+ Processing by APIController#index as HTML
2430
+ Completed 200 OK in 1ms (Views: 0.1ms)
2431
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:00 +0100
2432
+ Processing by APIController#index as HTML
2433
+ Completed 200 OK in 1ms (Views: 0.2ms)
2434
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:00 +0100
2435
+ Processing by APIController#index as HTML
2436
+ Completed 200 OK in 1ms (Views: 0.1ms)
2437
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:00 +0100
2438
+ Processing by APIController#index as HTML
2439
+ Completed 200 OK in 1ms (Views: 0.1ms)
2440
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:00 +0100
2441
+ Processing by APIController#index as HTML
2442
+ Completed 200 OK in 1ms (Views: 0.2ms)
2443
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:00 +0100
2444
+ Processing by APIController#action as HTML
2445
+ Completed 200 OK in 1ms (Views: 0.2ms)
2446
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:00 +0100
2447
+ Processing by APIController#action as HTML
2448
+ Completed 200 OK in 1ms (Views: 0.1ms)
2449
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:00 +0100
2450
+ Processing by APIController#action as HTML
2451
+ Completed 200 OK in 1ms (Views: 0.1ms)
2452
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:00 +0100
2453
+ Processing by APIController#action as HTML
2454
+ Completed 200 OK in 1ms (Views: 0.1ms)
2455
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:00 +0100
2456
+ Processing by APIController#action as HTML
2457
+ Completed 200 OK in 1ms (Views: 0.2ms)
2458
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:00 +0100
2459
+ Processing by APIController#action as HTML
2460
+ Completed 200 OK in 1ms (Views: 0.1ms)
2461
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:00 +0100
2462
+ Processing by APIController#action as HTML
2463
+ Completed 200 OK in 1ms (Views: 0.1ms)
2464
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:13 +0100
2465
+ Processing by APIController#index as HTML
2466
+ Completed 200 OK in 1ms (Views: 0.2ms)
2467
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:13 +0100
2468
+ Processing by APIController#index as HTML
2469
+ Completed 200 OK in 1ms (Views: 0.2ms)
2470
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:13 +0100
2471
+ Processing by APIController#index as HTML
2472
+ Completed 200 OK in 1ms (Views: 0.2ms)
2473
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:13 +0100
2474
+ Processing by APIController#index as HTML
2475
+ Completed 200 OK in 1ms (Views: 0.2ms)
2476
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:13 +0100
2477
+ Processing by APIController#index as HTML
2478
+ Completed 200 OK in 1ms (Views: 0.1ms)
2479
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:13 +0100
2480
+ Processing by APIController#index as HTML
2481
+ Completed 200 OK in 1ms (Views: 0.1ms)
2482
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:13 +0100
2483
+ Processing by APIController#index as HTML
2484
+ Completed 200 OK in 1ms (Views: 0.1ms)
2485
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:13 +0100
2486
+ Processing by APIController#index as HTML
2487
+ Completed 200 OK in 1ms (Views: 0.1ms)
2488
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:13 +0100
2489
+ Processing by APIController#action as HTML
2490
+ Completed 200 OK in 1ms (Views: 0.1ms)
2491
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:13 +0100
2492
+ Processing by APIController#action as HTML
2493
+ Completed 200 OK in 1ms (Views: 0.1ms)
2494
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:13 +0100
2495
+ Processing by APIController#action as HTML
2496
+ Completed 200 OK in 1ms (Views: 0.1ms)
2497
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:13 +0100
2498
+ Processing by APIController#action as HTML
2499
+ Completed 200 OK in 1ms (Views: 0.1ms)
2500
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:13 +0100
2501
+ Processing by APIController#action as HTML
2502
+ Completed 200 OK in 1ms (Views: 0.1ms)
2503
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:13 +0100
2504
+ Processing by APIController#action as HTML
2505
+ Completed 200 OK in 1ms (Views: 0.1ms)
2506
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:13 +0100
2507
+ Processing by APIController#action as HTML
2508
+ Completed 200 OK in 1ms (Views: 0.1ms)
2509
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:16 +0100
2510
+ Processing by APIController#index as HTML
2511
+ Completed 200 OK in 1ms (Views: 0.3ms)
2512
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:16 +0100
2513
+ Processing by APIController#index as HTML
2514
+ Completed 200 OK in 1ms (Views: 0.1ms)
2515
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:16 +0100
2516
+ Processing by APIController#index as HTML
2517
+ Completed 200 OK in 1ms (Views: 0.1ms)
2518
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:16 +0100
2519
+ Processing by APIController#index as HTML
2520
+ Completed 200 OK in 1ms (Views: 0.1ms)
2521
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:16 +0100
2522
+ Processing by APIController#index as HTML
2523
+ Completed 200 OK in 1ms (Views: 0.1ms)
2524
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:16 +0100
2525
+ Processing by APIController#index as HTML
2526
+ Completed 200 OK in 1ms (Views: 0.1ms)
2527
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:16 +0100
2528
+ Processing by APIController#index as HTML
2529
+ Completed 200 OK in 1ms (Views: 0.1ms)
2530
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:16 +0100
2531
+ Processing by APIController#index as HTML
2532
+ Completed 200 OK in 1ms (Views: 0.1ms)
2533
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:16 +0100
2534
+ Processing by APIController#action as HTML
2535
+ Completed 200 OK in 1ms (Views: 0.1ms)
2536
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:16 +0100
2537
+ Processing by APIController#action as HTML
2538
+ Completed 200 OK in 1ms (Views: 0.1ms)
2539
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:16 +0100
2540
+ Processing by APIController#action as HTML
2541
+ Completed 200 OK in 1ms (Views: 0.1ms)
2542
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:16 +0100
2543
+ Processing by APIController#action as HTML
2544
+ Completed 200 OK in 1ms (Views: 0.1ms)
2545
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:16 +0100
2546
+ Processing by APIController#action as HTML
2547
+ Completed 200 OK in 1ms (Views: 0.1ms)
2548
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:16 +0100
2549
+ Processing by APIController#action as HTML
2550
+ Completed 200 OK in 1ms (Views: 0.2ms)
2551
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:16 +0100
2552
+ Processing by APIController#action as HTML
2553
+ Completed 200 OK in 1ms (Views: 0.2ms)
2554
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:42 +0100
2555
+ Processing by APIController#index as HTML
2556
+ Completed 200 OK in 1ms (Views: 0.2ms)
2557
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:42 +0100
2558
+ Processing by APIController#index as HTML
2559
+ Completed 200 OK in 1ms (Views: 0.2ms)
2560
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:42 +0100
2561
+ Processing by APIController#index as HTML
2562
+ Completed 200 OK in 1ms (Views: 0.1ms)
2563
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:42 +0100
2564
+ Processing by APIController#index as HTML
2565
+ Completed 200 OK in 1ms (Views: 0.1ms)
2566
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:42 +0100
2567
+ Processing by APIController#index as HTML
2568
+ Completed 200 OK in 1ms (Views: 0.1ms)
2569
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:42 +0100
2570
+ Processing by APIController#index as HTML
2571
+ Completed 200 OK in 1ms (Views: 0.1ms)
2572
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:42 +0100
2573
+ Processing by APIController#index as HTML
2574
+ Completed 200 OK in 1ms (Views: 0.2ms)
2575
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:42 +0100
2576
+ Processing by APIController#index as HTML
2577
+ Completed 200 OK in 1ms (Views: 0.1ms)
2578
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:42 +0100
2579
+ Processing by APIController#action as HTML
2580
+ Completed 200 OK in 1ms (Views: 0.1ms)
2581
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:42 +0100
2582
+ Processing by APIController#action as HTML
2583
+ Completed 200 OK in 1ms (Views: 0.1ms)
2584
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:42 +0100
2585
+ Processing by APIController#action as HTML
2586
+ Completed 200 OK in 1ms (Views: 0.1ms)
2587
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:42 +0100
2588
+ Processing by APIController#action as HTML
2589
+ Completed 200 OK in 1ms (Views: 0.1ms)
2590
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:42 +0100
2591
+ Processing by APIController#action as HTML
2592
+ Completed 200 OK in 1ms (Views: 0.1ms)
2593
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:42 +0100
2594
+ Processing by APIController#action as HTML
2595
+ Completed 200 OK in 1ms (Views: 0.1ms)
2596
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:42 +0100
2597
+ Processing by APIController#action as HTML
2598
+ Completed 200 OK in 1ms (Views: 0.3ms)
2599
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:45 +0100
2600
+ Processing by APIController#index as HTML
2601
+ Completed 200 OK in 1ms (Views: 0.2ms)
2602
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:45 +0100
2603
+ Processing by APIController#index as HTML
2604
+ Completed 200 OK in 1ms (Views: 0.2ms)
2605
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:45 +0100
2606
+ Processing by APIController#index as HTML
2607
+ Completed 200 OK in 1ms (Views: 0.1ms)
2608
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:45 +0100
2609
+ Processing by APIController#index as HTML
2610
+ Completed 200 OK in 1ms (Views: 0.1ms)
2611
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:45 +0100
2612
+ Processing by APIController#index as HTML
2613
+ Completed 200 OK in 1ms (Views: 0.1ms)
2614
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:45 +0100
2615
+ Processing by APIController#index as HTML
2616
+ Completed 200 OK in 1ms (Views: 0.1ms)
2617
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:45 +0100
2618
+ Processing by APIController#index as HTML
2619
+ Completed 200 OK in 1ms (Views: 0.1ms)
2620
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:45 +0100
2621
+ Processing by APIController#index as HTML
2622
+ Completed 200 OK in 1ms (Views: 0.1ms)
2623
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:45 +0100
2624
+ Processing by APIController#action as HTML
2625
+ Completed 200 OK in 1ms (Views: 0.1ms)
2626
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:45 +0100
2627
+ Processing by APIController#action as HTML
2628
+ Completed 200 OK in 1ms (Views: 0.1ms)
2629
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:45 +0100
2630
+ Processing by APIController#action as HTML
2631
+ Completed 200 OK in 1ms (Views: 0.1ms)
2632
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:45 +0100
2633
+ Processing by APIController#action as HTML
2634
+ Completed 200 OK in 1ms (Views: 0.1ms)
2635
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:45 +0100
2636
+ Processing by APIController#action as HTML
2637
+ Completed 200 OK in 1ms (Views: 0.1ms)
2638
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:45 +0100
2639
+ Processing by APIController#action as HTML
2640
+ Completed 200 OK in 1ms (Views: 0.1ms)
2641
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:45 +0100
2642
+ Processing by APIController#action as HTML
2643
+ Completed 200 OK in 1ms (Views: 0.1ms)
2644
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:48 +0100
2645
+ Processing by APIController#index as HTML
2646
+ Completed 200 OK in 1ms (Views: 0.2ms)
2647
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:48 +0100
2648
+ Processing by APIController#index as HTML
2649
+ Completed 200 OK in 1ms (Views: 0.1ms)
2650
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:48 +0100
2651
+ Processing by APIController#index as HTML
2652
+ Completed 200 OK in 1ms (Views: 0.1ms)
2653
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:48 +0100
2654
+ Processing by APIController#index as HTML
2655
+ Completed 200 OK in 1ms (Views: 0.1ms)
2656
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:48 +0100
2657
+ Processing by APIController#index as HTML
2658
+ Completed 200 OK in 1ms (Views: 0.1ms)
2659
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:48 +0100
2660
+ Processing by APIController#index as HTML
2661
+ Completed 200 OK in 1ms (Views: 0.1ms)
2662
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:48 +0100
2663
+ Processing by APIController#index as HTML
2664
+ Completed 200 OK in 1ms (Views: 0.1ms)
2665
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:48 +0100
2666
+ Processing by APIController#index as HTML
2667
+ Completed 200 OK in 1ms (Views: 0.1ms)
2668
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:48 +0100
2669
+ Processing by APIController#action as HTML
2670
+ Completed 200 OK in 1ms (Views: 0.2ms)
2671
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:48 +0100
2672
+ Processing by APIController#action as HTML
2673
+ Completed 200 OK in 1ms (Views: 0.2ms)
2674
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:48 +0100
2675
+ Processing by APIController#action as HTML
2676
+ Completed 200 OK in 1ms (Views: 0.1ms)
2677
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:48 +0100
2678
+ Processing by APIController#action as HTML
2679
+ Completed 200 OK in 1ms (Views: 0.1ms)
2680
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:48 +0100
2681
+ Processing by APIController#action as HTML
2682
+ Completed 200 OK in 1ms (Views: 0.1ms)
2683
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:48 +0100
2684
+ Processing by APIController#action as HTML
2685
+ Completed 200 OK in 1ms (Views: 0.1ms)
2686
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:48 +0100
2687
+ Processing by APIController#action as HTML
2688
+ Completed 200 OK in 1ms (Views: 0.1ms)
2689
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:52 +0100
2690
+ Processing by APIController#action as HTML
2691
+ Completed 200 OK in 1ms (Views: 0.2ms)
2692
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:52 +0100
2693
+ Processing by APIController#action as HTML
2694
+ Completed 200 OK in 1ms (Views: 0.2ms)
2695
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:52 +0100
2696
+ Processing by APIController#action as HTML
2697
+ Completed 200 OK in 1ms (Views: 0.1ms)
2698
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:52 +0100
2699
+ Processing by APIController#action as HTML
2700
+ Completed 200 OK in 1ms (Views: 0.2ms)
2701
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:52 +0100
2702
+ Processing by APIController#action as HTML
2703
+ Completed 200 OK in 1ms (Views: 0.1ms)
2704
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:52 +0100
2705
+ Processing by APIController#action as HTML
2706
+ Completed 200 OK in 1ms (Views: 0.2ms)
2707
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:52 +0100
2708
+ Processing by APIController#action as HTML
2709
+ Completed 200 OK in 1ms (Views: 0.1ms)
2710
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:52 +0100
2711
+ Processing by APIController#index as HTML
2712
+ Completed 200 OK in 1ms (Views: 0.2ms)
2713
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:52 +0100
2714
+ Processing by APIController#index as HTML
2715
+ Completed 200 OK in 1ms (Views: 0.2ms)
2716
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:52 +0100
2717
+ Processing by APIController#index as HTML
2718
+ Completed 200 OK in 1ms (Views: 0.2ms)
2719
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:52 +0100
2720
+ Processing by APIController#index as HTML
2721
+ Completed 200 OK in 1ms (Views: 0.2ms)
2722
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:52 +0100
2723
+ Processing by APIController#index as HTML
2724
+ Completed 200 OK in 1ms (Views: 0.1ms)
2725
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:52 +0100
2726
+ Processing by APIController#index as HTML
2727
+ Completed 200 OK in 1ms (Views: 0.2ms)
2728
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:52 +0100
2729
+ Processing by APIController#index as HTML
2730
+ Completed 200 OK in 1ms (Views: 0.1ms)
2731
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:52 +0100
2732
+ Processing by APIController#index as HTML
2733
+ Completed 200 OK in 1ms (Views: 0.1ms)
2734
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:55 +0100
2735
+ Processing by APIController#index as HTML
2736
+ Completed 200 OK in 1ms (Views: 0.2ms)
2737
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:55 +0100
2738
+ Processing by APIController#index as HTML
2739
+ Completed 200 OK in 1ms (Views: 0.1ms)
2740
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:55 +0100
2741
+ Processing by APIController#index as HTML
2742
+ Completed 200 OK in 1ms (Views: 0.1ms)
2743
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:55 +0100
2744
+ Processing by APIController#index as HTML
2745
+ Completed 200 OK in 1ms (Views: 0.1ms)
2746
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:55 +0100
2747
+ Processing by APIController#index as HTML
2748
+ Completed 200 OK in 1ms (Views: 0.1ms)
2749
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:55 +0100
2750
+ Processing by APIController#index as HTML
2751
+ Completed 200 OK in 1ms (Views: 0.1ms)
2752
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:55 +0100
2753
+ Processing by APIController#index as HTML
2754
+ Completed 200 OK in 1ms (Views: 0.1ms)
2755
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:55 +0100
2756
+ Processing by APIController#index as HTML
2757
+ Completed 200 OK in 1ms (Views: 0.1ms)
2758
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:55 +0100
2759
+ Processing by APIController#action as HTML
2760
+ Completed 200 OK in 1ms (Views: 0.1ms)
2761
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:55 +0100
2762
+ Processing by APIController#action as HTML
2763
+ Completed 200 OK in 1ms (Views: 0.1ms)
2764
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:55 +0100
2765
+ Processing by APIController#action as HTML
2766
+ Completed 200 OK in 1ms (Views: 0.1ms)
2767
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:55 +0100
2768
+ Processing by APIController#action as HTML
2769
+ Completed 200 OK in 1ms (Views: 0.1ms)
2770
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:55 +0100
2771
+ Processing by APIController#action as HTML
2772
+ Completed 200 OK in 1ms (Views: 0.1ms)
2773
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:55 +0100
2774
+ Processing by APIController#action as HTML
2775
+ Completed 200 OK in 1ms (Views: 0.1ms)
2776
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:55 +0100
2777
+ Processing by APIController#action as HTML
2778
+ Completed 200 OK in 1ms (Views: 0.1ms)
2779
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:58 +0100
2780
+ Processing by APIController#index as HTML
2781
+ Completed 200 OK in 1ms (Views: 0.2ms)
2782
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:58 +0100
2783
+ Processing by APIController#index as HTML
2784
+ Completed 200 OK in 1ms (Views: 0.2ms)
2785
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:58 +0100
2786
+ Processing by APIController#index as HTML
2787
+ Completed 200 OK in 1ms (Views: 0.2ms)
2788
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:58 +0100
2789
+ Processing by APIController#index as HTML
2790
+ Completed 200 OK in 1ms (Views: 0.1ms)
2791
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:58 +0100
2792
+ Processing by APIController#index as HTML
2793
+ Completed 200 OK in 4ms (Views: 0.2ms)
2794
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:58 +0100
2795
+ Processing by APIController#index as HTML
2796
+ Completed 200 OK in 1ms (Views: 0.1ms)
2797
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:58 +0100
2798
+ Processing by APIController#index as HTML
2799
+ Completed 200 OK in 1ms (Views: 0.2ms)
2800
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:54:58 +0100
2801
+ Processing by APIController#index as HTML
2802
+ Completed 200 OK in 1ms (Views: 0.2ms)
2803
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:58 +0100
2804
+ Processing by APIController#action as HTML
2805
+ Completed 200 OK in 1ms (Views: 0.1ms)
2806
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:58 +0100
2807
+ Processing by APIController#action as HTML
2808
+ Completed 200 OK in 1ms (Views: 0.1ms)
2809
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:58 +0100
2810
+ Processing by APIController#action as HTML
2811
+ Completed 200 OK in 1ms (Views: 0.1ms)
2812
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:58 +0100
2813
+ Processing by APIController#action as HTML
2814
+ Completed 200 OK in 1ms (Views: 0.1ms)
2815
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:58 +0100
2816
+ Processing by APIController#action as HTML
2817
+ Completed 200 OK in 1ms (Views: 0.1ms)
2818
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:58 +0100
2819
+ Processing by APIController#action as HTML
2820
+ Completed 200 OK in 1ms (Views: 0.1ms)
2821
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:54:58 +0100
2822
+ Processing by APIController#action as HTML
2823
+ Completed 200 OK in 1ms (Views: 0.1ms)
2824
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:55:02 +0100
2825
+ Processing by APIController#action as HTML
2826
+ Completed 200 OK in 1ms (Views: 0.2ms)
2827
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:55:02 +0100
2828
+ Processing by APIController#action as HTML
2829
+ Completed 200 OK in 1ms (Views: 0.2ms)
2830
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:55:02 +0100
2831
+ Processing by APIController#action as HTML
2832
+ Completed 200 OK in 1ms (Views: 0.1ms)
2833
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:55:02 +0100
2834
+ Processing by APIController#action as HTML
2835
+ Completed 200 OK in 1ms (Views: 0.2ms)
2836
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:55:02 +0100
2837
+ Processing by APIController#action as HTML
2838
+ Completed 200 OK in 1ms (Views: 0.1ms)
2839
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:55:02 +0100
2840
+ Processing by APIController#action as HTML
2841
+ Completed 200 OK in 1ms (Views: 0.1ms)
2842
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:55:02 +0100
2843
+ Processing by APIController#action as HTML
2844
+ Completed 200 OK in 1ms (Views: 0.1ms)
2845
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:02 +0100
2846
+ Processing by APIController#index as HTML
2847
+ Completed 200 OK in 1ms (Views: 0.2ms)
2848
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:02 +0100
2849
+ Processing by APIController#index as HTML
2850
+ Completed 200 OK in 1ms (Views: 0.2ms)
2851
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:02 +0100
2852
+ Processing by APIController#index as HTML
2853
+ Completed 200 OK in 1ms (Views: 0.2ms)
2854
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:02 +0100
2855
+ Processing by APIController#index as HTML
2856
+ Completed 200 OK in 1ms (Views: 0.1ms)
2857
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:02 +0100
2858
+ Processing by APIController#index as HTML
2859
+ Completed 200 OK in 1ms (Views: 0.1ms)
2860
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:02 +0100
2861
+ Processing by APIController#index as HTML
2862
+ Completed 200 OK in 1ms (Views: 0.2ms)
2863
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:02 +0100
2864
+ Processing by APIController#index as HTML
2865
+ Completed 200 OK in 1ms (Views: 0.2ms)
2866
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:02 +0100
2867
+ Processing by APIController#index as HTML
2868
+ Completed 200 OK in 5ms (Views: 0.2ms)
2869
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:05 +0100
2870
+ Processing by APIController#index as HTML
2871
+ Completed 200 OK in 1ms (Views: 0.1ms)
2872
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:05 +0100
2873
+ Processing by APIController#index as HTML
2874
+ Completed 200 OK in 1ms (Views: 0.1ms)
2875
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:05 +0100
2876
+ Processing by APIController#index as HTML
2877
+ Completed 200 OK in 1ms (Views: 0.1ms)
2878
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:05 +0100
2879
+ Processing by APIController#index as HTML
2880
+ Completed 200 OK in 1ms (Views: 0.1ms)
2881
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:05 +0100
2882
+ Processing by APIController#index as HTML
2883
+ Completed 200 OK in 1ms (Views: 0.2ms)
2884
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:05 +0100
2885
+ Processing by APIController#index as HTML
2886
+ Completed 200 OK in 1ms (Views: 0.1ms)
2887
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:05 +0100
2888
+ Processing by APIController#index as HTML
2889
+ Completed 200 OK in 1ms (Views: 0.2ms)
2890
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:05 +0100
2891
+ Processing by APIController#index as HTML
2892
+ Completed 200 OK in 1ms (Views: 0.1ms)
2893
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:55:05 +0100
2894
+ Processing by APIController#action as HTML
2895
+ Parameters: {"headers"=>nil}
2896
+ Completed 200 OK in 1ms (Views: 0.1ms)
2897
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:55:05 +0100
2898
+ Processing by APIController#action as HTML
2899
+ Parameters: {"headers"=>nil}
2900
+ Completed 200 OK in 1ms (Views: 0.1ms)
2901
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:55:05 +0100
2902
+ Processing by APIController#action as HTML
2903
+ Parameters: {"headers"=>nil}
2904
+ Completed 200 OK in 1ms (Views: 0.1ms)
2905
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:55:05 +0100
2906
+ Processing by APIController#action as HTML
2907
+ Parameters: {"headers"=>nil}
2908
+ Completed 200 OK in 1ms (Views: 0.1ms)
2909
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:55:05 +0100
2910
+ Processing by APIController#action as HTML
2911
+ Parameters: {"headers"=>nil}
2912
+ Completed 200 OK in 1ms (Views: 0.1ms)
2913
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:55:05 +0100
2914
+ Processing by APIController#action as HTML
2915
+ Parameters: {"headers"=>nil}
2916
+ Completed 200 OK in 1ms (Views: 0.1ms)
2917
+ Started GET "/action?headers[__OSN]=%2Ffuubar" for 127.0.0.1 at 2017-11-06 16:55:05 +0100
2918
+ Processing by APIController#action as HTML
2919
+ Parameters: {"headers"=>{"__OSN"=>"/fuubar"}}
2920
+ Completed 200 OK in 1ms (Views: 0.1ms)
2921
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:55:07 +0100
2922
+ Processing by APIController#action as HTML
2923
+ Parameters: {"headers"=>nil}
2924
+ Completed 200 OK in 1ms (Views: 0.2ms)
2925
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:55:07 +0100
2926
+ Processing by APIController#action as HTML
2927
+ Parameters: {"headers"=>nil}
2928
+ Completed 200 OK in 1ms (Views: 0.1ms)
2929
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:55:07 +0100
2930
+ Processing by APIController#action as HTML
2931
+ Parameters: {"headers"=>nil}
2932
+ Completed 200 OK in 1ms (Views: 0.1ms)
2933
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:55:07 +0100
2934
+ Processing by APIController#action as HTML
2935
+ Parameters: {"headers"=>nil}
2936
+ Completed 200 OK in 1ms (Views: 0.1ms)
2937
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:55:07 +0100
2938
+ Processing by APIController#action as HTML
2939
+ Parameters: {"headers"=>nil}
2940
+ Completed 200 OK in 1ms (Views: 0.1ms)
2941
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:55:07 +0100
2942
+ Processing by APIController#action as HTML
2943
+ Parameters: {"headers"=>nil}
2944
+ Completed 200 OK in 1ms (Views: 0.1ms)
2945
+ Started GET "/action?headers[__OSN]=%2Ffuubar" for 127.0.0.1 at 2017-11-06 16:55:07 +0100
2946
+ Processing by APIController#action as HTML
2947
+ Parameters: {"headers"=>{"__OSN"=>"/fuubar"}}
2948
+ Completed 200 OK in 1ms (Views: 0.1ms)
2949
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:07 +0100
2950
+ Processing by APIController#index as HTML
2951
+ Completed 200 OK in 1ms (Views: 0.1ms)
2952
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:07 +0100
2953
+ Processing by APIController#index as HTML
2954
+ Completed 200 OK in 1ms (Views: 0.2ms)
2955
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:07 +0100
2956
+ Processing by APIController#index as HTML
2957
+ Completed 200 OK in 1ms (Views: 0.1ms)
2958
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:07 +0100
2959
+ Processing by APIController#index as HTML
2960
+ Completed 200 OK in 1ms (Views: 0.3ms)
2961
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:07 +0100
2962
+ Processing by APIController#index as HTML
2963
+ Completed 200 OK in 1ms (Views: 0.2ms)
2964
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:07 +0100
2965
+ Processing by APIController#index as HTML
2966
+ Completed 200 OK in 1ms (Views: 0.1ms)
2967
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:07 +0100
2968
+ Processing by APIController#index as HTML
2969
+ Completed 200 OK in 1ms (Views: 0.1ms)
2970
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:07 +0100
2971
+ Processing by APIController#index as HTML
2972
+ Completed 200 OK in 1ms (Views: 0.2ms)
2973
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:55:09 +0100
2974
+ Processing by APIController#action as HTML
2975
+ Parameters: {"headers"=>nil}
2976
+ Completed 200 OK in 1ms (Views: 0.2ms)
2977
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:55:09 +0100
2978
+ Processing by APIController#action as HTML
2979
+ Parameters: {"headers"=>nil}
2980
+ Completed 200 OK in 1ms (Views: 0.2ms)
2981
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:55:09 +0100
2982
+ Processing by APIController#action as HTML
2983
+ Parameters: {"headers"=>nil}
2984
+ Completed 200 OK in 1ms (Views: 0.2ms)
2985
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:55:09 +0100
2986
+ Processing by APIController#action as HTML
2987
+ Parameters: {"headers"=>nil}
2988
+ Completed 200 OK in 1ms (Views: 0.2ms)
2989
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:55:09 +0100
2990
+ Processing by APIController#action as HTML
2991
+ Parameters: {"headers"=>nil}
2992
+ Completed 200 OK in 1ms (Views: 0.2ms)
2993
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:55:09 +0100
2994
+ Processing by APIController#action as HTML
2995
+ Parameters: {"headers"=>nil}
2996
+ Completed 200 OK in 1ms (Views: 0.2ms)
2997
+ Started GET "/action?headers[__OSN]=%2Ffuubar" for 127.0.0.1 at 2017-11-06 16:55:09 +0100
2998
+ Processing by APIController#action as HTML
2999
+ Parameters: {"headers"=>{"__OSN"=>"/fuubar"}}
3000
+ Completed 200 OK in 1ms (Views: 0.2ms)
3001
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:09 +0100
3002
+ Processing by APIController#index as HTML
3003
+ Completed 200 OK in 1ms (Views: 0.2ms)
3004
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:09 +0100
3005
+ Processing by APIController#index as HTML
3006
+ Completed 200 OK in 1ms (Views: 0.1ms)
3007
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:09 +0100
3008
+ Processing by APIController#index as HTML
3009
+ Completed 200 OK in 1ms (Views: 0.2ms)
3010
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:09 +0100
3011
+ Processing by APIController#index as HTML
3012
+ Completed 200 OK in 1ms (Views: 0.1ms)
3013
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:09 +0100
3014
+ Processing by APIController#index as HTML
3015
+ Completed 200 OK in 1ms (Views: 0.1ms)
3016
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:09 +0100
3017
+ Processing by APIController#index as HTML
3018
+ Completed 200 OK in 1ms (Views: 0.1ms)
3019
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:09 +0100
3020
+ Processing by APIController#index as HTML
3021
+ Completed 200 OK in 1ms (Views: 0.2ms)
3022
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:55:09 +0100
3023
+ Processing by APIController#index as HTML
3024
+ Completed 200 OK in 1ms (Views: 0.2ms)
3025
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:18 +0100
3026
+ Processing by APIController#action as HTML
3027
+ Completed 200 OK in 1ms (Views: 0.2ms)
3028
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:18 +0100
3029
+ Processing by APIController#action as HTML
3030
+ Completed 200 OK in 1ms (Views: 0.2ms)
3031
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:18 +0100
3032
+ Processing by APIController#action as HTML
3033
+ Completed 200 OK in 1ms (Views: 0.2ms)
3034
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:18 +0100
3035
+ Processing by APIController#action as HTML
3036
+ Completed 200 OK in 1ms (Views: 0.1ms)
3037
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:18 +0100
3038
+ Processing by APIController#action as HTML
3039
+ Completed 200 OK in 3ms (Views: 0.2ms)
3040
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:18 +0100
3041
+ Processing by APIController#action as HTML
3042
+ Completed 200 OK in 1ms (Views: 0.1ms)
3043
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:18 +0100
3044
+ Processing by APIController#action as HTML
3045
+ Completed 200 OK in 1ms (Views: 0.1ms)
3046
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:18 +0100
3047
+ Processing by APIController#index as HTML
3048
+ Completed 200 OK in 1ms (Views: 0.2ms)
3049
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:18 +0100
3050
+ Processing by APIController#index as HTML
3051
+ Completed 200 OK in 1ms (Views: 0.1ms)
3052
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:18 +0100
3053
+ Processing by APIController#index as HTML
3054
+ Completed 200 OK in 1ms (Views: 0.1ms)
3055
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:18 +0100
3056
+ Processing by APIController#index as HTML
3057
+ Completed 200 OK in 1ms (Views: 0.1ms)
3058
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:18 +0100
3059
+ Processing by APIController#index as HTML
3060
+ Completed 200 OK in 1ms (Views: 0.2ms)
3061
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:18 +0100
3062
+ Processing by APIController#index as HTML
3063
+ Completed 200 OK in 1ms (Views: 0.1ms)
3064
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:18 +0100
3065
+ Processing by APIController#index as HTML
3066
+ Completed 200 OK in 1ms (Views: 0.1ms)
3067
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:18 +0100
3068
+ Processing by APIController#index as HTML
3069
+ Completed 200 OK in 1ms (Views: 0.1ms)
3070
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:21 +0100
3071
+ Processing by APIController#action as HTML
3072
+ Completed 200 OK in 1ms (Views: 0.2ms)
3073
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:21 +0100
3074
+ Processing by APIController#action as HTML
3075
+ Completed 200 OK in 1ms (Views: 0.1ms)
3076
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:21 +0100
3077
+ Processing by APIController#action as HTML
3078
+ Completed 200 OK in 1ms (Views: 0.1ms)
3079
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:21 +0100
3080
+ Processing by APIController#action as HTML
3081
+ Completed 200 OK in 1ms (Views: 0.1ms)
3082
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:21 +0100
3083
+ Processing by APIController#action as HTML
3084
+ Completed 200 OK in 1ms (Views: 0.1ms)
3085
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:21 +0100
3086
+ Processing by APIController#action as HTML
3087
+ Completed 200 OK in 1ms (Views: 0.1ms)
3088
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:21 +0100
3089
+ Processing by APIController#action as HTML
3090
+ Completed 200 OK in 1ms (Views: 0.1ms)
3091
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:21 +0100
3092
+ Processing by APIController#index as HTML
3093
+ Completed 200 OK in 1ms (Views: 0.1ms)
3094
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:21 +0100
3095
+ Processing by APIController#index as HTML
3096
+ Completed 200 OK in 1ms (Views: 0.2ms)
3097
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:21 +0100
3098
+ Processing by APIController#index as HTML
3099
+ Completed 200 OK in 1ms (Views: 0.1ms)
3100
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:21 +0100
3101
+ Processing by APIController#index as HTML
3102
+ Completed 200 OK in 1ms (Views: 0.1ms)
3103
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:21 +0100
3104
+ Processing by APIController#index as HTML
3105
+ Completed 200 OK in 1ms (Views: 0.2ms)
3106
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:21 +0100
3107
+ Processing by APIController#index as HTML
3108
+ Completed 200 OK in 1ms (Views: 0.1ms)
3109
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:21 +0100
3110
+ Processing by APIController#index as HTML
3111
+ Completed 200 OK in 1ms (Views: 0.1ms)
3112
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:21 +0100
3113
+ Processing by APIController#index as HTML
3114
+ Completed 200 OK in 1ms (Views: 0.1ms)
3115
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:24 +0100
3116
+ Processing by APIController#index as HTML
3117
+ Completed 200 OK in 1ms (Views: 0.2ms)
3118
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:24 +0100
3119
+ Processing by APIController#index as HTML
3120
+ Completed 200 OK in 1ms (Views: 0.1ms)
3121
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:24 +0100
3122
+ Processing by APIController#index as HTML
3123
+ Completed 200 OK in 1ms (Views: 0.1ms)
3124
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:24 +0100
3125
+ Processing by APIController#index as HTML
3126
+ Completed 200 OK in 1ms (Views: 0.1ms)
3127
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:24 +0100
3128
+ Processing by APIController#index as HTML
3129
+ Completed 200 OK in 1ms (Views: 0.1ms)
3130
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:24 +0100
3131
+ Processing by APIController#index as HTML
3132
+ Completed 200 OK in 1ms (Views: 0.1ms)
3133
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:24 +0100
3134
+ Processing by APIController#index as HTML
3135
+ Completed 200 OK in 1ms (Views: 0.1ms)
3136
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:24 +0100
3137
+ Processing by APIController#index as HTML
3138
+ Completed 200 OK in 1ms (Views: 0.1ms)
3139
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:24 +0100
3140
+ Processing by APIController#action as HTML
3141
+ Completed 200 OK in 1ms (Views: 0.1ms)
3142
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:24 +0100
3143
+ Processing by APIController#action as HTML
3144
+ Completed 200 OK in 1ms (Views: 0.1ms)
3145
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:24 +0100
3146
+ Processing by APIController#action as HTML
3147
+ Completed 200 OK in 1ms (Views: 0.1ms)
3148
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:24 +0100
3149
+ Processing by APIController#action as HTML
3150
+ Completed 200 OK in 1ms (Views: 0.1ms)
3151
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:24 +0100
3152
+ Processing by APIController#action as HTML
3153
+ Completed 200 OK in 5ms (Views: 0.2ms)
3154
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:24 +0100
3155
+ Processing by APIController#action as HTML
3156
+ Completed 200 OK in 1ms (Views: 0.2ms)
3157
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:24 +0100
3158
+ Processing by APIController#action as HTML
3159
+ Completed 200 OK in 1ms (Views: 0.2ms)
3160
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:26 +0100
3161
+ Processing by APIController#index as HTML
3162
+ Completed 200 OK in 1ms (Views: 0.2ms)
3163
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:26 +0100
3164
+ Processing by APIController#index as HTML
3165
+ Completed 200 OK in 1ms (Views: 0.1ms)
3166
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:26 +0100
3167
+ Processing by APIController#index as HTML
3168
+ Completed 200 OK in 1ms (Views: 0.1ms)
3169
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:26 +0100
3170
+ Processing by APIController#index as HTML
3171
+ Completed 200 OK in 1ms (Views: 0.1ms)
3172
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:26 +0100
3173
+ Processing by APIController#index as HTML
3174
+ Completed 200 OK in 1ms (Views: 0.2ms)
3175
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:26 +0100
3176
+ Processing by APIController#index as HTML
3177
+ Completed 200 OK in 1ms (Views: 0.1ms)
3178
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:26 +0100
3179
+ Processing by APIController#index as HTML
3180
+ Completed 200 OK in 1ms (Views: 0.1ms)
3181
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:26 +0100
3182
+ Processing by APIController#index as HTML
3183
+ Completed 200 OK in 1ms (Views: 0.1ms)
3184
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:26 +0100
3185
+ Processing by APIController#action as HTML
3186
+ Completed 200 OK in 1ms (Views: 0.1ms)
3187
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:26 +0100
3188
+ Processing by APIController#action as HTML
3189
+ Completed 200 OK in 1ms (Views: 0.1ms)
3190
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:26 +0100
3191
+ Processing by APIController#action as HTML
3192
+ Completed 200 OK in 1ms (Views: 0.1ms)
3193
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:26 +0100
3194
+ Processing by APIController#action as HTML
3195
+ Completed 200 OK in 1ms (Views: 0.1ms)
3196
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:26 +0100
3197
+ Processing by APIController#action as HTML
3198
+ Completed 200 OK in 1ms (Views: 0.1ms)
3199
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:26 +0100
3200
+ Processing by APIController#action as HTML
3201
+ Completed 200 OK in 1ms (Views: 0.1ms)
3202
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:26 +0100
3203
+ Processing by APIController#action as HTML
3204
+ Completed 200 OK in 1ms (Views: 0.1ms)
3205
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:28 +0100
3206
+ Processing by APIController#index as HTML
3207
+ Completed 200 OK in 1ms (Views: 0.2ms)
3208
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:28 +0100
3209
+ Processing by APIController#index as HTML
3210
+ Completed 200 OK in 1ms (Views: 0.1ms)
3211
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:28 +0100
3212
+ Processing by APIController#index as HTML
3213
+ Completed 200 OK in 1ms (Views: 0.1ms)
3214
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:28 +0100
3215
+ Processing by APIController#index as HTML
3216
+ Completed 200 OK in 1ms (Views: 0.2ms)
3217
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:28 +0100
3218
+ Processing by APIController#index as HTML
3219
+ Completed 200 OK in 1ms (Views: 0.1ms)
3220
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:28 +0100
3221
+ Processing by APIController#index as HTML
3222
+ Completed 200 OK in 1ms (Views: 0.1ms)
3223
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:28 +0100
3224
+ Processing by APIController#index as HTML
3225
+ Completed 200 OK in 1ms (Views: 0.1ms)
3226
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:28 +0100
3227
+ Processing by APIController#index as HTML
3228
+ Completed 200 OK in 1ms (Views: 0.1ms)
3229
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:28 +0100
3230
+ Processing by APIController#action as HTML
3231
+ Completed 200 OK in 1ms (Views: 0.1ms)
3232
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:28 +0100
3233
+ Processing by APIController#action as HTML
3234
+ Completed 200 OK in 1ms (Views: 0.1ms)
3235
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:28 +0100
3236
+ Processing by APIController#action as HTML
3237
+ Completed 200 OK in 1ms (Views: 0.1ms)
3238
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:28 +0100
3239
+ Processing by APIController#action as HTML
3240
+ Completed 200 OK in 1ms (Views: 0.1ms)
3241
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:28 +0100
3242
+ Processing by APIController#action as HTML
3243
+ Completed 200 OK in 1ms (Views: 0.1ms)
3244
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:28 +0100
3245
+ Processing by APIController#action as HTML
3246
+ Completed 200 OK in 1ms (Views: 0.1ms)
3247
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:28 +0100
3248
+ Processing by APIController#action as HTML
3249
+ Completed 200 OK in 1ms (Views: 0.1ms)
3250
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:30 +0100
3251
+ Processing by APIController#index as HTML
3252
+ Completed 200 OK in 1ms (Views: 0.2ms)
3253
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:30 +0100
3254
+ Processing by APIController#index as HTML
3255
+ Completed 200 OK in 1ms (Views: 0.2ms)
3256
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:30 +0100
3257
+ Processing by APIController#index as HTML
3258
+ Completed 200 OK in 1ms (Views: 0.1ms)
3259
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:30 +0100
3260
+ Processing by APIController#index as HTML
3261
+ Completed 200 OK in 1ms (Views: 0.1ms)
3262
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:30 +0100
3263
+ Processing by APIController#index as HTML
3264
+ Completed 200 OK in 1ms (Views: 0.2ms)
3265
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:30 +0100
3266
+ Processing by APIController#index as HTML
3267
+ Completed 200 OK in 1ms (Views: 0.2ms)
3268
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:30 +0100
3269
+ Processing by APIController#index as HTML
3270
+ Completed 200 OK in 1ms (Views: 0.1ms)
3271
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:30 +0100
3272
+ Processing by APIController#index as HTML
3273
+ Completed 200 OK in 1ms (Views: 0.2ms)
3274
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:30 +0100
3275
+ Processing by APIController#action as HTML
3276
+ Completed 200 OK in 1ms (Views: 0.2ms)
3277
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:30 +0100
3278
+ Processing by APIController#action as HTML
3279
+ Completed 200 OK in 1ms (Views: 0.2ms)
3280
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:30 +0100
3281
+ Processing by APIController#action as HTML
3282
+ Completed 200 OK in 1ms (Views: 0.1ms)
3283
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:30 +0100
3284
+ Processing by APIController#action as HTML
3285
+ Completed 200 OK in 1ms (Views: 0.1ms)
3286
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:30 +0100
3287
+ Processing by APIController#action as HTML
3288
+ Completed 200 OK in 1ms (Views: 0.2ms)
3289
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:30 +0100
3290
+ Processing by APIController#action as HTML
3291
+ Completed 200 OK in 1ms (Views: 0.2ms)
3292
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:30 +0100
3293
+ Processing by APIController#action as HTML
3294
+ Completed 200 OK in 1ms (Views: 0.2ms)
3295
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:33 +0100
3296
+ Processing by APIController#action as HTML
3297
+ Completed 200 OK in 1ms (Views: 0.2ms)
3298
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:33 +0100
3299
+ Processing by APIController#action as HTML
3300
+ Completed 200 OK in 1ms (Views: 0.1ms)
3301
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:33 +0100
3302
+ Processing by APIController#action as HTML
3303
+ Completed 200 OK in 1ms (Views: 0.1ms)
3304
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:33 +0100
3305
+ Processing by APIController#action as HTML
3306
+ Completed 200 OK in 1ms (Views: 0.1ms)
3307
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:33 +0100
3308
+ Processing by APIController#action as HTML
3309
+ Completed 200 OK in 1ms (Views: 0.1ms)
3310
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:33 +0100
3311
+ Processing by APIController#action as HTML
3312
+ Completed 200 OK in 1ms (Views: 0.1ms)
3313
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:33 +0100
3314
+ Processing by APIController#action as HTML
3315
+ Completed 200 OK in 1ms (Views: 0.1ms)
3316
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:33 +0100
3317
+ Processing by APIController#index as HTML
3318
+ Completed 200 OK in 1ms (Views: 0.1ms)
3319
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:33 +0100
3320
+ Processing by APIController#index as HTML
3321
+ Completed 200 OK in 1ms (Views: 0.1ms)
3322
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:33 +0100
3323
+ Processing by APIController#index as HTML
3324
+ Completed 200 OK in 1ms (Views: 0.1ms)
3325
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:33 +0100
3326
+ Processing by APIController#index as HTML
3327
+ Completed 200 OK in 1ms (Views: 0.1ms)
3328
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:33 +0100
3329
+ Processing by APIController#index as HTML
3330
+ Completed 200 OK in 1ms (Views: 0.1ms)
3331
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:33 +0100
3332
+ Processing by APIController#index as HTML
3333
+ Completed 200 OK in 1ms (Views: 0.2ms)
3334
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:33 +0100
3335
+ Processing by APIController#index as HTML
3336
+ Completed 200 OK in 1ms (Views: 0.1ms)
3337
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:33 +0100
3338
+ Processing by APIController#index as HTML
3339
+ Completed 200 OK in 1ms (Views: 0.1ms)
3340
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:35 +0100
3341
+ Processing by APIController#index as HTML
3342
+ Completed 200 OK in 1ms (Views: 0.2ms)
3343
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:35 +0100
3344
+ Processing by APIController#index as HTML
3345
+ Completed 200 OK in 1ms (Views: 0.2ms)
3346
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:35 +0100
3347
+ Processing by APIController#index as HTML
3348
+ Completed 200 OK in 1ms (Views: 0.1ms)
3349
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:35 +0100
3350
+ Processing by APIController#index as HTML
3351
+ Completed 200 OK in 1ms (Views: 0.1ms)
3352
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:35 +0100
3353
+ Processing by APIController#index as HTML
3354
+ Completed 200 OK in 4ms (Views: 0.2ms)
3355
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:35 +0100
3356
+ Processing by APIController#index as HTML
3357
+ Completed 200 OK in 1ms (Views: 0.2ms)
3358
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:35 +0100
3359
+ Processing by APIController#index as HTML
3360
+ Completed 200 OK in 1ms (Views: 0.1ms)
3361
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:35 +0100
3362
+ Processing by APIController#index as HTML
3363
+ Completed 200 OK in 1ms (Views: 0.1ms)
3364
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:35 +0100
3365
+ Processing by APIController#action as HTML
3366
+ Completed 200 OK in 1ms (Views: 0.1ms)
3367
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:35 +0100
3368
+ Processing by APIController#action as HTML
3369
+ Completed 200 OK in 1ms (Views: 0.1ms)
3370
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:35 +0100
3371
+ Processing by APIController#action as HTML
3372
+ Completed 200 OK in 1ms (Views: 0.2ms)
3373
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:35 +0100
3374
+ Processing by APIController#action as HTML
3375
+ Completed 200 OK in 1ms (Views: 0.2ms)
3376
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:35 +0100
3377
+ Processing by APIController#action as HTML
3378
+ Completed 200 OK in 1ms (Views: 0.1ms)
3379
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:35 +0100
3380
+ Processing by APIController#action as HTML
3381
+ Completed 200 OK in 1ms (Views: 0.1ms)
3382
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:35 +0100
3383
+ Processing by APIController#action as HTML
3384
+ Completed 200 OK in 1ms (Views: 0.1ms)
3385
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:37 +0100
3386
+ Processing by APIController#action as HTML
3387
+ Completed 200 OK in 1ms (Views: 0.2ms)
3388
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:37 +0100
3389
+ Processing by APIController#action as HTML
3390
+ Completed 200 OK in 1ms (Views: 0.2ms)
3391
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:37 +0100
3392
+ Processing by APIController#action as HTML
3393
+ Completed 200 OK in 1ms (Views: 0.2ms)
3394
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:37 +0100
3395
+ Processing by APIController#action as HTML
3396
+ Completed 200 OK in 1ms (Views: 0.2ms)
3397
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:37 +0100
3398
+ Processing by APIController#action as HTML
3399
+ Completed 200 OK in 1ms (Views: 0.1ms)
3400
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:37 +0100
3401
+ Processing by APIController#action as HTML
3402
+ Completed 200 OK in 1ms (Views: 0.1ms)
3403
+ Started GET "/action" for 127.0.0.1 at 2017-11-06 16:56:37 +0100
3404
+ Processing by APIController#action as HTML
3405
+ Completed 200 OK in 1ms (Views: 0.1ms)
3406
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:37 +0100
3407
+ Processing by APIController#index as HTML
3408
+ Completed 200 OK in 1ms (Views: 0.2ms)
3409
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:37 +0100
3410
+ Processing by APIController#index as HTML
3411
+ Completed 200 OK in 1ms (Views: 0.1ms)
3412
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:37 +0100
3413
+ Processing by APIController#index as HTML
3414
+ Completed 200 OK in 1ms (Views: 0.1ms)
3415
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:37 +0100
3416
+ Processing by APIController#index as HTML
3417
+ Completed 200 OK in 1ms (Views: 0.1ms)
3418
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:37 +0100
3419
+ Processing by APIController#index as HTML
3420
+ Completed 200 OK in 1ms (Views: 0.1ms)
3421
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:37 +0100
3422
+ Processing by APIController#index as HTML
3423
+ Completed 200 OK in 1ms (Views: 0.2ms)
3424
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:37 +0100
3425
+ Processing by APIController#index as HTML
3426
+ Completed 200 OK in 1ms (Views: 0.1ms)
3427
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:37 +0100
3428
+ Processing by APIController#index as HTML
3429
+ Completed 200 OK in 5ms (Views: 0.2ms)
3430
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:56:39 +0100
3431
+ Processing by APIController#action as HTML
3432
+ Parameters: {"headers"=>nil}
3433
+ Completed 200 OK in 1ms (Views: 0.1ms)
3434
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:56:39 +0100
3435
+ Processing by APIController#action as HTML
3436
+ Parameters: {"headers"=>nil}
3437
+ Completed 200 OK in 1ms (Views: 0.1ms)
3438
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:56:39 +0100
3439
+ Processing by APIController#action as HTML
3440
+ Parameters: {"headers"=>nil}
3441
+ Completed 200 OK in 1ms (Views: 0.1ms)
3442
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:56:39 +0100
3443
+ Processing by APIController#action as HTML
3444
+ Parameters: {"headers"=>nil}
3445
+ Completed 200 OK in 1ms (Views: 0.1ms)
3446
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:56:39 +0100
3447
+ Processing by APIController#action as HTML
3448
+ Parameters: {"headers"=>nil}
3449
+ Completed 200 OK in 1ms (Views: 0.1ms)
3450
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:56:39 +0100
3451
+ Processing by APIController#action as HTML
3452
+ Parameters: {"headers"=>nil}
3453
+ Completed 200 OK in 1ms (Views: 0.1ms)
3454
+ Started GET "/action?headers[__OSN]=%2Ffuubar" for 127.0.0.1 at 2017-11-06 16:56:39 +0100
3455
+ Processing by APIController#action as HTML
3456
+ Parameters: {"headers"=>{"__OSN"=>"/fuubar"}}
3457
+ Completed 200 OK in 1ms (Views: 0.1ms)
3458
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:39 +0100
3459
+ Processing by APIController#index as HTML
3460
+ Completed 200 OK in 1ms (Views: 0.1ms)
3461
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:39 +0100
3462
+ Processing by APIController#index as HTML
3463
+ Completed 200 OK in 1ms (Views: 0.1ms)
3464
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:39 +0100
3465
+ Processing by APIController#index as HTML
3466
+ Completed 200 OK in 1ms (Views: 0.1ms)
3467
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:39 +0100
3468
+ Processing by APIController#index as HTML
3469
+ Completed 200 OK in 1ms (Views: 0.1ms)
3470
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:39 +0100
3471
+ Processing by APIController#index as HTML
3472
+ Completed 200 OK in 1ms (Views: 0.2ms)
3473
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:39 +0100
3474
+ Processing by APIController#index as HTML
3475
+ Completed 200 OK in 1ms (Views: 0.2ms)
3476
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:39 +0100
3477
+ Processing by APIController#index as HTML
3478
+ Completed 200 OK in 1ms (Views: 0.1ms)
3479
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:39 +0100
3480
+ Processing by APIController#index as HTML
3481
+ Completed 200 OK in 1ms (Views: 0.1ms)
3482
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:56:42 +0100
3483
+ Processing by APIController#action as HTML
3484
+ Parameters: {"headers"=>nil}
3485
+ Completed 200 OK in 1ms (Views: 0.2ms)
3486
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:56:42 +0100
3487
+ Processing by APIController#action as HTML
3488
+ Parameters: {"headers"=>nil}
3489
+ Completed 200 OK in 1ms (Views: 0.1ms)
3490
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:56:42 +0100
3491
+ Processing by APIController#action as HTML
3492
+ Parameters: {"headers"=>nil}
3493
+ Completed 200 OK in 1ms (Views: 0.1ms)
3494
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:56:42 +0100
3495
+ Processing by APIController#action as HTML
3496
+ Parameters: {"headers"=>nil}
3497
+ Completed 200 OK in 1ms (Views: 0.1ms)
3498
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:56:42 +0100
3499
+ Processing by APIController#action as HTML
3500
+ Parameters: {"headers"=>nil}
3501
+ Completed 200 OK in 1ms (Views: 0.1ms)
3502
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:56:42 +0100
3503
+ Processing by APIController#action as HTML
3504
+ Parameters: {"headers"=>nil}
3505
+ Completed 200 OK in 1ms (Views: 0.1ms)
3506
+ Started GET "/action?headers[__OSN]=%2Ffuubar" for 127.0.0.1 at 2017-11-06 16:56:42 +0100
3507
+ Processing by APIController#action as HTML
3508
+ Parameters: {"headers"=>{"__OSN"=>"/fuubar"}}
3509
+ Completed 200 OK in 1ms (Views: 0.1ms)
3510
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:42 +0100
3511
+ Processing by APIController#index as HTML
3512
+ Completed 200 OK in 1ms (Views: 0.2ms)
3513
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:42 +0100
3514
+ Processing by APIController#index as HTML
3515
+ Completed 200 OK in 1ms (Views: 0.2ms)
3516
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:42 +0100
3517
+ Processing by APIController#index as HTML
3518
+ Completed 200 OK in 1ms (Views: 0.2ms)
3519
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:42 +0100
3520
+ Processing by APIController#index as HTML
3521
+ Completed 200 OK in 1ms (Views: 0.2ms)
3522
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:42 +0100
3523
+ Processing by APIController#index as HTML
3524
+ Completed 200 OK in 1ms (Views: 0.2ms)
3525
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:42 +0100
3526
+ Processing by APIController#index as HTML
3527
+ Completed 200 OK in 1ms (Views: 0.2ms)
3528
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:42 +0100
3529
+ Processing by APIController#index as HTML
3530
+ Completed 200 OK in 1ms (Views: 0.1ms)
3531
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:42 +0100
3532
+ Processing by APIController#index as HTML
3533
+ Completed 200 OK in 1ms (Views: 0.2ms)
3534
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:44 +0100
3535
+ Processing by APIController#index as HTML
3536
+ Completed 200 OK in 1ms (Views: 0.2ms)
3537
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:44 +0100
3538
+ Processing by APIController#index as HTML
3539
+ Completed 200 OK in 1ms (Views: 0.2ms)
3540
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:44 +0100
3541
+ Processing by APIController#index as HTML
3542
+ Completed 200 OK in 1ms (Views: 0.2ms)
3543
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:44 +0100
3544
+ Processing by APIController#index as HTML
3545
+ Completed 200 OK in 1ms (Views: 0.1ms)
3546
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:44 +0100
3547
+ Processing by APIController#index as HTML
3548
+ Completed 200 OK in 1ms (Views: 0.2ms)
3549
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:44 +0100
3550
+ Processing by APIController#index as HTML
3551
+ Completed 200 OK in 1ms (Views: 0.2ms)
3552
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:44 +0100
3553
+ Processing by APIController#index as HTML
3554
+ Completed 200 OK in 1ms (Views: 0.1ms)
3555
+ Started GET "/" for 127.0.0.1 at 2017-11-06 16:56:44 +0100
3556
+ Processing by APIController#index as HTML
3557
+ Completed 200 OK in 1ms (Views: 0.1ms)
3558
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:56:44 +0100
3559
+ Processing by APIController#action as HTML
3560
+ Parameters: {"headers"=>nil}
3561
+ Completed 200 OK in 1ms (Views: 0.1ms)
3562
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:56:44 +0100
3563
+ Processing by APIController#action as HTML
3564
+ Parameters: {"headers"=>nil}
3565
+ Completed 200 OK in 1ms (Views: 0.1ms)
3566
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:56:44 +0100
3567
+ Processing by APIController#action as HTML
3568
+ Parameters: {"headers"=>nil}
3569
+ Completed 200 OK in 1ms (Views: 0.2ms)
3570
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:56:44 +0100
3571
+ Processing by APIController#action as HTML
3572
+ Parameters: {"headers"=>nil}
3573
+ Completed 200 OK in 1ms (Views: 0.2ms)
3574
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:56:44 +0100
3575
+ Processing by APIController#action as HTML
3576
+ Parameters: {"headers"=>nil}
3577
+ Completed 200 OK in 1ms (Views: 0.2ms)
3578
+ Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 16:56:44 +0100
3579
+ Processing by APIController#action as HTML
3580
+ Parameters: {"headers"=>nil}
3581
+ Completed 200 OK in 1ms (Views: 0.2ms)
3582
+ Started GET "/action?headers[__OSN]=%2Ffuubar" for 127.0.0.1 at 2017-11-06 16:56:44 +0100
3583
+ Processing by APIController#action as HTML
3584
+ Parameters: {"headers"=>{"__OSN"=>"/fuubar"}}
3585
+ Completed 200 OK in 1ms (Views: 0.1ms)