-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathherokuLogs.txt
1504 lines (1504 loc) · 172 KB
/
herokuLogs.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2014-10-14T20:14:40.955502+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/sendfile.rb:112:in `call'
2014-10-14T20:14:40.955484+00:00 app[web.1]: ActionController::RoutingError (No route matches [GET] "/index"):
2014-10-14T20:14:40.955485+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2014-10-14T20:14:40.955486+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2014-10-14T20:14:40.955488+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/rack/logger.rb:38:in `call_app'
2014-10-14T20:14:40.955489+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/rack/logger.rb:20:in `block in call'
2014-10-14T20:14:40.955490+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/tagged_logging.rb:68:in `block in tagged'
2014-10-14T20:14:40.955491+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/tagged_logging.rb:26:in `tagged'
2014-10-14T20:14:40.955493+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/tagged_logging.rb:68:in `tagged'
2014-10-14T20:14:40.955494+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/rack/logger.rb:20:in `call'
2014-10-14T20:14:40.955495+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/request_id.rb:21:in `call'
2014-10-14T20:14:40.955507+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/lock.rb:17:in `call'
2014-10-14T20:14:40.955508+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/content_length.rb:14:in `call'
2014-10-14T20:14:40.955509+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/handler/webrick.rb:60:in `service'
2014-10-14T20:14:40.955499+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2014-10-14T20:14:40.955503+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/ssl.rb:24:in `call'
2014-10-14T20:14:40.955500+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/static.rb:64:in `call'
2014-10-14T20:14:40.955498+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/runtime.rb:17:in `call'
2014-10-14T20:14:40.955496+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
2014-10-14T20:14:40.955504+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/engine.rb:511:in `call'
2014-10-14T20:14:40.955506+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/application.rb:97:in `call'
2014-10-14T20:14:40.955513+00:00 app[web.1]: vendor/ruby-1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2014-10-14T20:14:40.955514+00:00 app[web.1]: vendor/ruby-1.9.3/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2014-10-14T20:14:40.955515+00:00 app[web.1]:
2014-10-14T20:14:40.955516+00:00 app[web.1]:
2014-10-14T20:14:40.955511+00:00 app[web.1]: vendor/ruby-1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2014-10-14T20:14:52.380990+00:00 heroku[router]: at=info method=GET path="/user/1" host=damp-reaches-6996.herokuapp.com request_id=50a3e17c-dcc1-46b1-9f2c-47530cd517f1 fwd="121.247.250.56" dyno=web.1 connect=0ms service=5ms status=404 bytes=1100
2014-10-14T20:14:52.375522+00:00 app[web.1]: Started GET "/user/1" for 121.247.250.56 at 2014-10-14 20:14:52 +0000
2014-10-14T20:14:52.375529+00:00 app[web.1]: Started GET "/user/1" for 121.247.250.56 at 2014-10-14 20:14:52 +0000
2014-10-14T20:14:52.377452+00:00 app[web.1]:
2014-10-14T20:14:52.377456+00:00 app[web.1]: ActionController::RoutingError (No route matches [GET] "/user/1"):
2014-10-14T20:14:52.377459+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2014-10-14T20:14:52.377482+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2014-10-14T20:14:52.377492+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/tagged_logging.rb:68:in `tagged'
2014-10-14T20:14:52.377494+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/rack/logger.rb:20:in `call'
2014-10-14T20:14:52.377495+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/request_id.rb:21:in `call'
2014-10-14T20:14:52.377497+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
2014-10-14T20:14:52.377498+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/runtime.rb:17:in `call'
2014-10-14T20:14:52.377487+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/rack/logger.rb:20:in `block in call'
2014-10-14T20:14:52.377489+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/tagged_logging.rb:68:in `block in tagged'
2014-10-14T20:14:52.377491+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/tagged_logging.rb:26:in `tagged'
2014-10-14T20:14:52.377485+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/rack/logger.rb:38:in `call_app'
2014-10-14T20:14:52.377507+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/application.rb:97:in `call'
2014-10-14T20:14:52.377500+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2014-10-14T20:14:52.377506+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/engine.rb:511:in `call'
2014-10-14T20:14:52.377518+00:00 app[web.1]:
2014-10-14T20:14:52.377509+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/lock.rb:17:in `call'
2014-10-14T20:14:52.377519+00:00 app[web.1]:
2014-10-14T20:14:52.377510+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/content_length.rb:14:in `call'
2014-10-14T20:14:52.377525+00:00 app[web.1]:
2014-10-14T20:14:52.377514+00:00 app[web.1]: vendor/ruby-1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2014-10-14T20:14:52.377501+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/static.rb:64:in `call'
2014-10-14T20:14:52.377526+00:00 app[web.1]: ActionController::RoutingError (No route matches [GET] "/user/1"):
2014-10-14T20:14:52.377503+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/sendfile.rb:112:in `call'
2014-10-14T20:14:52.377529+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2014-10-14T20:14:52.377504+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/ssl.rb:24:in `call'
2014-10-14T20:14:52.377530+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/rack/logger.rb:38:in `call_app'
2014-10-14T20:14:52.377516+00:00 app[web.1]: vendor/ruby-1.9.3/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2014-10-14T20:14:52.377511+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/handler/webrick.rb:60:in `service'
2014-10-14T20:14:52.377528+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2014-10-14T20:14:52.377513+00:00 app[web.1]: vendor/ruby-1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2014-10-14T20:14:52.377531+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/rack/logger.rb:20:in `block in call'
2014-10-14T20:14:52.377535+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/tagged_logging.rb:68:in `tagged'
2014-10-14T20:14:52.377536+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/rack/logger.rb:20:in `call'
2014-10-14T20:14:52.377538+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/request_id.rb:21:in `call'
2014-10-14T20:14:52.377550+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/content_length.rb:14:in `call'
2014-10-14T20:14:52.377533+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/tagged_logging.rb:68:in `block in tagged'
2014-10-14T20:14:52.377545+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/ssl.rb:24:in `call'
2014-10-14T20:14:52.377534+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/tagged_logging.rb:26:in `tagged'
2014-10-14T20:14:52.377546+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/engine.rb:511:in `call'
2014-10-14T20:14:52.377548+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/application.rb:97:in `call'
2014-10-14T20:14:52.377549+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/lock.rb:17:in `call'
2014-10-14T20:14:52.377569+00:00 app[web.1]:
2014-10-14T20:14:52.377539+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
2014-10-14T20:14:52.377564+00:00 app[web.1]: vendor/ruby-1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2014-10-14T20:14:52.377540+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/runtime.rb:17:in `call'
2014-10-14T20:14:52.377567+00:00 app[web.1]: vendor/ruby-1.9.3/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2014-10-14T20:14:52.377543+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/static.rb:64:in `call'
2014-10-14T20:14:52.377551+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/handler/webrick.rb:60:in `service'
2014-10-14T20:14:52.377541+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2014-10-14T20:14:52.377568+00:00 app[web.1]:
2014-10-14T20:14:52.377544+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/send
file.rb:112:in `call'
2014-10-14T20:14:52.377566+00:00 app[web.1]: vendor/ruby-1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2014-10-14T20:14:55.906560+00:00 heroku[router]: at=info method=GET path="/user/1" host=damp-reaches-6996.herokuapp.com request_id=7644def2-0b12-43cc-990f-3ae4ae676fdd fwd="121.247.250.56" dyno=web.1 connect=2ms service=40ms status=404 bytes=1100
2014-10-14T20:14:55.902010+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/rack/logger.rb:20:in `block in call'
2014-10-14T20:14:55.902049+00:00 app[web.1]: vendor/ruby-1.9.3/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2014-10-14T20:14:55.902074+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/tagged_logging.rb:26:in `tagged'
2014-10-14T20:14:55.902086+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/engine.rb:511:in `call'
2014-10-14T20:14:55.902011+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/tagged_logging.rb:68:in `block in tagged'
2014-10-14T20:14:55.902056+00:00 app[web.1]:
2014-10-14T20:14:55.902078+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/request_id.rb:21:in `call'
2014-10-14T20:14:55.902090+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/content_length.rb:14:in `call'
2014-10-14T20:14:55.902013+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/tagged_logging.rb:26:in `tagged'
2014-10-14T20:14:55.902038+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/sendfile.rb:112:in `call'
2014-10-14T20:14:55.902046+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/handler/webrick.rb:60:in `service'
2014-10-14T20:14:55.902071+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/rack/logger.rb:20:in `block in call'
2014-10-14T20:14:55.902083+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/static.rb:64:in `call'
2014-10-14T20:14:55.902095+00:00 app[web.1]: vendor/ruby-1.9.3/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2014-10-14T20:14:55.900075+00:00 app[web.1]: Started GET "/user/1" for 121.247.250.56 at 2014-10-14 20:14:55 +0000
2014-10-14T20:14:55.902014+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/tagged_logging.rb:68:in `tagged'
2014-10-14T20:14:55.902037+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/static.rb:64:in `call'
2014-10-14T20:14:55.902040+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/engine.rb:511:in `call'
2014-10-14T20:14:55.902044+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/content_length.rb:14:in `call'
2014-10-14T20:14:55.902058+00:00 app[web.1]: ActionController::RoutingError (No route matches [GET] "/user/1"):
2014-10-14T20:14:55.902079+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
2014-10-14T20:14:55.902091+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/handler/webrick.rb:60:in `service'
2014-10-14T20:14:55.900086+00:00 app[web.1]: Started GET "/user/1" for 121.247.250.56 at 2014-10-14 20:14:55 +0000
2014-10-14T20:14:55.902034+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/runtime.rb:17:in `call'
2014-10-14T20:14:55.902059+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2014-10-14T20:14:55.902080+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/runtime.rb:17:in `call'
2014-10-14T20:14:55.902092+00:00 app[web.1]: vendor/ruby-1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2014-10-14T20:14:55.902000+00:00 app[web.1]:
2014-10-14T20:14:55.902015+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/rack/logger.rb:20:in `call'
2014-10-14T20:14:55.902039+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/ssl.rb:24:in `call'
2014-10-14T20:14:55.902043+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/lock.rb:17:in `call'
2014-10-14T20:14:55.902050+00:00 app[web.1]:
2014-10-14T20:14:55.902075+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/tagged_logging.rb:68:in `tagged'
2014-10-14T20:14:55.902087+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/application.rb:97:in `call'
2014-10-14T20:14:55.902004+00:00 app[web.1]: ActionController::RoutingError (No route matches [GET] "/user/1"):
2014-10-14T20:14:55.902017+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/request_id.rb:21:in `call'
2014-10-14T20:14:55.902042+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/application.rb:97:in `call'
2014-10-14T20:14:55.902048+00:00 app[web.1]: vendor/ruby-1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2014-10-14T20:14:55.902062+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/rack/logger.rb:38:in `call_app'
2014-10-14T20:14:55.902081+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2014-10-14T20:14:55.902094+00:00 app[web.1]: vendor/ruby-1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2014-10-14T20:14:55.902006+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2014-10-14T20:14:55.902033+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
2014-10-14T20:14:55.902052+00:00 app[web.1]:
2014-10-14T20:14:55.902076+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/rack/logger.rb:20:in `call'
2014-10-14T20:14:55.902089+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/lock.rb:17:in `call'
2014-10-14T20:14:55.902007+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2014-10-14T20:14:55.902035+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2014-10-14T20:14:55.902060+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2014-10-14T20:14:55.902084+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/sendfile.rb:112:in `call'
2014-10-14T20:14:55.902097+00:00 app[web.1]:
2014-10-14T20:14:55.902009+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/rack/logger.rb:38:in `call_app'
2014-10-14T20:14:55.902047+00:00 app[web.1]: vendor/ruby-1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2014-10-14T20:14:55.902073+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/tagged_logging.rb:68:in `block in tagged'
2014-10-14T20:14:55.902085+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/ssl.rb:24:in `call'
2014-10-14T20:14:55.902096+00:00 app[web.1]:
2014-10-14T20:15:02.167401+00:00 app[web.1]: Started GET "/" for 121.247.250.56 at 2014-10-14 20:15:02 +0000
2014-10-14T20:15:02.167416+00:00 app[web.1]: Started GET "/" for 121.247.250.56 at 2014-10-14 20:15:02 +0000
2014-10-14T20:15:02.169972+00:00 app[web.1]: Processing by StaticPagesController#home as HTML
2014-10-14T20:15:02.169980+00:00 app[web.1]: Processing by StaticPagesController#home as HTML
2014-10-14T20:15:02.177545+00:00 app[web.1]: Rendered static_pages/home.html.erb within layouts/application (2.5ms)
2014-10-14T20:15:02.177567+00:00 app[web.1]: Rendered static_pages/home.html.erb within layouts/application (2.5ms)
2014-10-14T20:15:02.184651+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.1ms)
2014-10-14T20:15:02.184663+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.1ms)
2014-10-14T20:15:02.186116+00:00 app[web.1]: Rendered layouts/_header.html.erb (1.3ms)
2014-10-14T20:15:02.186690+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.3ms)
2014-10-14T20:15:02.186109+00:00 app[web.1]: Rendered layouts/_header.html.erb (1.3ms)
2014-10-14T20:15:02.186696+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.3ms)
2014-10-14T20:15:02.187133+00:00 app[web.1]: Completed 200 OK in 17ms (Views: 13.9ms | ActiveRecord: 1.3ms)
2014-10-14T20:15:02.191064+00:00 app[web.1]: Completed 200 OK in 17ms (Views: 13.9ms | ActiveRecord: 1.3ms)
2014-10-14T20:15:02.197961+00:00 heroku[router]: at=info method=GET path="/" host=damp-reaches-6996.herokuapp.com request_id=15000cc9-c510-4276-a97f-d5cf99d8aaec fwd="121.247.250.56" dyno=web.1 connect=1ms service=30ms status=200 bytes=2438
2014-10-14T20:31:25.935252+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=damp-reaches-6996.herokuapp.com request_id=b5e873b4-d74c-4a7e-9f40-1f42943adef7 fwd="121.247.250.56" dyno=web.1 connect=1ms service=8ms status=304 bytes=178
2014-10-14T20:31:25.937708+00:00 heroku[router]: at=info method=GET path="/signup" host=damp-reaches-6996.herokuapp.com request_id=ea851668-474a-4616-9fba-2bb070acfbdc fwd="121.247.250.56" dyno=web.1 connect=1ms service=24ms status=304 bytes=892
2014-10-14T20:31:25.921261+00:00 app[web.1]: Rendered shared/_error_messages.html.erb (0.4ms)
2014-10-14T20:31:25.930786+00:00 app[web.1]: Completed 200 OK in 14ms (Views: 11.2ms | ActiveRecord: 1.9ms)
2014-10-14T20:31:25.923483+00:00 app[web.1]: Rendered users/new.html.erb within layouts/application (4.6ms)
2014-10-14T20:31:25.924865+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.3ms)
2014-10-14T20:31:25.921255+00:00 app[web.1]: Rendered shared/_error_messages.html.erb (0.4ms)
2014-10-14T20:31:25.930771+00:00 app[web.1]: Completed 200 OK in 14ms (Views: 11.2ms | ActiveRecord: 1.9ms)
2014-10-14T20:31:25.923488+00:00 app[web.1]: Rendered users/new.html.erb within layouts/application (4.6ms)
2014-10-14T20:31:25.916967+00:00 app[web.1]: Processing by UsersController#new as HTML
2014-10-14T20:31:25.930501+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.5ms)
2014-10-14T20:31:25.912854+00:00 app[web.1]: Started GET "/signup" for 121.247.250.56 at 2014-10-14 20:31:25 +0000
2014-10-14T20:31:25.929256+00:00 app[web.1]: Rendered layouts/_header.html.erb (3.5ms)
2014-10-14T20:31:25.916972+00:00 app[web.1]: Processing by UsersController#new as HTML
2014-10-14T20:31:25.930480+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.5ms)
2014-10-14T20:31:25.912846+00:00 app[web.1]: Started GET "/signup" for 121.247.250.56 at 2014-10-14 20:31:25 +0000
2014-10-14T20:31:25.929251+00:00 app[web.1]: Rendered layouts/_header.html.erb (3.5ms)
2014-10-14T20:31:25.924861+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.3ms)
2014-10-14T20:31:26.252400+00:00 heroku[router]: at=info method=GET path="/signup" host=damp-reaches-6996.herokuapp.com request_id=4164c73c-822d-413b-b827-57a6c2051291 fwd="121.247.250.56" dyno=web.1 connect=2ms service=19ms status=304 bytes=892
2014-10-14T20:31:26.239176+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.0ms)
2014-10-14T20:31:26.239180+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.0ms)
2014-10-14T20:31:26.234816+00:00 app[web.1]: Processing by UsersController#new as HTML
2014-10-14T20:31:26.241321+00:00 app[web.1]: Rendered layouts/_header.html.erb (2.0ms)
2014-10-14T20:31:26.241325+00:00 app[web.1]: Rendered layouts/_header.html.erb (2.0ms)
2014-10-14T20:31:26.234828+00:00 app[web.1]: Processing by UsersController#new as HTML
2014-10-14T20:31:26.241666+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.2ms)
2014-10-14T20:31:26.232892+00:00 app[web.1]: Started GET "/signup" for 121.247.250.56 at 2014-10-14 20:31:26 +0000
2014-10-14T20:31:26.241669+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.2ms)
2014-10-14T20:31:26.232899+00:00 app[web.1]: Started GET "/signup" for 121.247.250.56 at 2014-10-14 20:31:26 +0000
2014-10-14T20:31:26.241838+00:00 app[web.1]: Completed 200 OK in 7ms (Views: 5.3ms | ActiveRecord: 1.1ms)
2014-10-14T20:31:26.238640+00:00 app[web.1]: Rendered users/new.html.erb within layouts/application (2.9ms)
2014-10-14T20:31:26.236455+00:00 app[web.1]: Rendered shared/_error_messages.html.erb (0.1ms)
2014-10-14T20:31:26.241856+00:00 app[web.1]: Completed 200 OK in 7ms (Views: 5.3ms | ActiveRecord: 1.1ms)
2014-10-14T20:31:26.238635+00:00 app[web.1]: Rendered users/new.html.erb within layouts/application (2.9ms)
2014-10-14T20:31:26.236460+00:00 app[web.1]: Rendered shared/_error_messages.html.erb (0.1ms)
2014-10-14T20:31:27.045430+00:00 heroku[router]: at=info method=GET path="/assets/application-4962059d8f80f9bb096692bacc29c4e8.css" host=damp-reaches-6996.herokuapp.com request_id=76a54c39-b560-4c5e-9735-1e543a6805e9 fwd="121.247.250.56" dyno=web.1 connect=3ms service=6ms status=304 bytes=178
2014-10-14T20:31:27.076899+00:00 heroku[router]: at=info method=GET path="/assets/application-eeb856e3fe2c8f879c91d0e81d59cb40.js" host=damp-reaches-6996.herokuapp.com request_id=a99f922b-0323-49af-bcb1-7493fce2bbc5 fwd="121.247.250.56" dyno=web.1 connect=5ms service=6ms status=304 bytes=178
2014-10-14T20:32:19.993255+00:00 heroku[router]: at=info method=POST path="/users" host=damp-reaches-6996.herokuapp.com request_id=80fee28f-bbbf-4836-8f09-aaf0e0c2fae0 fwd="121.247.250.56" dyno=web.1 connect=3ms service=70ms status=200 bytes=3888
2014-10-14T20:32:19.983785+00:00 app[web.1]: Rendered shared/_error_messages.html.erb (3.5ms)
2014-10-14T20:32:19.983796+00:00 app[web.1]: Rendered shared/_error_messages.html.erb (3.5ms)
2014-10-14T20:32:19.985827+00:00 app[web.1]: Rendered users/new.html.erb within layouts/application (6.3ms)
2014-10-14T20:32:19.985831+00:00 app[web.1]: Rendered users/new.html.erb within layouts/application (6.3ms)
2014-10-14T20:32:19.986423+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.0ms)
2014-10-14T20:32:19.986428+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.0ms)
2014-10-14T20:32:19.988763+00:00 app[web.1]: Rendered layouts/_header.html.erb (2.2ms)
2014-10-14T20:32:19.988770+00:00 app[web.1]: Rendered layouts/_header.html.erb (2.2ms)
2014-10-14T20:32:19.989095+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.2ms)
2014-10-14T20:32:19.989114+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.2ms)
2014-10-14T20:32:19.989368+00:00 app[web.1]: Completed 200 OK in 58ms (Views: 9.1ms | ActiveRecord: 3.9ms)
2014-10-14T20:32:19.989387+00:00 app[web.1]: Completed 200 OK in 58ms (Views: 9.1ms | ActiveRecord: 3.9ms)
2014-10-14T20:32:19.931264+00:00 app[web.1]: Processing by UsersController#create as HTML
2014-10-14T20:32:19.931333+00:00 app[web.1]: Parameters: {"utf8"=>"✓", "authenticity_token"=>"8GymlnQOR5jDmY7CImLFazwXd1/BubS7Sa8REhLE5dI=", "user"=>{"name"=>"hritik bhardwaj", "email"=>"[email protected]", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Create my account"}
2014-10-14T20:32:19.933676+00:00 app[web.1]: WARNING: Can't mass-assign protected attributes for User: name, email, password, password_confirmation
2014-10-14T20:32:19.933683+00:00 app[web.1]: app/controllers/users_controller.rb:22:in `create'
2014-10-14T20:32:19.934751+00:00 app[web.1]: WARNING: Can't mass-assign protected attributes for User: name, email, password, password_confirmation
2014-10-14T20:32:19.934756+00:00 app[web.1]: app/controllers/users_controller.rb:22:in `create'
2014-10-14T20:32:19.931317+00:00 app[web.1]: Parameters: {"utf8"=>"✓", "authenticity_token"=>"8GymlnQOR5jDmY7CImLFazwXd1/BubS7Sa8REhLE5dI=", "user"=>{"name"=>"hritik bhardwaj", "email"=>"[email protected]", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Create my account"}
2014-10-14T20:32:19.928358+00:00 app[web.1]: Started POST "/users" for 121.247.250.56 at 2014-10-14 20:32:19 +0000
2014-10-14T20:32:19.928370+00:00 app[web.1]: Started POST "/users" for 121.247.250.56 at 2014-10-14 20:32:19 +0000
2014-10-14T20:32:19.931275+00:00 app[web.1]: Processing by UsersController#create as HTML
2014-10-14T20:35:25.851861+00:00 app[web.1]: Started POST "/users" for 121.247.250.56 at 2014-10-14 20:35:25 +0000
2014-10-14T20:35:25.856064+00:00 app[web.1]: app/controllers/users_controller.rb:22:in `create'
2014-10-14T20:35:25.869542+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.0ms)
2014-10-14T20:35:25.869536+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.0ms)
2014-10-14T20:35:25.856061+00:00 app[web.1]: WARNING: Can't mass-assign protected attributes for User: name, email, password, password_confirmation
2014-10-14T20:35:25.854047+00:00 app[web.1]: Parameters: {"utf8"=>"✓", "authenticity_token"=>"8GymlnQOR5jDmY7CImLFazwXd1/BubS7Sa8REhLE5dI=", "user"=>{"name"=>"hritik", "email"=>"[email protected]", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Create my account"}
2014-10-14T20:35:25.875202+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.2ms)
2014-10-14T20:35:25.851830+00:00 app[web.1]: Started POST "/users" for 121.247.250.56 at 2014-10-14 20:35:25 +0000
2014-10-14T20:35:25.857015+00:00 app[web.1]: app/controllers/users_controller.rb:22:in `create'
2014-10-14T20:35:25.867179+00:00 app[web.1]: Rendered shared/_error_messages.html.erb (2.7ms)
2014-10-14T20:35:25.875221+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.2ms)
2014-10-14T20:35:25.853997+00:00 app[web.1]: Processing by UsersController#create as HTML
2014-10-14T20:35:25.869031+00:00 app[web.1]: Rendered users/new.html.erb within layouts/application (5.2ms)
2014-10-14T20:35:25.875430+00:00 app[web.1]: Completed 200 OK in 21ms (Views: 7.3ms | ActiveRecord: 6.8ms)
2014-10-14T20:35:25.857013+00:00 app[web.1]: WARNING: Can't mass-assign protected attributes for User: name, email, password, password_confirmation
2014-10-14T20:35:25.874883+00:00 app[web.1]: Rendered layouts/_header.html.erb (5.2ms)
2014-10-14T20:35:25.854028+00:00 app[web.1]: Parameters: {"utf8"=>"✓", "authenticity_token"=>"8GymlnQOR5jDmY7CImLFazwXd1/BubS7Sa8REhLE5dI=", "user"=>{"name"=>"hritik", "email"=>"[email protected]", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Create my account"}
2014-10-14T20:35:25.869036+00:00 app[web.1]: Rendered users/new.html.erb within layouts/application (5.2ms)
2014-10-14T20:35:25.853991+00:00 app[web.1]: Processing by UsersController#create as HTML
2014-10-14T20:35:25.867189+00:00 app[web.1]: Rendered shared/_error_messages.html.erb (2.7ms)
2014-10-14T20:35:25.875412+00:00 app[web.1]: Completed 200 OK in 21ms (Views: 7.3ms | ActiveRecord: 6.8ms)
2014-10-14T20:35:25.877775+00:00 heroku[router]: at=info method=POST path="/users" host=damp-reaches-6996.herokuapp.com request_id=82b3baeb-cb4c-4003-9a64-bbf4073cebf8 fwd="121.247.250.56" dyno=web.1 connect=2ms service=28ms status=200 bytes=3839
2014-10-14T20:35:25.874888+00:00 app[web.1]: Rendered layouts/_header.html.erb (5.2ms)
2014-10-14T20:35:56.186749+00:00 app[web.1]: Completed 404 Not Found in 6ms
2014-10-14T20:35:56.188032+00:00 app[web.1]:
2014-10-14T20:35:56.188018+00:00 app[web.1]:
2014-10-14T20:35:56.180372+00:00 app[web.1]: Processing by UsersController#show as HTML
2014-10-14T20:35:56.188027+00:00 app[web.1]:
2014-10-14T20:35:56.178000+00:00 app[web.1]: Started GET "/users/1" for 121.247.250.56 at 2014-10-14 20:35:56 +0000
2014-10-14T20:35:56.188024+00:00 app[web.1]:
2014-10-14T20:35:56.188020+00:00 app[web.1]: ActiveRecord::RecordNotFound (Couldn't find User with id=1):
2014-10-14T20:35:56.180401+00:00 app[web.1]: Parameters: {"id"=>"1"}
2014-10-14T20:35:56.188029+00:00 app[web.1]: ActiveRecord::RecordNotFound (Couldn't find User with id=1):
2014-10-14T20:35:56.180421+00:00 app[web.1]: Parameters: {"id"=>"1"}
2014-10-14T20:35:56.188030+00:00 app[web.1]: app/controllers/users_controller.rb:12:in `show'
2014-10-14T20:35:56.180367+00:00 app[web.1]: Processing by UsersController#show as HTML
2014-10-14T20:35:56.188023+00:00 app[web.1]:
2014-10-14T20:35:56.177993+00:00 app[web.1]: Started GET "/users/1" for 121.247.250.56 at 2014-10-14 20:35:56 +0000
2014-10-14T20:35:56.188022+00:00 app[web.1]: app/controllers/users_controller.rb:12:in `show'
2014-10-14T20:35:56.186744+00:00 app[web.1]: Completed 404 Not Found in 6ms
2014-10-14T20:35:56.188031+00:00 app[web.1]:
2014-10-14T20:35:56.195478+00:00 heroku[router]: at=info method=GET path="/users/1" host=damp-reaches-6996.herokuapp.com request_id=df8c0ffc-2272-405b-ae3b-3acdb4c3bedf fwd="121.247.250.56" dyno=web.1 connect=3ms service=15ms status=404 bytes=1100
2014-10-14T21:46:45.338864+00:00 heroku[web.1]: Idling
2014-10-14T21:46:45.339355+00:00 heroku[web.1]: State changed from up to down
2014-10-14T21:46:48.002221+00:00 app[web.1]: /app/vendor/ruby-1.9.3/lib/ruby/1.9.1/webrick/server.rb:98:in `select'
2014-10-14T21:46:48.002215+00:00 app[web.1]: [2014-10-14 21:46:48] ERROR SignalException: SIGTERM
2014-10-14T21:46:47.518052+00:00 heroku[web.1]: Stopping all processes with SIGTERM
2014-10-14T21:46:57.048863+00:00 heroku[web.1]: Stopping remaining processes with SIGKILL
2014-10-14T21:46:58.276582+00:00 heroku[web.1]: Process exited with status 137
2014-10-14T21:46:57.048691+00:00 heroku[web.1]: Error R12 (Exit timeout) -> At least one process failed to exit within 10 seconds of SIGTERM
2014-10-14T23:01:21+00:00 heroku[slug-compiler]: Slug compilation started
2014-10-14T23:01:53+00:00 heroku[slug-compiler]: Slug compilation finished
2014-10-14T23:01:53.256481+00:00 heroku[api]: Deploy 7664d07 by [email protected]
2014-10-14T23:01:53.256538+00:00 heroku[api]: Release v8 created by [email protected]
2014-10-14T23:02:19.432687+00:00 heroku[web.1]: Unidling
2014-10-14T23:02:19.432687+00:00 heroku[web.1]: State changed from down to starting
2014-10-14T23:02:22.227460+00:00 heroku[web.1]: Starting process with command `bin/rails server -p 10890 -e production`
2014-10-14T23:02:26.251718+00:00 app[web.1]: [2014-10-14 23:02:26] INFO WEBrick::HTTPServer#start: pid=2 port=10890
2014-10-14T23:02:26.251235+00:00 app[web.1]: [2014-10-14 23:02:26] INFO WEBrick 1.3.1
2014-10-14T23:02:26.251255+00:00 app[web.1]: [2014-10-14 23:02:26] INFO ruby 1.9.3 (2014-05-14) [x86_64-linux]
2014-10-14T23:02:26.885738+00:00 heroku[web.1]: State changed from starting to up
2014-10-14T23:02:28.502345+00:00 app[web.1]: => Ctrl-C to shutdown server
2014-10-14T23:02:28.658830+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/callbacks.rb:80:in `run_callbacks'
2014-10-14T23:02:28.658856+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/routing/route_set.rb:676:in `call'
2014-10-14T23:02:28.658878+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2014-10-14T23:02:28.658890+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/runtime.rb:17:in `call'
2014-10-14T23:02:28.658902+00:00 app[web.1]: vendor/ruby-1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2014-10-14T23:02:28.658927+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/callbacks.rb:377:in `_run__1953613716592471397__process_action__callbacks'
2014-10-14T23:02:28.658959+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2014-10-14T23:02:28.658971+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/conditionalget.rb:35:in `call'
2014-10-14T23:02:28.658983+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/callbacks.rb:373:in `_run__148150462364177750__call__callbacks'
2014-10-14T23:02:28.659004+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/static.rb:64:in `call'
2014-10-14T23:02:28.502347+00:00 app[web.1]: Started POST "/users" for 1.39.15.57 at 2014-10-14 23:02:28 +0000
2014-10-14T23:02:28.658831+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/abstract_controller/callbacks.rb:17:in `process_action'
2014-10-14T23:02:28.658857+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/etag.rb:23:in `call'
2014-10-14T23:02:28.658880+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2014-10-14T23:02:28.658891+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2014-10-14T23:02:28.658904+00:00 app[web.1]: vendor/ruby-1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2014-10-14T23:02:28.658940+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/callbacks.rb:80:in `run_callbacks'
2014-10-14T23:02:28.658961+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_controller/metal.rb:231:in `block in action'
2014-10-14T23:02:28.658972+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
2014-10-14T23:02:28.658984+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/callbacks.rb:80:in `run_callbacks'
2014-10-14T23:02:28.659005+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/sendfile.rb:112:in `call'
2014-10-14T23:02:28.637346+00:00 app[web.1]: Parameters: {"utf8"=>"✓", "authenticity_token"=>"8GymlnQOR5jDmY7CImLFazwXd1/BubS7Sa8REhLE5dI=", "user"=>{"name"=>"hritik", "email"=>"[email protected]", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Create my account"}
2014-10-14T23:02:28.658843+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/abstract_controller/base.rb:136:in `process'
2014-10-14T23:02:28.658863+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/session/abstract/id.rb:225:in `context'
2014-10-14T23:02:28.658885+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/tagged_logging.rb:68:in `tagged'
2014-10-14T23:02:28.658922+00:00 app[web.1]: ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken):
2014-10-14T23:02:28.658955+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activerecord-4.0.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2014-10-14T23:02:28.658966+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/journey/router.rb:59:in `each'
2014-10-14T23:02:28.658978+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/cookies.rb:486:in `call'
2014-10-14T23:02:28.658999+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/request_id.rb:21:in `call'
2014-10-14T23:02:28.659016+00:00 app[web.1]:
2014-10-14T23:02:28.502342+00:00 app[web.1]: => Rails 4.0.8 application starting in production on http://0.0.0.0:10890
2014-10-14T23:02:28.658827+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_controller/metal/request_forgery_protection.rb:180:in `verify_authenticity_token'
2014-10-14T23:02:28.658846+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_controller/metal.rb:195:in `dispatch'
2014-10-14T23:02:28.658847+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2014-10-14T23:02:28.658848+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_controller/metal.rb:231:in `block in action'
2014-10-14T23:02:28.658849+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/routing/route_set.rb:82:in `call'
2014-10-14T23:02:28.658850+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
2014-10-14T23:02:28.658851+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/routing/route_set.rb:50:in `call'
2014-10-14T23:02:28.658853+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/journey/router.rb:71:in `block in call'
2014-10-14T23:02:28.658854+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/journey/router.rb:59:in `each'
2014-10-14T23:02:28.658865+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/cookies.rb:486:in `call'
2014-10-14T23:02:28.658888+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/request_id.rb:21:in `call'
2014-10-14T23:02:28.658925+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_controller/metal/request_forgery_protection.rb:173:in `handle_unverified_request'
2014-10-14T23:02:28.658957+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/abstract_controller/rendering.rb:44:in `process'
2014-10-14T23:02:28.658969+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/routing/route_set.rb:676:in `call'
2014-10-14T23:02:28.658981+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activerecord-4.0.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
2014-10-14T23:02:28.659002+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/runtime.rb:17:in `call'
2014-10-14T23:02:28.637298+00:00 app[web.1]: Processing by UsersController#create as HTML
2014-10-14T23:02:28.658834+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
2014-10-14T23:02:28.658860+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/head.rb:11:in `call'
2014-10-14T23:02:28.658882+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/rack/logger.rb:20:in `block in call'
2014-10-14T23:02:28.658894+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/sendfile.rb:112:in `call'
2014-10-14T23:02:28.658920+00:00 app[web.1]:
2014-10-14T23:02:28.658944+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
2014-10-14T23:02:28.658964+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/routing/route_set.rb:50:in `call'
2014-10-14T23:02:28.658976+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/session/abstract/id.rb:225:in `context'
2014-10-14T23:02:28.658995+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/tagged_logging.rb:68:in `tagged'
2014-10-14T23:02:28.659014+00:00 app[web.1]: vendor/ruby-1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2014-10-14T23:02:28.502335+00:00 app[web.1]: => Booting WEBrick
2014-10-14T23:02:28.656648+00:00 app[web.1]: Can't verify CSRF token authenticity
2014-10-14T23:02:28.656654+00:00 app[web.1]: Can't verify CSRF token authenticity
2014-10-14T23:02:28.656942+00:00 app[web.1]: Completed 422 Unprocessable Entity in 19ms
2014-10-14T23:02:28.656946+00:00 app[web.1]: Completed 422 Unprocessable Entity in 19ms
2014-10-14T23:02:28.658820+00:00 app[web.1]:
2014-10-14T23:02:28.658823+00:00 app[web.1]: ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken):
2014-10-14T23:02:28.658825+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_controller/metal/request_forgery_protection.rb:166:in `handle_unverified_request'
2014-10-14T23:02:28.658826+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_controller/metal/request_forgery_protection.rb:173:in `handle_unverified_request'
2014-10-14T23:02:28.658844+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/abstract_controller/rendering.rb:44:in `process'
2014-10-14T23:02:28.658864+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/session/abstract/id.rb:220:in `call'
2014-10-14T23:02:28.658887+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/rack/logger.rb:20:in `call'
2014-10-14T23:02:28.658924+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_controller/metal/request_forgery_protection.rb:166:in `handle_unverified_request'
2014-10-14T23:02:28.658956+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/abstract_controller/base.rb:136:in `process'
2014-10-14T23:02:28.658968+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/journey/router.rb:59:in `call'
2014-10-14T23:02:28.658980+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activerecord-4.0.8/lib/active_record/query_cache.rb:36:in `call'
2014-10-14T23:02:28.659000+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
2014-10-14T23:02:28.659018+00:00 app[web.1]:
2014-10-14T23:02:28.502355+00:00 app[web.1]: Started POST "/users" for 1.39.15.57 at 2014-10-14 23:02:28 +0000
2014-10-14T23:02:28.658833+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_controller/metal/rescue.rb:29:in `process_action'
2014-10-14T23:02:28.658858+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/conditionalget.rb:35:in `call'
2014-10-14T23:02:28.658881+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/rack/logger.rb:38:in `call_app'
2014-10-14T23:02:28.658893+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/static.rb:64:in `call'
2014-10-14T23:02:28.658905+00:00 app[web.1]: vendor/ruby-1.9.3/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2014-10-14T23:02:28.658941+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/abstract_controller/callbacks.rb:17:in `process_action'
2014-10-14T23:02:28.658962+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/routing/route_set.rb:82:in `call'
2014-10-14T23:02:28.658974+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2014-10-14T23:02:28.658986+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2014-10-14T23:02:28.658987+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2014-10-14T23:02:28.658988+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2014-10-14T23:02:28.658989+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2014-10-14T23:02:28.658990+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/rack/logger.rb:38:in `call_app'
2014-10-14T23:02:28.658991+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/rack/logger.rb:20:in `block in call'
2014-10-14T23:02:28.658993+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/tagged_logging.rb:68:in `block in tagged'
2014-10-14T23:02:28.659006+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/ssl.rb:24:in `call'
2014-10-14T23:02:28.659007+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/engine.rb:511:in `call'
2014-10-14T23:02:28.659008+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/application.rb:97:in `call'
2014-10-14T23:02:28.659010+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/lock.rb:17:in `call'
2014-10-14T23:02:28.659011+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/content_length.rb:14:in `call'
2014-10-14T23:02:28.659012+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/handler/webrick.rb:60:in `service'
2014-10-14T23:02:28.502344+00:00 app[web.1]: => Run `rails server -h` for more startup options
2014-10-14T23:02:28.658829+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/callbacks.rb:377:in `_run__1953613716592471397__process_action__callbacks'
2014-10-14T23:02:28.658855+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/journey/router.rb:59:in `call'
2014-10-14T23:02:28.658866+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activerecord-4.0.8/lib/active_record/query_cache.rb:36:in `call'
2014-10-14T23:02:28.658868+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activerecord-4.0.8/lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
2014-10-14T23:02:28.658873+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2014-10-14T23:02:28.658874+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/callbacks.rb:373:in `_run__148150462364177750__call__callbacks'
2014-10-14T23:02:28.658875+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/callbacks.rb:80:in `run_callbacks'
2014-10-14T23:02:28.658876+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2014-10-14T23:02:28.658877+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2014-10-14T23:02:28.658889+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/methodoverride.rb:21:in `call'
2014-10-14T23:02:28.658896+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/engine.rb:511:in `call'
2014-10-14T23:02:28.658897+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/application.rb:97:in `call'
2014-10-14T23:02:28.658899+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/lock.rb:17:in `call'
2014-10-14T23:02:28.658900+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/content_length.rb:14:in `call'
2014-10-14T23:02:28.658901+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/handler/webrick.rb:60:in `service'
2014-10-14T23:02:28.658926+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_controller/metal/request_forgery_protection.rb:180:in `verify_authenticity_token'
2014-10-14T23:02:28.658958+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_controller/metal.rb:195:in `dispatch'
2014-10-14T23:02:28.658970+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/etag.rb:23:in `call'
2014-10-14T23:02:28.658982+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2014-10-14T23:02:28.659003+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2014-10-14T23:02:28.637311+00:00 app[web.1]: Processing by UsersController#create as HTML
2014-10-14T23:02:28.658836+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/notifications.rb:159:in `block in instrument'
2014-10-14T23:02:28.658837+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2014-10-14T23:02:28.658838+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/notifications.rb:159:in `instrument'
2014-10-14T23:02:28.658840+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2014-10-14T23:02:28.658841+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
2014-10-14T23:02:28.658861+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2014-10-14T23:02:28.658883+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/tagged_logging.rb:68:in `block in tagged'
2014-10-14T23:02:28.658895+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/ssl.rb:24:in `call'
2014-10-14T23:02:28.658921+00:00 app[web.1]:
2014-10-14T23:02:28.658945+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/notifications.rb:159:in `block in instrument'
2014-10-14T23:02:28.658946+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2014-10-14T23:02:28.658951+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/notifications.rb:159:in `instrument'
2014-10-14T23:02:28.658952+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2014-10-14T23:02:28.658953+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
2014-10-14T23:02:28.658965+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/journey/router.rb:71:in `block in call'
2014-10-14T23:02:28.658977+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/rack-1.5.2/lib/rack/session/abstract/id.rb:220:in `call'
2014-10-14T23:02:28.658996+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/railties-4.0.8/lib/rails/rack/logger.rb:20:in `call'
2014-10-14T23:02:28.659015+00:00 app[web.1]: vendor/ruby-1.9.3/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2014-10-14T23:02:28.637341+00:00 app[web.1]: Parameters: {"utf8"=>"✓", "authenticity_token"=>"8GymlnQOR5jDmY7CImLFazwXd1/BubS7Sa8REhLE5dI=", "user"=>{"name"=>"hritik", "email"=>"[email protected]", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Create my account"}
2014-10-14T23:02:28.658842+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activerecord-4.0.8/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2014-10-14T23:02:28.658862+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/act
ionpack-4.0.8/lib/action_dispatch/middleware/flash.rb:241:in `call'
2014-10-14T23:02:28.658884+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/tagged_logging.rb:26:in `tagged'
2014-10-14T23:02:28.658906+00:00 app[web.1]:
2014-10-14T23:02:28.658942+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_controller/metal/rescue.rb:29:in `process_action'
2014-10-14T23:02:28.658963+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
2014-10-14T23:02:28.658975+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/actionpack-4.0.8/lib/action_dispatch/middleware/flash.rb:241:in `call'
2014-10-14T23:02:28.658994+00:00 app[web.1]: vendor/bundle/ruby/1.9.1/gems/activesupport-4.0.8/lib/active_support/tagged_logging.rb:26:in `tagged'
2014-10-14T23:02:28.659013+00:00 app[web.1]: vendor/ruby-1.9.3/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2014-10-14T23:02:28.660772+00:00 heroku[router]: at=info method=POST path="/users" host=damp-reaches-6996.herokuapp.com request_id=4c08a617-71c4-4f5c-98ed-34f39fa44b2d fwd="1.39.15.57" dyno=web.1 connect=6ms service=171ms status=422 bytes=995
2014-10-14T23:02:34.244187+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=damp-reaches-6996.herokuapp.com request_id=855fd942-29e3-45d1-97e2-657ed82a3f0e fwd="1.39.15.57" dyno=web.1 connect=1ms service=8ms status=200 bytes=273
2014-10-14T23:03:41.338229+00:00 heroku[api]: Scale to web=1 by [email protected]
2014-10-14T23:04:06.628379+00:00 app[web.1]: Started GET "/" for 1.39.15.57 at 2014-10-14 23:04:06 +0000
2014-10-14T23:04:06.628386+00:00 app[web.1]: Started GET "/" for 1.39.15.57 at 2014-10-14 23:04:06 +0000
2014-10-14T23:04:06.632340+00:00 app[web.1]: Processing by StaticPagesController#home as HTML
2014-10-14T23:04:06.632345+00:00 app[web.1]: Processing by StaticPagesController#home as HTML
2014-10-14T23:04:07.189392+00:00 heroku[router]: at=info method=GET path="/" host=damp-reaches-6996.herokuapp.com request_id=a1ab1f3b-7d4d-4329-a073-cd5346ea2288 fwd="1.39.15.57" dyno=web.1 connect=1ms service=560ms status=200 bytes=2486
2014-10-14T23:04:07.178075+00:00 app[web.1]: Rendered static_pages/home.html.erb within layouts/application (1.8ms)
2014-10-14T23:04:07.178084+00:00 app[web.1]: Rendered static_pages/home.html.erb within layouts/application (1.8ms)
2014-10-14T23:04:07.182647+00:00 app[web.1]: Rendered layouts/_header.html.erb (1.5ms)
2014-10-14T23:04:07.182651+00:00 app[web.1]: Rendered layouts/_header.html.erb (1.5ms)
2014-10-14T23:04:07.183949+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.6ms)
2014-10-14T23:04:07.180584+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.3ms)
2014-10-14T23:04:07.180588+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.3ms)
2014-10-14T23:04:07.184211+00:00 app[web.1]: Completed 200 OK in 552ms (Views: 9.7ms | ActiveRecord: 538.1ms)
2014-10-14T23:04:07.184228+00:00 app[web.1]: Completed 200 OK in 552ms (Views: 9.7ms | ActiveRecord: 538.1ms)
2014-10-14T23:04:07.183945+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.6ms)
2014-10-14T23:04:07.983201+00:00 heroku[router]: at=info method=GET path="/assets/application-4962059d8f80f9bb096692bacc29c4e8.css" host=damp-reaches-6996.herokuapp.com request_id=dc6185c1-c40b-4345-9013-58962bfda6ef fwd="1.39.15.57" dyno=web.1 connect=3ms service=8ms status=200 bytes=134516
2014-10-14T23:04:08.261361+00:00 heroku[router]: at=info method=GET path="/assets/application-eeb856e3fe2c8f879c91d0e81d59cb40.js" host=damp-reaches-6996.herokuapp.com request_id=fa067264-4246-445d-a465-793e99e513ac fwd="1.39.15.57" dyno=web.1 connect=0ms service=14ms status=200 bytes=364246
2014-10-14T23:04:10.937621+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=damp-reaches-6996.herokuapp.com request_id=02882441-506b-4bbb-ab54-fafd0b8e94d8 fwd="1.39.15.57" dyno=web.1 connect=1ms service=2ms status=304 bytes=178
2014-10-14T23:04:15.781597+00:00 app[web.1]: Started GET "/signup" for 1.39.15.57 at 2014-10-14 23:04:15 +0000
2014-10-14T23:04:15.785509+00:00 app[web.1]: Processing by UsersController#new as HTML
2014-10-14T23:04:15.785517+00:00 app[web.1]: Processing by UsersController#new as HTML
2014-10-14T23:04:15.781585+00:00 app[web.1]: Started GET "/signup" for 1.39.15.57 at 2014-10-14 23:04:15 +0000
2014-10-14T23:04:15.806437+00:00 app[web.1]: Rendered shared/_error_messages.html.erb (0.7ms)
2014-10-14T23:04:15.806450+00:00 app[web.1]: Rendered shared/_error_messages.html.erb (0.7ms)
2014-10-14T23:04:16.069500+00:00 heroku[router]: at=info method=GET path="/signup" host=damp-reaches-6996.herokuapp.com request_id=9c02b100-e4ba-4b3f-8b79-c53d67aa5821 fwd="1.39.15.57" dyno=web.1 connect=0ms service=290ms status=200 bytes=3251
2014-10-14T23:04:16.058843+00:00 app[web.1]: Rendered users/new.html.erb within layouts/application (263.3ms)
2014-10-14T23:04:16.058853+00:00 app[web.1]: Rendered users/new.html.erb within layouts/application (263.3ms)
2014-10-14T23:04:16.060540+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.4ms)
2014-10-14T23:04:16.060545+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.4ms)
2014-10-14T23:04:16.065754+00:00 app[web.1]: Rendered layouts/_header.html.erb (4.5ms)
2014-10-14T23:04:16.065763+00:00 app[web.1]: Rendered layouts/_header.html.erb (4.5ms)
2014-10-14T23:04:16.067127+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.6ms)
2014-10-14T23:04:16.067132+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.6ms)
2014-10-14T23:04:16.067426+00:00 app[web.1]: Completed 200 OK in 282ms (Views: 271.0ms | ActiveRecord: 9.8ms)
2014-10-14T23:04:16.067430+00:00 app[web.1]: Completed 200 OK in 282ms (Views: 271.0ms | ActiveRecord: 9.8ms)
2014-10-14T23:04:16.477306+00:00 app[web.1]: Started GET "/signup" for 1.39.15.57 at 2014-10-14 23:04:16 +0000
2014-10-14T23:04:16.495750+00:00 app[web.1]: Rendered layouts/_header.html.erb (4.7ms)
2014-10-14T23:04:16.477316+00:00 app[web.1]: Started GET "/signup" for 1.39.15.57 at 2014-10-14 23:04:16 +0000
2014-10-14T23:04:16.495757+00:00 app[web.1]: Rendered layouts/_header.html.erb (4.7ms)
2014-10-14T23:04:16.481016+00:00 app[web.1]: Processing by UsersController#new as HTML
2014-10-14T23:04:16.496281+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.3ms)
2014-10-14T23:04:16.481025+00:00 app[web.1]: Processing by UsersController#new as HTML
2014-10-14T23:04:16.496296+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.3ms)
2014-10-14T23:04:16.486702+00:00 app[web.1]: Rendered shared/_error_messages.html.erb (0.8ms)
2014-10-14T23:04:16.496680+00:00 app[web.1]: Completed 200 OK in 16ms (Views: 11.5ms | ActiveRecord: 3.2ms)
2014-10-14T23:04:16.486712+00:00 app[web.1]: Rendered shared/_error_messages.html.erb (0.8ms)
2014-10-14T23:04:16.496685+00:00 app[web.1]: Completed 200 OK in 16ms (Views: 11.5ms | ActiveRecord: 3.2ms)
2014-10-14T23:04:16.490133+00:00 app[web.1]: Rendered users/new.html.erb within layouts/application (7.2ms)
2014-10-14T23:04:16.490142+00:00 app[web.1]: Rendered users/new.html.erb within layouts/application (7.2ms)
2014-10-14T23:04:16.490854+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.1ms)
2014-10-14T23:04:16.490859+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.1ms)
2014-10-14T23:04:16.500299+00:00 heroku[router]: at=info method=GET path="/signup" host=damp-reaches-6996.herokuapp.com request_id=d374f64b-956b-4b6a-ad74-aac3156789b8 fwd="1.39.15.57" dyno=web.1 connect=1ms service=24ms status=304 bytes=892
2014-10-14T23:04:17.094100+00:00 heroku[router]: at=info method=GET path="/assets/application-eeb856e3fe2c8f879c91d0e81d59cb40.js" host=damp-reaches-6996.herokuapp.com request_id=3b86f331-8785-430d-9790-a66e10811ad7 fwd="1.39.15.57" dyno=web.1 connect=1ms service=3ms status=304 bytes=178
2014-10-14T23:04:17.073700+00:00 heroku[router]: at=info method=GET path="/assets/application-4962059d8f80f9bb096692bacc29c4e8.css" host=damp-reaches-6996.herokuapp.com request_id=b450774c-e668-4384-af09-0ce8ab8ff5b7 fwd="1.39.15.57" dyno=web.1 connect=1ms service=3ms status=304 bytes=178
2014-10-14T23:04:47.229948+00:00 app[web.1]: Started POST "/users" for 1.39.15.57 at 2014-10-14 23:04:47 +0000
2014-10-14T23:04:47.229956+00:00 app[web.1]: Started POST "/users" for 1.39.15.57 at 2014-10-14 23:04:47 +0000
2014-10-14T23:04:47.233169+00:00 app[web.1]: Processing by UsersController#create as HTML
2014-10-14T23:04:47.233173+00:00 app[web.1]: Processing by UsersController#create as HTML
2014-10-14T23:04:47.233225+00:00 app[web.1]: Parameters: {"utf8"=>"✓", "authenticity_token"=>"thmJtAv2i01mqqOvbIk70AJcqjYOY7BTwSJrX+c/Eo0=", "user"=>{"name"=>"hritik", "email"=>"[email protected]", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Create my account"}
2014-10-14T23:04:47.233242+00:00 app[web.1]: Parameters: {"utf8"=>"✓", "authenticity_token"=>"thmJtAv2i01mqqOvbIk70AJcqjYOY7BTwSJrX+c/Eo0=", "user"=>{"name"=>"hritik", "email"=>"[email protected]", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Create my account"}
2014-10-14T23:04:47.390538+00:00 app[web.1]: Redirected to https://damp-reaches-6996.herokuapp.com/users/1
2014-10-14T23:04:47.390548+00:00 app[web.1]: Redirected to https://damp-reaches-6996.herokuapp.com/users/1
2014-10-14T23:04:47.390718+00:00 app[web.1]: Completed 302 Found in 157ms (ActiveRecord: 32.6ms)
2014-10-14T23:04:47.390724+00:00 app[web.1]: Completed 302 Found in 157ms (ActiveRecord: 32.6ms)
2014-10-14T23:04:47.394755+00:00 heroku[router]: at=info method=POST path="/users" host=damp-reaches-6996.herokuapp.com request_id=1b521c21-60ad-436a-b42e-e20a7e70230a fwd="1.39.15.57" dyno=web.1 connect=0ms service=167ms status=302 bytes=1349
2014-10-14T23:04:47.832399+00:00 app[web.1]: Rendered shared/_stats.html.erb (20.0ms)
2014-10-14T23:04:47.846756+00:00 app[web.1]: Completed 200 OK in 61ms (Views: 13.5ms | ActiveRecord: 41.5ms)
2014-10-14T23:04:47.782823+00:00 app[web.1]: Started GET "/users/1" for 1.39.15.57 at 2014-10-14 23:04:47 +0000
2014-10-14T23:04:47.841622+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.0ms)
2014-10-14T23:04:47.850474+00:00 heroku[router]: at=info method=GET path="/users/1" host=damp-reaches-6996.herokuapp.com request_id=70bbe734-e81f-41a9-ab45-833a9fd6ded3 fwd="1.39.15.57" dyno=web.1 connect=5ms service=69ms status=200 bytes=3636
2014-10-14T23:04:47.840388+00:00 app[web.1]: Rendered users/show.html.erb within layouts/application (29.3ms)
2014-10-14T23:04:47.840395+00:00 app[web.1]: Rendered users/show.html.erb within layouts/application (29.3ms)
2014-10-14T23:04:47.786053+00:00 app[web.1]: Parameters: {"id"=>"1"}
2014-10-14T23:04:47.846433+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.2ms)
2014-10-14T23:04:47.782812+00:00 app[web.1]: Started GET "/users/1" for 1.39.15.57 at 2014-10-14 23:04:47 +0000
2014-10-14T23:04:47.841618+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.0ms)
2014-10-14T23:04:47.786020+00:00 app[web.1]: Processing by UsersController#show as HTML
2014-10-14T23:04:47.846003+00:00 app[web.1]: Rendered layouts/_header.html.erb (4.2ms)
2014-10-14T23:04:47.786083+00:00 app[web.1]: Parameters: {"id"=>"1"}
2014-10-14T23:04:47.846437+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.2ms)
2014-10-14T23:04:47.832410+00:00 app[web.1]: Rendered shared/_stats.html.erb (20.0ms)
2014-10-14T23:04:47.846761+00:00 app[web.1]: Completed 200 OK in 61ms (Views: 13.5ms | ActiveRecord: 41.5ms)
2014-10-14T23:04:47.786025+00:00 app[web.1]: Processing by UsersController#show as HTML
2014-10-14T23:04:47.846010+00:00 app[web.1]: Rendered layouts/_header.html.erb (4.2ms)
2014-10-14T23:04:48.581300+00:00 heroku[router]: at=info method=GET path="/assets/application-4962059d8f80f9bb096692bacc29c4e8.css" host=damp-reaches-6996.herokuapp.com request_id=1c8e5a0e-76ef-401b-a66c-7a1cb6c63429 fwd="1.39.15.57" dyno=web.1 connect=1ms service=3ms status=304 bytes=178
2014-10-14T23:04:48.583389+00:00 heroku[router]: at=info method=GET path="/assets/application-eeb856e3fe2c8f879c91d0e81d59cb40.js" host=damp-reaches-6996.herokuapp.com request_id=d6bddb81-86f3-47df-b630-442f6b732bcd fwd="1.39.15.57" dyno=web.1 connect=1ms service=4ms status=304 bytes=178
2014-10-14T23:04:50.591256+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=damp-reaches-6996.herokuapp.com request_id=ec5b49a4-1f51-4471-ae97-f31858556940 fwd="1.39.15.57" dyno=web.1 connect=1ms service=2ms status=304 bytes=178
2014-10-14T23:05:01.501864+00:00 app[web.1]: Started GET "/users" for 1.39.15.57 at 2014-10-14 23:05:01 +0000
2014-10-14T23:05:01.501875+00:00 app[web.1]: Started GET "/users" for 1.39.15.57 at 2014-10-14 23:05:01 +0000
2014-10-14T23:05:01.505396+00:00 app[web.1]: Processing by UsersController#index as HTML
2014-10-14T23:05:01.505404+00:00 app[web.1]: Processing by UsersController#index as HTML
2014-10-14T23:05:01.520482+00:00 app[web.1]: Rendered users/_user.html.erb (1.4ms)
2014-10-14T23:05:01.522202+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.1ms)
2014-10-14T23:05:01.520854+00:00 app[web.1]: Rendered users/index.html.erb within layouts/application (10.5ms)
2014-10-14T23:05:01.522210+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.1ms)
2014-10-14T23:05:01.520580+00:00 app[web.1]: Rendered users/_user.html.erb (1.4ms)
2014-10-14T23:05:01.523146+00:00 app[web.1]: Rendered layouts/_header.html.erb (0.8ms)
2014-10-14T23:05:01.520926+00:00 app[web.1]: Rendered users/index.html.erb within layouts/application (10.5ms)
2014-10-14T23:05:01.523555+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.2ms)
2014-10-14T23:05:01.523905+00:00 app[web.1]: Completed 200 OK in 18ms (Views: 9.9ms | ActiveRecord: 7.0ms)
2014-10-14T23:05:01.523910+00:00 app[web.1]: Completed 200 OK in 18ms (Views: 9.9ms | ActiveRecord: 7.0ms)
2014-10-14T23:05:01.523140+00:00 app[web.1]: Rendered layouts/_header.html.erb (0.8ms)
2014-10-14T23:05:01.523549+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.2ms)
2014-10-14T23:05:01.528866+00:00 heroku[router]: at=info method=GET path="/users" host=damp-reaches-6996.herokuapp.com request_id=f35f5460-454c-4bb3-be56-c066eb98aa73 fwd="1.39.15.57" dyno=web.1 connect=1ms service=26ms status=200 bytes=3012
2014-10-14T23:05:08.697149+00:00 heroku[router]: at=info method=GET path="/users/1" host=damp-reaches-6996.herokuapp.com request_id=b0276562-1532-4069-a49f-b3ffb7504a74 fwd="1.39.15.57" dyno=web.1 connect=3ms service=32ms status=200 bytes=3374
2014-10-14T23:05:08.670185+00:00 app[web.1]: Processing by UsersController#show as HTML
2014-10-14T23:05:08.670224+00:00 app[web.1]: Parameters: {"id"=>"1"}
2014-10-14T23:05:08.670192+00:00 app[web.1]: Processing by UsersController#show as HTML
2014-10-14T23:05:08.670229+00:00 app[web.1]: Parameters: {"id"=>"1"}
2014-10-14T23:05:08.685206+00:00 app[web.1]: Rendered shared/_stats.html.erb (4.5ms)
2014-10-14T23:05:08.666913+00:00 app[web.1]: Started GET "/users/1" for 1.39.15.57 at 2014-10-14 23:05:08 +0000
2014-10-14T23:05:08.685200+00:00 app[web.1]: Rendered shared/_stats.html.erb (4.5ms)
2014-10-14T23:05:08.666902+00:00 app[web.1]: Started GET "/users/1" for 1.39.15.57 at 2014-10-14 23:05:08 +0000
2014-10-14T23:05:08.689169+00:00 app[web.1]: Rendered users/show.html.erb within layouts/application (9.9ms)
2014-10-14T23:05:08.693994+00:00 app[web.1]: Rendered layouts/_header.html.erb (3.6ms)
2014-10-14T23:05:08.689164+00:00 app[web.1]: Rendered users/show.html.erb within layouts/application (9.9ms)
2014-10-14T23:05:08.694609+00:00 app[web.1]: Completed 200 OK in 24ms (Views: 9.0ms | ActiveRecord: 12.4ms)
2014-10-14T23:05:08.694342+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.2ms)
2014-10-14T23:05:08.694346+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.2ms)
2014-10-14T23:05:08.694627+00:00 app[web.1]: Completed 200 OK in 24ms (Views: 9.0ms | ActiveRecord: 12.4ms)
2014-10-14T23:05:08.690298+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.0ms)
2014-10-14T23:05:08.690304+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.0ms)
2014-10-14T23:05:08.693989+00:00 app[web.1]: Rendered layouts/_header.html.erb (3.6ms)
2014-10-14T23:05:09.206514+00:00 app[web.1]: Parameters: {"id"=>"1"}
2014-10-14T23:05:09.206492+00:00 app[web.1]: Parameters: {"id"=>"1"}
2014-10-14T23:05:09.217734+00:00 app[web.1]: Rendered shared/_stats.html.erb (3.7ms)
2014-10-14T23:05:09.206399+00:00 app[web.1]: Processing by UsersController#show as HTML
2014-10-14T23:05:09.217743+00:00 app[web.1]: Rendered shared/_stats.html.erb (3.7ms)
2014-10-14T23:05:09.220457+00:00 app[web.1]: Rendered users/show.html.erb within layouts/application (6.9ms)
2014-10-14T23:05:09.220462+00:00 app[web.1]: Rendered users/show.html.erb within layouts/application (6.9ms)
2014-10-14T23:05:09.221599+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.1ms)
2014-10-14T23:05:09.221619+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.1ms)
2014-10-14T23:05:09.225574+00:00 app[web.1]: Rendered layouts/_header.html.erb (3.8ms)
2014-10-14T23:05:09.225581+00:00 app[web.1]: Rendered layouts/_header.html.erb (3.8ms)
2014-10-14T23:05:09.225929+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.2ms)
2014-10-14T23:05:09.225935+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.2ms)
2014-10-14T23:05:09.226190+00:00 app[web.1]: Completed 200 OK in 20ms (Views: 7.0ms | ActiveRecord: 10.2ms)
2014-10-14T23:05:09.226195+00:00 app[web.1]: Completed 200 OK in 20ms (Views: 7.0ms | ActiveRecord: 10.2ms)
2014-10-14T23:05:09.203320+00:00 app[web.1]: Started GET "/users/1" for 1.39.15.57 at 2014-10-14 23:05:09 +0000
2014-10-14T23:05:09.203327+00:00 app[web.1]: Started GET "/users/1" for 1.39.15.57 at 2014-10-14 23:05:09 +0000
2014-10-14T23:05:09.206425+00:00 app[web.1]: Processing by UsersController#show as HTML
2014-10-14T23:05:09.229215+00:00 heroku[router]: at=info method=GET path="/users/1" host=damp-reaches-6996.herokuapp.com request_id=1fe6ce7b-fd3a-4f7e-841d-755bb746c488 fwd="1.39.15.57" dyno=web.1 connect=0ms service=27ms status=304 bytes=893
2014-10-14T23:05:09.806331+00:00 heroku[router]: at=info method=GET path="/assets/application-4962059d8f80f9bb096692bacc29c4e8.css" host=damp-reaches-6996.herokuapp.com request_id=bc999456-d4e9-41e0-81d4-955dd827c26d fwd="1.39.15.57" dyno=web.1 connect=0ms service=3ms status=304 bytes=178
2014-10-14T23:05:09.869561+00:00 heroku[router]: at=info method=GET path="/assets/application-eeb856e3fe2c8f879c91d0e81d59cb40.js" host=damp-reaches-6996.herokuapp.com request_id=6c510cdb-21f1-4970-be24-e9ae7140cfc0 fwd="1.39.15.57" dyno=web.1 connect=1ms service=3ms status=304 bytes=178
2014-10-14T23:05:16.792369+00:00 heroku[router]: at=info method=GET path="/" host=damp-reaches-6996.herokuapp.com request_id=0128c02b-eaf4-4aa0-8507-38f44c985fc2 fwd="1.39.15.57" dyno=web.1 connect=1ms service=79ms status=200 bytes=4220
2014-10-14T23:05:16.774972+00:00 app[web.1]: Rendered shared/_error_messages.html.erb (0.1ms)
2014-10-14T23:05:16.785222+00:00 app[web.1]: Rendered layouts/_header.html.erb (1.0ms)
2014-10-14T23:05:16.768231+00:00 app[web.1]: Rendered shared/_user_info.html.erb (35.2ms)
2014-10-14T23:05:16.783286+00:00 app[web.1]: Rendered static_pages/home.html.erb within layouts/application (51.4ms)
2014-10-14T23:05:16.717826+00:00 app[web.1]: Processing by StaticPagesController#home as HTML
2014-10-14T23:05:16.783110+00:00 app[web.1]: Rendered shared/_read_feed.html.erb (3.6ms)
2014-10-14T23:05:16.786030+00:00 app[web.1]: Completed 200 OK in 68ms (Views: 46.4ms | ActiveRecord: 13.3ms)
2014-10-14T23:05:16.772392+00:00 app[web.1]: Rendered shared/_stats.html.erb (3.9ms)
2014-10-14T23:05:16.784127+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.0ms)
2014-10-14T23:05:16.713996+00:00 app[web.1]: Started GET "/" for 1.39.15.57 at 2014-10-14 23:05:16 +0000
2014-10-14T23:05:16.778712+00:00 app[web.1]: Rendered shared/_post_form.html.erb (5.6ms)
2014-10-14T23:05:16.785688+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.2ms)
2014-10-14T23:05:16.768223+00:00 app[web.1]: Rendered shared/_user_info.html.erb (35.2ms)
2014-10-14T23:05:16.783221+00:00 app[web.1]: Rendered static_pages/home.html.erb within layouts/application (51.4ms)
2014-10-14T23:05:16.717819+00:00 app[web.1]: Processing by StaticPagesController#home as HTML
2014-10-14T23:05:16.783104+00:00 app[web.1]: Rendered shared/_read_feed.html.erb (3.6ms)
2014-10-14T23:05:16.786026+00:00 app[web.1]: Completed 200 OK in 68ms (Views: 46.4ms | ActiveRecord: 13.3ms)
2014-10-14T23:05:16.772386+00:00 app[web.1]: Rendered shared/_stats.html.erb (3.9ms)
2014-10-14T23:05:16.784120+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.0ms)
2014-10-14T23:05:16.775015+00:00 app[web.1]: Rendered shared/_error_messages.html.erb (0.1ms)
2014-10-14T23:05:16.785227+00:00 app[web.1]: Rendered layouts/_header.html.erb (1.0ms)
2014-10-14T23:05:16.713988+00:00 app[web.1]: Started GET "/" for 1.39.15.57 at 2014-10-14 23:05:16 +0000
2014-10-14T23:05:16.778689+00:00 app[web.1]: Rendered shared/_post_form.html.erb (5.6ms)
2014-10-14T23:05:16.785673+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.2ms)
2014-10-14T23:05:17.847738+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=damp-reaches-6996.herokuapp.com request_id=5678933a-61fa-4459-b860-1509a75758e9 fwd="1.39.15.57" dyno=web.1 connect=0ms service=3ms status=304 bytes=178
2014-10-14T23:05:18.304123+00:00 heroku[router]: at=info method=GET path="/" host=damp-reaches-6996.herokuapp.com request_id=470da58a-27ef-46b2-b7a4-5a19e26eddce fwd="1.39.15.57" dyno=web.1 connect=1ms service=35ms status=304 bytes=886
2014-10-14T23:05:18.273594+00:00 app[web.1]: Processing by StaticPagesController#home as HTML
2014-10-14T23:05:18.270282+00:00 app[web.1]: Started GET "/" for 1.39.15.57 at 2014-10-14 23:05:18 +0000
2014-10-14T23:05:18.273598+00:00 app[web.1]: Processing by StaticPagesController#home as HTML
2014-10-14T23:05:18.286648+00:00 app[web.1]: Rendered shared/_user_info.html.erb (4.8ms)
2014-10-14T23:05:18.291552+00:00 app[web.1]: Rendered shared/_error_messages.html.erb (0.1ms)
2014-10-14T23:05:18.290092+00:00 app[web.1]: Rendered shared/_stats.html.erb (3.3ms)
2014-10-14T23:05:18.270290+00:00 app[web.1]: Started GET "/" for 1.39.15.57 at 2014-10-14 23:05:18 +0000
2014-10-14T23:05:18.290096+00:00 app[web.1]: Rendered shared/_stats.html.erb (3.3ms)
2014-10-14T23:05:18.286653+00:00 app[web.1]: Rendered shared/_user_info.html.erb (4.8ms)
2014-10-14T23:05:18.291547+00:00 app[web.1]: Rendered shared/_error_messages.html.erb (0.1ms)
2014-10-14T23:05:18.297552+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.0ms)
2014-10-14T23:05:18.297557+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.0ms)
2014-10-14T23:05:18.293171+00:00 app[web.1]: Rendered shared/_post_form.html.erb (2.6ms)
2014-10-14T23:05:18.293175+00:00 app[web.1]: Rendered shared/_post_form.html.erb (2.6ms)
2014-10-14T23:05:18.296761+00:00 app[web.1]: Rendered shared/_read_feed.html.erb (3.1ms)
2014-10-14T23:05:18.296765+00:00 app[web.1]: Rendered shared/_read_feed.html.erb (3.1ms)
2014-10-14T23:05:18.296850+00:00 app[web.1]: Rendered static_pages/home.html.erb within layouts/application (15.6ms)
2014-10-14T23:05:18.296867+00:00 app[web.1]: Rendered static_pages/home.html.erb within layouts/application (15.6ms)
2014-10-14T23:05:18.298429+00:00 app[web.1]: Rendered layouts/_header.html.erb (0.7ms)
2014-10-14T23:05:18.298785+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.2ms)
2014-10-14T23:05:18.298434+00:00 app[web.1]: Rendered layouts/_header.html.erb (0.7ms)
2014-10-14T23:05:18.298789+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.2ms)
2014-10-14T23:05:18.299034+00:00 app[web.1]: Completed 200 OK in 25ms (Views: 12.1ms | ActiveRecord: 10.1ms)
2014-10-14T23:05:18.299033+00:00 app[web.1]: Completed 200 OK in 25ms (Views: 12.1ms | ActiveRecord: 10.1ms)
2014-10-14T23:05:18.868671+00:00 heroku[router]: at=info method=GET path="/assets/application-eeb856e3fe2c8f879c91d0e81d59cb40.js" host=damp-reaches-6996.herokuapp.com request_id=c2555432-7b2e-4a66-8eb6-2c3d6970d833 fwd="1.39.15.57" dyno=web.1 connect=1ms service=2ms status=304 bytes=178
2014-10-14T23:05:18.864693+00:00 heroku[router]: at=info method=GET path="/assets/application-4962059d8f80f9bb096692bacc29c4e8.css" host=damp-reaches-6996.herokuapp.com request_id=2f4ffd93-bfd8-43c4-9818-36571bf3f3b5 fwd="1.39.15.57" dyno=web.1 connect=0ms service=3ms status=304 bytes=178
2014-10-14T23:06:06.333483+00:00 app[web.1]: Started POST "/posts" for 1.39.15.57 at 2014-10-14 23:06:06 +0000
2014-10-14T23:06:06.337310+00:00 app[web.1]: Processing by PostsController#create as HTML
2014-10-14T23:06:06.337355+00:00 app[web.1]: Parameters: {"utf8"=>"✓", "authenticity_token"=>"thmJtAv2i01mqqOvbIk70AJcqjYOY7BTwSJrX+c/Eo0=", "post"=>{"content"=>"first post", "title"=>"check title"}, "commit"=>"Post"}
2014-10-14T23:06:06.337397+00:00 app[web.1]: Parameters: {"utf8"=>"✓", "authenticity_token"=>"thmJtAv2i01mqqOvbIk70AJcqjYOY7BTwSJrX+c/Eo0=", "post"=>{"content"=>"first post", "title"=>"check title"}, "commit"=>"Post"}
2014-10-14T23:06:06.421505+00:00 app[web.1]: Redirected to https://damp-reaches-6996.herokuapp.com/
2014-10-14T23:06:06.421724+00:00 app[web.1]: Completed 302 Found in 84ms (ActiveRecord: 77.9ms)
2014-10-14T23:06:06.421492+00:00 app[web.1]: Redirected to https://damp-reaches-6996.herokuapp.com/
2014-10-14T23:06:06.421710+00:00 app[web.1]: Completed 302 Found in 84ms (ActiveRecord: 77.9ms)
2014-10-14T23:06:06.337315+00:00 app[web.1]: Processing by PostsController#create as HTML
2014-10-14T23:06:06.333491+00:00 app[web.1]: Started POST "/posts" for 1.39.15.57 at 2014-10-14 23:06:06 +0000
2014-10-14T23:06:06.424865+00:00 heroku[router]: at=info method=POST path="/posts" host=damp-reaches-6996.herokuapp.com request_id=43909478-7493-43cd-86bf-a051057e4c7c fwd="1.39.15.57" dyno=web.1 connect=8ms service=93ms status=302 bytes=1197
2014-10-14T23:06:06.746479+00:00 app[web.1]: Started GET "/" for 1.39.15.57 at 2014-10-14 23:06:06 +0000
2014-10-14T23:06:06.746489+00:00 app[web.1]: Started GET "/" for 1.39.15.57 at 2014-10-14 23:06:06 +0000
2014-10-14T23:06:06.749386+00:00 app[web.1]: Processing by StaticPagesController#home as HTML
2014-10-14T23:06:06.749406+00:00 app[web.1]: Processing by StaticPagesController#home as HTML
2014-10-14T23:06:06.761146+00:00 app[web.1]: Rendered shared/_user_info.html.erb (3.6ms)
2014-10-14T23:06:06.761152+00:00 app[web.1]: Rendered shared/_user_info.html.erb (3.6ms)
2014-10-14T23:06:06.764843+00:00 app[web.1]: Rendered shared/_stats.html.erb (3.5ms)
2014-10-14T23:06:06.764850+00:00 app[web.1]: Rendered shared/_stats.html.erb (3.5ms)
2014-10-14T23:06:06.765877+00:00 app[web.1]: Rendered shared/_error_messages.html.erb (0.1ms)
2014-10-14T23:06:06.765882+00:00 app[web.1]: Rendered shared/_error_messages.html.erb (0.1ms)
2014-10-14T23:06:06.767615+00:00 app[web.1]: Rendered shared/_post_form.html.erb (2.6ms)
2014-10-14T23:06:06.767620+00:00 app[web.1]: Rendered shared/_post_form.html.erb (2.6ms)
2014-10-14T23:06:06.776346+00:00 app[web.1]: Rendered shared/_read_feed_item.html.erb (1.6ms)
2014-10-14T23:06:06.776352+00:00 app[web.1]: Rendered shared/_read_feed_item.html.erb (1.6ms)
2014-10-14T23:06:06.776452+00:00 app[web.1]: Rendered shared/_read_feed.html.erb (8.7ms)
2014-10-14T23:06:06.776538+00:00 app[web.1]: Rendered shared/_read_feed.html.erb (8.7ms)
2014-10-14T23:06:06.776627+00:00 app[web.1]: Rendered static_pages/home.html.erb within layouts/application (19.3ms)
2014-10-14T23:06:06.776732+00:00 app[web.1]: Rendered static_pages/home.html.erb within layouts/application (19.3ms)
2014-10-14T23:06:06.777576+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.0ms)
2014-10-14T23:06:06.777580+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.0ms)
2014-10-14T23:06:06.778543+00:00 app[web.1]: Rendered layouts/_header.html.erb (0.8ms)
2014-10-14T23:06:06.778547+00:00 app[web.1]: Rendered layouts/_header.html.erb (0.8ms)
2014-10-14T23:06:06.778930+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.2ms)
2014-10-14T23:06:06.778945+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.2ms)
2014-10-14T23:06:06.779264+00:00 app[web.1]: Completed 200 OK in 30ms (Views: 13.9ms | ActiveRecord: 12.5ms)
2014-10-14T23:06:06.779281+00:00 app[web.1]: Completed 200 OK in 30ms (Views: 13.9ms | ActiveRecord: 12.5ms)
2014-10-14T23:06:06.782179+00:00 heroku[router]: at=info method=GET path="/" host=damp-reaches-6996.herokuapp.com request_id=c8809260-50ef-44e4-8a9f-fa0da45d2604 fwd="1.39.15.57" dyno=web.1 connect=1ms service=37ms status=200 bytes=4768
2014-10-14T23:06:07.347823+00:00 heroku[router]: at=info method=GET path="/assets/application-eeb856e3fe2c8f879c91d0e81d59cb40.js" host=damp-reaches-6996.herokuapp.com request_id=0efa7191-adc5-4ac0-b133-23fe2228e96e fwd="1.39.15.57" dyno=web.1 connect=0ms service=4ms status=304 bytes=178
2014-10-14T23:06:07.344754+00:00 heroku[router]: at=info method=GET path="/assets/application-4962059d8f80f9bb096692bacc29c4e8.css" host=damp-reaches-6996.herokuapp.com request_id=f5f75bfa-d53c-4268-a779-6adbfb70da4d fwd="1.39.15.57" dyno=web.1 connect=5ms service=5ms status=304 bytes=178
2014-10-14T23:06:08.038181+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=damp-reaches-6996.herokuapp.com request_id=a9426cb0-a8fc-43c4-859d-c762ad6dd894 fwd="1.39.15.57" dyno=web.1 connect=1ms service=3ms status=304 bytes=178
2014-10-14T23:06:17.194669+00:00 app[web.1]: Parameters: {"id"=>"1"}
2014-10-14T23:06:17.231930+00:00 app[web.1]: Rendered posts/show.js.erb (0.5ms)
2014-10-14T23:06:17.231938+00:00 app[web.1]: Rendered posts/show.js.erb (0.5ms)
2014-10-14T23:06:17.232208+00:00 app[web.1]: Completed 200 OK in 37ms (Views: 1.7ms | ActiveRecord: 25.3ms)
2014-10-14T23:06:17.232214+00:00 app[web.1]: Completed 200 OK in 37ms (Views: 1.7ms | ActiveRecord: 25.3ms)
2014-10-14T23:06:17.190305+00:00 app[web.1]: Started GET "/posts/1" for 1.39.15.57 at 2014-10-14 23:06:17 +0000
2014-10-14T23:06:17.190316+00:00 app[web.1]: Started GET "/posts/1" for 1.39.15.57 at 2014-10-14 23:06:17 +0000
2014-10-14T23:06:17.194642+00:00 app[web.1]: Processing by PostsController#show as JS
2014-10-14T23:06:17.194653+00:00 app[web.1]: Processing by PostsController#show as JS
2014-10-14T23:06:17.194655+00:00 app[web.1]: Parameters: {"id"=>"1"}
2014-10-14T23:06:17.240798+00:00 heroku[router]: at=info method=GET path="/posts/1" host=damp-reaches-6996.herokuapp.com request_id=868c543a-65e8-4b8b-8efb-d78362b8aad2 fwd="1.39.15.57" dyno=web.1 connect=4ms service=48ms status=200 bytes=580
2014-10-14T23:06:26.799842+00:00 heroku[router]: at=info method=GET path="/" host=damp-reaches-6996.herokuapp.com request_id=2f98a943-0923-453d-aa61-73070ad5048a fwd="1.39.15.57" dyno=web.1 connect=1ms service=37ms status=200 bytes=4545
2014-10-14T23:06:26.763272+00:00 app[web.1]: Started GET "/" for 1.39.15.57 at 2014-10-14 23:06:26 +0000
2014-10-14T23:06:26.763241+00:00 app[web.1]: Started GET "/" for 1.39.15.57 at 2014-10-14 23:06:26 +0000
2014-10-14T23:06:26.766543+00:00 app[web.1]: Processing by StaticPagesController#home as HTML
2014-10-14T23:06:26.781914+00:00 app[web.1]: Rendered shared/_stats.html.erb (3.4ms)
2014-10-14T23:06:26.784432+00:00 app[web.1]: Rendered shared/_post_form.html.erb (2.4ms)
2014-10-14T23:06:26.766549+00:00 app[web.1]: Processing by StaticPagesController#home as HTML
2014-10-14T23:06:26.778344+00:00 app[web.1]: Rendered shared/_user_info.html.erb (3.3ms)
2014-10-14T23:06:26.782573+00:00 app[web.1]: Rendered shared/_error_messages.html.erb (0.0ms)
2014-10-14T23:06:26.781909+00:00 app[web.1]: Rendered shared/_stats.html.erb (3.4ms)
2014-10-14T23:06:26.782580+00:00 app[web.1]: Rendered shared/_error_messages.html.erb (0.0ms)
2014-10-14T23:06:26.778354+00:00 app[web.1]: Rendered shared/_user_info.html.erb (3.3ms)
2014-10-14T23:06:26.784437+00:00 app[web.1]: Rendered shared/_post_form.html.erb (2.4ms)
2014-10-14T23:06:26.791305+00:00 app[web.1]: Rendered shared/_read_feed_item.html.erb (0.8ms)
2014-10-14T23:06:26.791311+00:00 app[web.1]: Rendered shared/_read_feed_item.html.erb (0.8ms)
2014-10-14T23:06:26.791404+00:00 app[web.1]: Rendered shared/_read_feed.html.erb (6.9ms)
2014-10-14T23:06:26.791428+00:00 app[web.1]: Rendered shared/_read_feed.html.erb (6.9ms)
2014-10-14T23:06:26.791500+00:00 app[web.1]: Rendered static_pages/home.html.erb within layouts/application (16.7ms)
2014-10-14T23:06:26.791513+00:00 app[web.1]: Rendered static_pages/home.html.erb within layouts/application (16.7ms)
2014-10-14T23:06:26.792192+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.0ms)
2014-10-14T23:06:26.792197+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.0ms)
2014-10-14T23:06:26.793045+00:00 app[web.1]: Rendered layouts/_header.html.erb (0.7ms)
2014-10-14T23:06:26.793049+00:00 app[web.1]: Rendered layouts/_header.html.erb (0.7ms)
2014-10-14T23:06:26.793401+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.2ms)
2014-10-14T23:06:26.793405+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.2ms)
2014-10-14T23:06:26.793664+00:00 app[web.1]: Completed 200 OK in 27ms (Views: 11.1ms | ActiveRecord: 12.3ms)
2014-10-14T23:06:26.793682+00:00 app[web.1]: Completed 200 OK in 27ms (Views: 11.1ms | ActiveRecord: 12.3ms)
2014-10-14T23:06:27.478252+00:00 heroku[router]: at=info method=GET path="/assets/application-4962059d8f80f9bb096692bacc29c4e8.css" host=damp-reaches-6996.herokuapp.com request_id=c628aa70-0dd5-43b3-9458-1d5209e9e661 fwd="1.39.15.57" dyno=web.1 connect=0ms service=3ms status=304 bytes=178
2014-10-14T23:06:27.491930+00:00 heroku[router]: at=info method=GET path="/assets/application-eeb856e3fe2c8f879c91d0e81d59cb40.js" host=damp-reaches-6996.herokuapp.com request_id=1aa1b566-f4e9-4308-81c5-0d4e8aae380d fwd="1.39.15.57" dyno=web.1 connect=0ms service=2ms status=304 bytes=178
2014-10-14T23:06:52.439923+00:00 heroku[router]: at=info method=GET path="/posts/1" host=damp-reaches-6996.herokuapp.com request_id=29fd32a6-e5a1-41ef-beec-94de2295aff5 fwd="1.39.15.57" dyno=web.1 connect=2ms service=18ms status=304 bytes=501
2014-10-14T23:06:52.422856+00:00 app[web.1]: Started GET "/posts/1" for 1.39.15.57 at 2014-10-14 23:06:52 +0000
2014-10-14T23:06:52.422864+00:00 app[web.1]: Started GET "/posts/1" for 1.39.15.57 at 2014-10-14 23:06:52 +0000
2014-10-14T23:06:52.426098+00:00 app[web.1]: Processing by PostsController#show as JS
2014-10-14T23:06:52.426103+00:00 app[web.1]: Processing by PostsController#show as JS
2014-10-14T23:06:52.426132+00:00 app[web.1]: Parameters: {"id"=>"1"}
2014-10-14T23:06:52.426144+00:00 app[web.1]: Parameters: {"id"=>"1"}
2014-10-14T23:06:52.437167+00:00 app[web.1]: Rendered posts/show.js.erb (0.1ms)
2014-10-14T23:06:52.437352+00:00 app[web.1]: Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 7.9ms)
2014-10-14T23:06:52.437369+00:00 app[web.1]: Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 7.9ms)
2014-10-14T23:06:52.437163+00:00 app[web.1]: Rendered posts/show.js.erb (0.1ms)
2014-10-14T23:07:02.324334+00:00 heroku[router]: at=info method=GET path="/" host=damp-reaches-6996.herokuapp.com request_id=632df385-d68d-44bf-bf46-fba2285cc809 fwd="1.39.15.57" dyno=web.1 connect=0ms service=47ms status=200 bytes=4535
2014-10-14T23:07:02.301335+00:00 app[web.1]: Rendered shared/_user_info.html.erb (3.7ms)
2014-10-14T23:07:02.317921+00:00 app[web.1]: Rendered shared/_read_feed.html.erb (8.8ms)
2014-10-14T23:07:02.320446+00:00 app[web.1]: Completed 200 OK in 38ms (Views: 14.3ms | ActiveRecord: 19.4ms)
2014-10-14T23:07:02.320451+00:00 app[web.1]: Completed 200 OK in 38ms (Views: 14.3ms | ActiveRecord: 19.4ms)
2014-10-14T23:07:02.301344+00:00 app[web.1]: Rendered shared/_user_info.html.erb (3.7ms)
2014-10-14T23:07:02.317939+00:00 app[web.1]: Rendered shared/_read_feed.html.erb (8.8ms)
2014-10-14T23:07:02.279192+00:00 app[web.1]: Started GET "/" for 1.39.15.57 at 2014-10-14 23:07:02 +0000
2014-10-14T23:07:02.308929+00:00 app[web.1]: Rendered shared/_post_form.html.erb (2.9ms)
2014-10-14T23:07:02.318807+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.0ms)
2014-10-14T23:07:02.279203+00:00 app[web.1]: Started GET "/" for 1.39.15.57 at 2014-10-14 23:07:02 +0000
2014-10-14T23:07:02.308935+00:00 app[web.1]: Rendered shared/_post_form.html.erb (2.9ms)
2014-10-14T23:07:02.319779+00:00 app[web.1]: Rendered layouts/_header.html.erb (0.8ms)
2014-10-14T23:07:02.282586+00:00 app[web.1]: Processing by StaticPagesController#home as HTML
2014-10-14T23:07:02.317782+00:00 app[web.1]: Rendered shared/_read_feed_item.html.erb (0.9ms)
2014-10-14T23:07:02.320142+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.2ms)
2014-10-14T23:07:02.282637+00:00 app[web.1]: Processing by StaticPagesController#home as HTML
2014-10-14T23:07:02.317792+00:00 app[web.1]: Rendered shared/_read_feed_item.html.erb (0.9ms)
2014-10-14T23:07:02.320146+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.2ms)
2014-10-14T23:07:02.305783+00:00 app[web.1]: Rendered shared/_stats.html.erb (4.2ms)
2014-10-14T23:07:02.318057+00:00 app[web.1]: Rendered static_pages/home.html.erb within layouts/application (20.8ms)
2014-10-14T23:07:02.305790+00:00 app[web.1]: Rendered shared/_stats.html.erb (4.2ms)
2014-10-14T23:07:02.318022+00:00 app[web.1]: Rendered static_pages/home.html.erb within layouts/application (20.8ms)
2014-10-14T23:07:02.306634+00:00 app[web.1]: Rendered shared/_error_messages.html.erb (0.1ms)
2014-10-14T23:07:02.319766+00:00 app[web.1]: Rendered layouts/_header.html.erb (0.8ms)
2014-10-14T23:07:02.306638+00:00 app[web.1]: Rendered shared/_error_messages.html.erb (0.1ms)
2014-10-14T23:07:02.318811+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.0ms)
2014-10-14T23:07:03.107680+00:00 heroku[router]: at=info method=GET path="/assets/application-4962059d8f80f9bb096692bacc29c4e8.css" host=damp-reaches-6996.herokuapp.com request_id=2e2a27be-645d-4dbe-92d0-b941f6664925 fwd="1.39.15.57" dyno=web.1 connect=0ms service=7ms status=304 bytes=178
2014-10-14T23:07:03.127119+00:00 heroku[router]: at=info method=GET path="/assets/application-eeb856e3fe2c8f879c91d0e81d59cb40.js" host=damp-reaches-6996.herokuapp.com request_id=028e0c30-8d43-4d40-8adc-e684f40c3fdf fwd="1.39.15.57" dyno=web.1 connect=2ms service=6ms status=304 bytes=178
2014-10-14T23:07:04.011701+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=damp-reaches-6996.herokuapp.com request_id=2030d66a-e3c6-47d9-8dda-e5cc47be1c7c fwd="1.39.15.57" dyno=web.1 connect=1ms service=2ms status=304 bytes=178
2014-10-14T23:19:02.414813+00:00 heroku[router]: at=info method=POST path="/posts" host=damp-reaches-6996.herokuapp.com request_id=8f8de248-3e26-4820-9747-b4d794f33702 fwd="1.39.15.57" dyno=web.1 connect=2ms service=22ms status=302 bytes=1197
2014-10-14T23:19:02.398756+00:00 app[web.1]: Parameters: {"utf8"=>"✓", "authenticity_token"=>"thmJtAv2i01mqqOvbIk70AJcqjYOY7BTwSJrX+c/Eo0=", "post"=>{"content"=>"second post", "title"=>"watsup"}, "commit"=>"Post"}
2014-10-14T23:19:02.398770+00:00 app[web.1]: Parameters: {"utf8"=>"✓", "authenticity_token"=>"thmJtAv2i01mqqOvbIk70AJcqjYOY7BTwSJrX+c/Eo0=", "post"=>{"content"=>"second post", "title"=>"watsup"}, "commit"=>"Post"}
2014-10-14T23:19:02.412539+00:00 app[web.1]: Redirected to https://damp-reaches-6996.herokuapp.com/
2014-10-14T23:19:02.398718+00:00 app[web.1]: Processing by PostsController#create as HTML
2014-10-14T23:19:02.395421+00:00 app[web.1]: Started POST "/posts" for 1.39.15.57 at 2014-10-14 23:19:02 +0000
2014-10-14T23:19:02.412694+00:00 app[web.1]: Completed 302 Found in 14ms (ActiveRecord: 9.5ms)
2014-10-14T23:19:02.412533+00:00 app[web.1]: Redirected to https://damp-reaches-6996.herokuapp.com/
2014-10-14T23:19:02.398713+00:00 app[web.1]: Processing by PostsController#create as HTML
2014-10-14T23:19:02.412687+00:00 app[web.1]: Completed 302 Found in 14ms (ActiveRecord: 9.5ms)
2014-10-14T23:19:02.395414+00:00 app[web.1]: Started POST "/posts" for 1.39.15.57 at 2014-10-14 23:19:02 +0000
2014-10-14T23:19:02.778920+00:00 heroku[router]: at=info method=GET path="/" host=damp-reaches-6996.herokuapp.com request_id=fc42dea4-7afe-416f-a47b-b3fedd737e08 fwd="1.39.15.57" dyno=web.1 connect=2ms service=33ms status=500 bytes=1027
2014-10-14T23:19:02.767940+00:00 app[web.1]: Rendered shared/_stats.html.erb (3.6ms)
2014-10-14T23:19:02.774970+00:00 app[web.1]: Rendered shared/_read_feed.html.erb (4.2ms)
2014-10-14T23:19:02.777093+00:00 app[web.1]: : SELECT COUNT(*) FROM "posts" WHERE (posts.id = (SELECT id FROM posts))):
2014-10-14T23:19:02.777108+00:00 app[web.1]:
2014-10-14T23:19:02.777117+00:00 app[web.1]: app/views/shared/_read_feed.html.erb:1:in `_app_views_shared__read_feed_html_erb__2459553278755036137_21478460'
2014-10-14T23:19:02.751727+00:00 app[web.1]: Processing by StaticPagesController#home as HTML
2014-10-14T23:19:02.774337+00:00 app[web.1]: PG::Error: ERROR: more than one row returned by a subquery used as an expression
2014-10-14T23:19:02.775236+00:00 app[web.1]: Completed 500 Internal Server Error in 23ms
2014-10-14T23:19:02.777099+00:00 app[web.1]: 4: </ol>
2014-10-14T23:19:02.751737+00:00 app[web.1]: Processing by StaticPagesController#home as HTML
2014-10-14T23:19:02.774341+00:00 app[web.1]: : SELECT COUNT(*) FROM "posts" WHERE (posts.id = (SELECT id FROM posts))
2014-10-14T23:19:02.775239+00:00 app[web.1]: Completed 500 Internal Server Error in 23ms
2014-10-14T23:19:02.777100+00:00 app[web.1]: app/views/shared/_read_feed.html.erb:1:in `_app_views_shared__read_feed_html_erb__2459553278755036137_21478460'
2014-10-14T23:19:02.777114+00:00 app[web.1]: 3: <%= render partial: 'shared/read_feed_item', collection: @read_feed_items %>
2014-10-14T23:19:02.764119+00:00 app[web.1]: Rendered shared/_user_info.html.erb (3.8ms)
2014-10-14T23:19:02.774347+00:00 app[web.1]: : SELECT COUNT(*) FROM "posts" WHERE (posts.id = (SELECT id FROM posts))
2014-10-14T23:19:02.777092+00:00 app[web.1]: ActionView::Template::Error (PG::Error: ERROR: more than one row returned by a subquery used as an expression
2014-10-14T23:19:02.777103+00:00 app[web.1]:
2014-10-14T23:19:02.777115+00:00 app[web.1]: 4: </ol>
2014-10-14T23:19:02.764109+00:00 app[web.1]: Rendered shared/_user_info.html.erb (3.8ms)
2014-10-14T23:19:02.774346+00:00 app[web.1]: PG::Error: ERROR: more than one row returned by a subquery used as an expression
2014-10-14T23:19:02.777089+00:00 app[web.1]:
2014-10-14T23:19:02.777101+00:00 app[web.1]: app/views/static_pages/home.html.erb:16:in `_app_views_static_pages_home_html_erb__1799583688237809712_31370760'
2014-10-14T23:19:02.768702+00:00 app[web.1]: Rendered shared/_error_messages.html.erb (0.0ms)
2014-10-14T23:19:02.767933+00:00 app[web.1]: Rendered shared/_stats.html.erb (3.6ms)
2014-10-14T23:19:02.774966+00:00 app[web.1]: Rendered shared/_read_feed.html.erb (4.2ms)
2014-10-14T23:19:02.777104+00:00 app[web.1]:
2014-10-14T23:19:02.748722+00:00 app[web.1]: Started GET "/" for 1.39.15.57 at 2014-10-14 23:19:02 +0000
2014-10-14T23:19:02.770632+00:00 app[web.1]: Rendered shared/_post_form.html.erb (2.6ms)
2014-10-14T23:19:02.775058+00:00 app[web.1]: Rendered static_pages/home.html.erb within layouts/application (15.1ms)
2014-10-14T23:19:02.748733+00:00 app[web.1]: Started GET "/" for 1.39.15.57 at 2014-10-14 23:19:02 +0000
2014-10-14T23:19:02.770654+00:00 app[web.1]: Rendered shared/_post_form.html.erb (2.6ms)
2014-10-14T23:19:02.775077+00:00 app[web.1]: Rendered static_pages/home.html.erb within layouts/application (15.1ms)
2014-10-14T23:19:02.777097+00:00 app[web.1]: 3: <%= render partial: 'shared/read_feed_item', collection: @read_feed_items %>
2014-10-14T23:19:02.777113+00:00 app[web.1]: 2: <ol class="posts">
2014-10-14T23:19:02.768698+00:00 app[web.1]: Rendered shared/_error_messages.html.erb (0.0ms)
2014-10-14T23:19:02.777094+00:00 app[web.1]: 1: <% if @read_feed_items.any? %>
2014-10-14T23:19:02.777096+00:00 app[web.1]: 2: <ol class="posts">
2014-10-14T23:19:02.777109+00:00 app[web.1]: ActionView::Template::Error (PG::Error: ERROR: more than one row returned by a subquery used as an expression
2014-10-14T23:19:02.777110+00:00 app[web.1]: : SELECT COUNT(*) FROM "posts" WHERE (posts.id = (SELECT id FROM posts))):
2014-10-14T23:19:02.777112+00:00 app[web.1]: 1: <% if @read_feed_items.any? %>
2014-10-14T23:19:02.777118+00:00 app[web.1]: app/views/static_pages/home.html.erb:16:in `_app_views_static_pages_home_html_erb__1799583688237809712_31370760'
2014-10-14T23:19:02.777119+00:00 app[web.1]:
2014-10-14T23:19:02.777120+00:00 app[web.1]:
2014-10-14T23:19:03.762383+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=damp-reaches-6996.herokuapp.com request_id=91b79c23-ef1f-4ad3-8d06-82288264e92d fwd="1.39.15.57" dyno=web.1 connect=1ms service=4ms status=304 bytes=178
2014-10-14T23:25:15+00:00 heroku[slug-compiler]: Slug compilation started
2014-10-14T23:25:31.488301+00:00 heroku[api]: Release v9 created by [email protected]
2014-10-14T23:25:31+00:00 heroku[slug-compiler]: Slug compilation finished
2014-10-14T23:25:31.488256+00:00 heroku[api]: Deploy 759bcb1 by [email protected]
2014-10-14T23:25:31.690226+00:00 heroku[web.1]: State changed from up to starting
2014-10-14T23:25:33.964449+00:00 app[web.1]: [2014-10-14 23:25:33] ERROR SignalException: SIGTERM
2014-10-14T23:25:33.964456+00:00 app[web.1]: /app/vendor/ruby-1.9.3/lib/ruby/1.9.1/webrick/server.rb:98:in `select'
2014-10-14T23:25:34.718317+00:00 heroku[web.1]: Starting process with command `bin/rails server -p 58920 -e production`
2014-10-14T23:25:33.554817+00:00 heroku[web.1]: Stopping all processes with SIGTERM
2014-10-14T23:25:39.984476+00:00 app[web.1]: [2014-10-14 23:25:39] INFO WEBrick::HTTPServer#start: pid=2 port=58920
2014-10-14T23:25:39.982151+00:00 app[web.1]: [2014-10-14 23:25:39] INFO ruby 1.9.3 (2014-05-14) [x86_64-linux]
2014-10-14T23:25:39.982127+00:00 app[web.1]: [2014-10-14 23:25:39] INFO WEBrick 1.3.1
2014-10-14T23:25:40.105878+00:00 heroku[web.1]: State changed from starting to up
2014-10-14T23:25:43.885659+00:00 heroku[web.1]: Error R12 (Exit timeout) -> At least one process failed to exit within 10 seconds of SIGTERM
2014-10-14T23:25:43.885825+00:00 heroku[web.1]: Stopping remaining processes with SIGKILL
2014-10-14T23:25:44.945386+00:00 heroku[web.1]: Process exited with status 137
2014-10-14T23:25:46.653292+00:00 heroku[api]: Scale to web=1 by [email protected]
2014-10-14T23:26:09.543310+00:00 app[web.1]: => Booting WEBrick
2014-10-14T23:26:09.543317+00:00 app[web.1]: => Rails 4.0.8 application starting in production on http://0.0.0.0:58920
2014-10-14T23:26:09.543318+00:00 app[web.1]: => Run `rails server -h` for more startup options
2014-10-14T23:26:09.543320+00:00 app[web.1]: => Ctrl-C to shutdown server
2014-10-14T23:26:09.652050+00:00 app[web.1]: Processing by StaticPagesController#home as HTML
2014-10-14T23:26:09.543327+00:00 app[web.1]: Started GET "/" for 1.39.15.57 at 2014-10-14 23:26:09 +0000
2014-10-14T23:26:09.543321+00:00 app[web.1]: Started GET "/" for 1.39.15.57 at 2014-10-14 23:26:09 +0000
2014-10-14T23:26:09.652061+00:00 app[web.1]: Processing by StaticPagesController#home as HTML
2014-10-14T23:26:09.751073+00:00 app[web.1]: Rendered shared/_user_info.html.erb (11.9ms)
2014-10-14T23:26:09.751083+00:00 app[web.1]: Rendered shared/_user_info.html.erb (11.9ms)
2014-10-14T23:26:09.796110+00:00 app[web.1]: Rendered shared/_stats.html.erb (44.3ms)
2014-10-14T23:26:09.800564+00:00 app[web.1]: Rendered shared/_error_messages.html.erb (0.5ms)
2014-10-14T23:26:09.796120+00:00 app[web.1]: Rendered shared/_stats.html.erb (44.3ms)
2014-10-14T23:26:09.800572+00:00 app[web.1]: Rendered shared/_error_messages.html.erb (0.5ms)
2014-10-14T23:26:10.099857+00:00 heroku[router]: at=info method=GET path="/" host=damp-reaches-6996.herokuapp.com request_id=e39cc849-38c0-4502-a9d3-639ce7b42cad fwd="1.39.15.57" dyno=web.1 connect=4ms service=560ms status=200 bytes=4862
2014-10-14T23:26:10.082585+00:00 app[web.1]: Rendered static_pages/home.html.erb within layouts/application (344.8ms)
2014-10-14T23:26:10.090245+00:00 app[web.1]: Completed 200 OK in 438ms (Views: 301.1ms | ActiveRecord: 77.6ms)
2014-10-14T23:26:10.082659+00:00 app[web.1]: Rendered static_pages/home.html.erb within layouts/application (344.8ms)
2014-10-14T23:26:10.085852+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.4ms)
2014-10-14T23:26:10.068532+00:00 app[web.1]: Rendered shared/_post_form.html.erb (271.6ms)
2014-10-14T23:26:10.087916+00:00 app[web.1]: Rendered layouts/_header.html.erb (1.5ms)
2014-10-14T23:26:10.068540+00:00 app[web.1]: Rendered shared/_post_form.html.erb (271.6ms)
2014-10-14T23:26:10.090286+00:00 app[web.1]: Completed 200 OK in 438ms (Views: 301.1ms | ActiveRecord: 77.6ms)
2014-10-14T23:26:10.082046+00:00 app[web.1]: Rendered shared/_read_feed_item.html.erb (4.1ms)
2014-10-14T23:26:10.087922+00:00 app[web.1]: Rendered layouts/_header.html.erb (1.5ms)
2014-10-14T23:26:10.082059+00:00 app[web.1]: Rendered shared/_read_feed_item.html.erb (4.1ms)
2014-10-14T23:26:10.082394+00:00 app[web.1]: Rendered shared/_read_feed.html.erb (13.1ms)
2014-10-14T23:26:10.089888+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.9ms)
2014-10-14T23:26:10.085844+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.4ms)
2014-10-14T23:26:10.082401+00:00 app[web.1]: Rendered shared/_read_feed.html.erb (13.1ms)
2014-10-14T23:26:10.089789+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.9ms)
2014-10-14T23:26:10.773297+00:00 heroku[router]: at=info method=GET path="/assets/application-eeb856e3fe2c8f879c91d0e81d59cb40.js" host=damp-reaches-6996.herokuapp.com request_id=5b93c74b-1421-4c53-9be3-1e97edae3f0f fwd="1.39.15.57" dyno=web.1 connect=1ms service=23ms status=200 bytes=364246
2014-10-14T23:26:10.859879+00:00 heroku[router]: at=info method=GET path="/assets/application-4962059d8f80f9bb096692bacc29c4e8.css" host=damp-reaches-6996.herokuapp.com request_id=2174a93a-b0f6-433c-a146-c9ef2af5467c fwd="1.39.15.57" dyno=web.1 connect=30ms service=26ms status=200 bytes=134516
2014-10-14T23:26:19.968169+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=damp-reaches-6996.herokuapp.com request_id=d47c54d4-1bf0-43c2-8c3a-3f26017f6432 fwd="1.39.15.57" dyno=web.1 connect=1ms service=11ms status=200 bytes=273
2014-10-14T23:26:27.313237+00:00 app[web.1]: Completed 500 Internal Server Error in 64ms
2014-10-14T23:26:27.314891+00:00 app[web.1]: 3: $('#unread_count').html('<%= @post_count - @user.readings.count %>');
2014-10-14T23:26:27.314914+00:00 app[web.1]: app/controllers/posts_controller.rb:25:in `show'
2014-10-14T23:26:27.246296+00:00 app[web.1]: Started GET "/posts/2" for 1.39.15.57 at 2014-10-14 23:26:27 +0000
2014-10-14T23:26:27.314883+00:00 app[web.1]:
2014-10-14T23:26:27.314916+00:00 app[web.1]:
2014-10-14T23:26:27.249251+00:00 app[web.1]: Parameters: {"id"=>"2"}
2014-10-14T23:26:27.314893+00:00 app[web.1]: app/views/posts/show.js.erb:2:in `_app_views_posts_show_js_erb___4464270930770474630_44403720'
2014-10-14T23:26:27.314908+00:00 app[web.1]: 2: $('#read_count').html('<%= @user.readings.count %>');
2014-10-14T23:26:27.313254+00:00 app[web.1]: Completed 500 Internal Server Error in 64ms
2014-10-14T23:26:27.314895+00:00 app[web.1]: app/controllers/posts_controller.rb:26:in `block (2 levels) in show'
2014-10-14T23:26:27.314911+00:00 app[web.1]: app/views/posts/show.js.erb:2:in `_app_views_posts_show_js_erb___4464270930770474630_44403720'
2014-10-14T23:26:27.246289+00:00 app[web.1]: Started GET "/posts/2" for 1.39.15.57 at 2014-10-14 23:26:27 +0000
2014-10-14T23:26:27.314887+00:00 app[web.1]: ActionView::Template::Error (undefined method `readings' for nil:NilClass):
2014-10-14T23:26:27.314906+00:00 app[web.1]: 1: $('#content_<%= params[:id] %>').show();
2014-10-14T23:26:27.249183+00:00 app[web.1]: Processing by PostsController#show as JS
2014-10-14T23:26:27.314888+00:00 app[web.1]: 1: $('#content_<%= params[:id] %>').show();
2014-10-14T23:26:27.313123+00:00 app[web.1]: Rendered posts/show.js.erb (1.1ms)
2014-10-14T23:26:27.314890+00:00 app[web.1]: 2: $('#read_count').html('<%= @user.readings.count %>');
2014-10-14T23:26:27.314913+00:00 app[web.1]: app/controllers/posts_controller.rb:26:in `block (2 levels) in show'
2014-10-14T23:26:27.313134+00:00 app[web.1]: Rendered posts/show.js.erb (1.1ms)
2014-10-14T23:26:27.314909+00:00 app[web.1]: 3: $('#unread_count').html('<%= @post_count - @user.readings.count %>');
2014-10-14T23:26:27.249205+00:00 app[web.1]: Processing by PostsController#show as JS
2014-10-14T23:26:27.314896+00:00 app[web.1]: app/controllers/posts_controller.rb:25:in `show'
2014-10-14T23:26:27.314898+00:00 app[web.1]:
2014-10-14T23:26:27.314899+00:00 app[web.1]:
2014-10-14T23:26:27.314904+00:00 app[web.1]:
2014-10-14T23:26:27.314917+00:00 app[web.1]:
2014-10-14T23:26:27.249234+00:00 app[web.1]: Parameters: {"id"=>"2"}
2014-10-14T23:26:27.314905+00:00 app[web.1]: ActionView::Template::Error (undefined method `readings' for nil:NilClass):
2014-10-14T23:26:27.316667+00:00 heroku[router]: at=info method=GET path="/posts/2" host=damp-reaches-6996.herokuapp.com request_id=b5666a2d-0727-4e19-b487-5f083b4c4fb5 fwd="1.39.15.57" dyno=web.1 connect=1ms service=73ms status=500 bytes=1027
2014-10-14T23:26:34.633605+00:00 heroku[router]: at=info method=GET path="/assets/application-4962059d8f80f9bb096692bacc29c4e8.css" host=damp-reaches-6996.herokuapp.com request_id=37ac4d06-efa7-450e-a2d9-41c94acc321d fwd="1.39.15.57" dyno=web.1 connect=1ms service=6ms status=304 bytes=178
2014-10-14T23:26:44.568380+00:00 heroku[router]: at=info method=GET path="/posts/1" host=damp-reaches-6996.herokuapp.com request_id=77429f82-1284-4fc6-adcd-a98ede039e5c fwd="1.39.15.57" dyno=web.1 connect=1ms service=34ms status=500 bytes=1027
2014-10-14T23:26:44.544419+00:00 app[web.1]: Processing by PostsController#show as JS
2014-10-14T23:26:44.566024+00:00 app[web.1]: app/views/posts/show.js.erb:2:in `_app_views_posts_show_js_erb___4464270930770474630_44403720'
2014-10-14T23:26:44.566065+00:00 app[web.1]: 3: $('#unread_count').html('<%= @post_count - @user.readings.count %>');
2014-10-14T23:26:44.544430+00:00 app[web.1]: Processing by PostsController#show as JS
2014-10-14T23:26:44.566030+00:00 app[web.1]:
2014-10-14T23:26:44.566072+00:00 app[web.1]:
2014-10-14T23:26:44.564097+00:00 app[web.1]: Rendered posts/show.js.erb (0.8ms)
2014-10-14T23:26:44.566028+00:00 app[web.1]:
2014-10-14T23:26:44.566062+00:00 app[web.1]: 1: $('#content_<%= params[:id] %>').show();
2014-10-14T23:26:44.564214+00:00 app[web.1]: Completed 500 Internal Server Error in 20ms
2014-10-14T23:26:44.566034+00:00 app[web.1]:
2014-10-14T23:26:44.564108+00:00 app[web.1]: Rendered posts/show.js.erb (0.8ms)
2014-10-14T23:26:44.566017+00:00 app[web.1]: ActionView::Template::Error (undefined method `readings' for nil:NilClass):
2014-10-14T23:26:44.566022+00:00 app[web.1]: 3: $('#unread_count').html('<%= @post_count - @user.readings.count %>');
2014-10-14T23:26:44.566071+00:00 app[web.1]:
2014-10-14T23:26:44.564234+00:00 app[web.1]: Completed 500 Internal Server Error in 20ms
2014-10-14T23:26:44.566061+00:00 app[web.1]: ActionView::Template::Error (undefined method `readings' for nil:NilClass):
2014-10-14T23:26:44.538469+00:00 app[web.1]: Started GET "/posts/1" for 1.39.15.57 at 2014-10-14 23:26:44 +0000
2014-10-14T23:26:44.566021+00:00 app[web.1]: 2: $('#read_count').html('<%= @user.readings.count %>');
2014-10-14T23:26:44.566064+00:00 app[web.1]: 2: $('#read_count').html('<%= @user.readings.count %>');
2014-10-14T23:26:44.538463+00:00 app[web.1]: Started GET "/posts/1" for 1.39.15.57 at 2014-10-14 23:26:44 +0000
2014-10-14T23:26:44.566014+00:00 app[web.1]:
2014-10-14T23:26:44.566019+00:00 app[web.1]: 1: $('#content_<%= params[:id] %>').show();
2014-10-14T23:26:44.566070+00:00 app[web.1]: app/controllers/posts_controller.rb:25:in `show'
2014-10-14T23:26:44.544432+00:00 app[web.1]: Parameters: {"id"=>"1"}
2014-10-14T23:26:44.566025+00:00 app[web.1]: app/controllers/posts_controller.rb:26:in `block (2 levels) in show'
2014-10-14T23:26:44.566067+00:00 app[web.1]: app/views/posts/show.js.erb:2:in `_app_views_posts_show_js_erb___4464270930770474630_44403720'
2014-10-14T23:26:44.544433+00:00 app[web.1]: Parameters: {"id"=>"1"}
2014-10-14T23:26:44.566027+00:00 app[web.1]: app/controllers/posts_controller.rb:25:in `show'
2014-10-14T23:26:44.566068+00:00 app[web.1]: app/controllers/posts_controller.rb:26:in `block (2 levels) in show'
2014-10-14T23:56:43+00:00 heroku[slug-compiler]: Slug compilation started
2014-10-14T23:57:00.146685+00:00 heroku[api]: Deploy e1357a1 by [email protected]
2014-10-14T23:57:00.146732+00:00 heroku[api]: Release v10 created by [email protected]
2014-10-14T23:57:00+00:00 heroku[slug-compiler]: Slug compilation finished
2014-10-14T23:57:00.418999+00:00 heroku[web.1]: State changed from up to starting
2014-10-14T23:57:03.894271+00:00 heroku[web.1]: Stopping all processes with SIGTERM
2014-10-14T23:57:04.285754+00:00 heroku[web.1]: Starting process with command `bin/rails server -p 4102 -e production`
2014-10-14T23:57:04.616762+00:00 app[web.1]: /app/vendor/ruby-1.9.3/lib/ruby/1.9.1/webrick/server.rb:98:in `select'
2014-10-14T23:57:04.616757+00:00 app[web.1]: [2014-10-14 23:57:04] ERROR SignalException: SIGTERM
2014-10-14T23:57:09.626459+00:00 app[web.1]: [2014-10-14 23:57:09] INFO WEBrick 1.3.1
2014-10-14T23:57:09.627123+00:00 app[web.1]: [2014-10-14 23:57:09] INFO WEBrick::HTTPServer#start: pid=2 port=4102
2014-10-14T23:57:09.626551+00:00 app[web.1]: [2014-10-14 23:57:09] INFO ruby 1.9.3 (2014-05-14) [x86_64-linux]
2014-10-14T23:57:10.027023+00:00 heroku[web.1]: State changed from starting to up
2014-10-14T23:57:14.349117+00:00 heroku[web.1]: Stopping remaining processes with SIGKILL
2014-10-14T23:57:14.348917+00:00 heroku[web.1]: Error R12 (Exit timeout) -> At least one process failed to exit within 10 seconds of SIGTERM
2014-10-14T23:57:15.875630+00:00 heroku[web.1]: Process exited with status 137
2014-10-14T23:57:31.131049+00:00 heroku[api]: Scale to web=1 by [email protected]
2014-10-14T23:57:42.088017+00:00 app[web.1]: => Booting WEBrick
2014-10-14T23:57:42.261386+00:00 app[web.1]: Rendered shared/_stats.html.erb (11.8ms)
2014-10-14T23:57:42.088023+00:00 app[web.1]: => Rails 4.0.8 application starting in production on http://0.0.0.0:4102
2014-10-14T23:57:42.088025+00:00 app[web.1]: => Run `rails server -h` for more startup options
2014-10-14T23:57:42.264344+00:00 app[web.1]: Rendered shared/_error_messages.html.erb (0.4ms)
2014-10-14T23:57:42.088027+00:00 app[web.1]: => Ctrl-C to shutdown server
2014-10-14T23:57:42.148571+00:00 app[web.1]: Processing by StaticPagesController#home as HTML
2014-10-14T23:57:42.088074+00:00 app[web.1]: Started GET "/" for 1.39.15.57 at 2014-10-14 23:57:42 +0000
2014-10-14T23:57:42.264339+00:00 app[web.1]: Rendered shared/_error_messages.html.erb (0.4ms)
2014-10-14T23:57:42.088028+00:00 app[web.1]: Started GET "/" for 1.39.15.57 at 2014-10-14 23:57:42 +0000
2014-10-14T23:57:42.261399+00:00 app[web.1]: Rendered shared/_stats.html.erb (11.8ms)
2014-10-14T23:57:42.148579+00:00 app[web.1]: Processing by StaticPagesController#home as HTML
2014-10-14T23:57:42.248804+00:00 app[web.1]: Rendered shared/_user_info.html.erb (11.5ms)
2014-10-14T23:57:42.248790+00:00 app[web.1]: Rendered shared/_user_info.html.erb (11.5ms)
2014-10-14T23:57:42.594247+00:00 heroku[router]: at=info method=GET path="/" host=damp-reaches-6996.herokuapp.com request_id=6ff19f2d-5253-4f6e-887d-e1f1ad83238c fwd="1.39.15.57" dyno=web.1 connect=2ms service=512ms status=200 bytes=4817
2014-10-14T23:57:42.571128+00:00 app[web.1]: Rendered shared/_post_form.html.erb (308.9ms)
2014-10-14T23:57:42.583730+00:00 app[web.1]: Rendered shared/_read_feed.html.erb (11.6ms)
2014-10-14T23:57:42.571202+00:00 app[web.1]: Rendered shared/_post_form.html.erb (308.9ms)
2014-10-14T23:57:42.583574+00:00 app[web.1]: Rendered shared/_read_feed_item.html.erb (2.3ms)
2014-10-14T23:57:42.583839+00:00 app[web.1]: Rendered static_pages/home.html.erb within layouts/application (347.9ms)
2014-10-14T23:57:42.583867+00:00 app[web.1]: Rendered static_pages/home.html.erb within layouts/application (347.9ms)
2014-10-14T23:57:42.583712+00:00 app[web.1]: Rendered shared/_read_feed.html.erb (11.6ms)
2014-10-14T23:57:42.586626+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.3ms)
2014-10-14T23:57:42.586637+00:00 app[web.1]: Rendered layouts/_shim.html.erb (0.3ms)
2014-10-14T23:57:42.583504+00:00 app[web.1]: Rendered shared/_read_feed_item.html.erb (2.3ms)
2014-10-14T23:57:42.588917+00:00 app[web.1]: Rendered layouts/_header.html.erb (1.6ms)
2014-10-14T23:57:42.589026+00:00 app[web.1]: Rendered layouts/_header.html.erb (1.6ms)
2014-10-14T23:57:42.590967+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.9ms)
2014-10-14T23:57:42.590972+00:00 app[web.1]: Rendered layouts/_footer.html.erb (0.9ms)
2014-10-14T23:57:42.591360+00:00 app[web.1]: Completed 200 OK in 443ms (Views: 336.0ms | ActiveRecord: 52.9ms)
2014-10-14T23:57:42.591364+00:00 app[web.1]: Completed 200 OK in 443ms (Views: 336.0ms | ActiveRecord: 52.9ms)
2014-10-14T23:57:43.318430+00:00 heroku[router]: at=info method=GET path="/assets/application-4962059d8f80f9bb096692bacc29c4e8.css" host=damp-reaches-6996.herokuapp.com request_id=3e1d5904-b621-4b4b-a99f-36d6790926ac fwd="1.39.15.57" dyno=web.1 connect=1ms service=15ms status=200 bytes=134516
2014-10-14T23:57:43.346461+00:00 heroku[router]: at=info method=GET path="/assets/application-eeb856e3fe2c8f879c91d0e81d59cb40.js" host=damp-reaches-6996.herokuapp.com request_id=bd250234-76c8-4e49-b17d-d44477de7776 fwd="1.39.15.57" dyno=web.1 connect=1ms service=28ms status=200 bytes=364246
2014-10-14T23:57:46.208234+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=damp-reaches-6996.herokuapp.com request_id=2968c197-fbde-4423-aa31-bd76a10b05a5 fwd="1.39.15.57" dyno=web.1 connect=3ms service=5ms status=200 bytes=273
2014-10-14T23:57:55.342563+00:00 heroku[router]: at=info method=GET path="/posts/1" host=damp-reaches-6996.herokuapp.com request_id=a00aa50d-1860-4dec-84af-5e90b928374f fwd="1.39.15.57" dyno=web.1 connect=3ms service=63ms status=200 bytes=638
2014-10-14T23:57:55.281266+00:00 app[web.1]: Started GET "/posts/1" for 1.39.15.57 at 2014-10-14 23:57:55 +0000
2014-10-14T23:57:55.338770+00:00 app[web.1]: Completed 200 OK in 54ms (Views: 2.0ms | ActiveRecord: 11.7ms)
2014-10-14T23:57:55.284622+00:00 app[web.1]: Parameters: {"id"=>"1"}
2014-10-14T23:57:55.338508+00:00 app[web.1]: Rendered posts/show.js.erb (0.6ms)
2014-10-14T23:57:55.284578+00:00 app[web.1]: Processing by PostsController#show as JS
2014-10-14T23:57:55.281277+00:00 app[web.1]: Started GET "/posts/1" for 1.39.15.57 at 2014-10-14 23:57:55 +0000
2014-10-14T23:57:55.338765+00:00 app[web.1]: Completed 200 OK in 54ms (Views: 2.0ms | ActiveRecord: 11.7ms)
2014-10-14T23:57:55.284584+00:00 app[web.1]: Processing by PostsController#show as JS
2014-10-14T23:57:55.338519+00:00 app[web.1]: Rendered posts/show.js.erb (0.6ms)
2014-10-14T23:57:55.284607+00:00 app[web.1]: Parameters: {"id"=>"1"}
2014-10-14T23:58:01.732439+00:00 heroku[router]: at=info method=GET path="/posts/2" host=damp-reaches-6996.herokuapp.com request_id=97441418-0b32-4b5d-90a0-d0444b4729a2 fwd="1.39.15.57" dyno=web.1 connect=2ms service=40ms status=200 bytes=638
2014-10-14T23:58:01.704402+00:00 app[web.1]: Parameters: {"id"=>"2"}
2014-10-14T23:58:01.704167+00:00 app[web.1]: Processing by PostsController#show as JS
2014-10-14T23:58:01.704206+00:00 app[web.1]: Parameters: {"id"=>"2"}
2014-10-14T23:58:01.727106+00:00 app[web.1]: Rendered posts/show.js.erb (0.2ms)
2014-10-14T23:58:01.704154+00:00 app[web.1]: Processing by PostsController#show as JS
2014-10-14T23:58:01.698671+00:00 app[web.1]: Started GET "/posts/2" for 1.39.15.57 at 2014-10-14 23:58:01 +0000
2014-10-14T23:58:01.698665+00:00 app[web.1]: Started GET "/posts/2" for 1.39.15.57 at 2014-10-14 23:58:01 +0000
2014-10-14T23:58:01.727491+00:00 app[web.1]: Completed 200 OK in 23ms (Views: 1.3ms | ActiveRecord: 7.9ms)
2014-10-14T23:58:01.727116+00:00 app[web.1]: Rendered posts/show.js.erb (0.2ms)
2014-10-14T23:58:01.727432+00:00 app[web.1]: Completed 200 OK in 23ms (Views: 1.3ms | ActiveRecord: 7.9ms)
2014-10-14T23:58:55.868309+00:00 heroku[router]: at=info method=POST path="/posts" host=damp-reaches-6996.herokuapp.com request_id=7c506fa8-5b04-4b30-ac7e-0f19456c4da6 fwd="1.39.15.57" dyno=web.1 connect=6ms service=27ms status=302 bytes=1197
2014-10-14T23:58:55.863019+00:00 app[web.1]: Redirected to https://damp-reaches-6996.herokuapp.com/
2014-10-14T23:58:55.863211+00:00 app[web.1]: Completed 302 Found in 14ms (ActiveRecord: 7.3ms)
2014-10-14T23:58:55.848988+00:00 app[web.1]: Parameters: {"utf8"=>"✓", "authenticity_token"=>"6DDmclbYAbUs5OUn7DsUdNJDqJU2et3pdm/Qaf1DhXE=", "post"=>{"content"=>"kkkkk", "title"=>"third post"}, "commit"=>"Post"}
2014-10-14T23:58:55.845688+00:00 app[web.1]: Started POST "/posts" for 1.39.15.57 at 2014-10-14 23:58:55 +0000
2014-10-14T23:58:55.863235+00:00 app[web.1]: Completed 302 Found in 14ms (ActiveRecord: 7.3ms)