-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexample.log.1
1487 lines (1429 loc) · 299 KB
/
example.log.1
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
DEBUG qtp1253731231-21 org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=11,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=5/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=11,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-21 org.eclipse.jetty.io.FillInterest - interested FillInterest@1e4ce592{AC.ReadCB@29e1bc91{HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=11,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=0/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=11,c=false,a=IDLE,uri=null}}}
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=0/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=11,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ManagedSelector - Queued change CEP:SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=0/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=11,c=false,a=IDLE,uri=null}:runUpdateKey:NON_BLOCKING on org.eclipse.jetty.io.ManagedSelector@77853773 id=1 keys=1 selected=0 actions=0
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpConnection - HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=11,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=1/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=11,c=false,a=IDLE,uri=null} onFillable exit HttpChannelState@29862f31{s=IDLE a=NOT_ASYNC i=true r=IDLE w=false} null
DEBUG qtp1253731231-21 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@21e220eb{s=3/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}@2c9f20c4 waiting
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@1cb8eb53 woken up from select, 0/1 selected
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@1cb8eb53 processing 0 keys, 1 actions
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ManagedSelector - action=CEP:SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=2/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=11,c=false,a=IDLE,uri=null}:runUpdateKey:NON_BLOCKING wakeup=false
DEBUG qtp1253731231-19 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/PRODUCING/ReservedThreadExecutor@21e220eb{s=3/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} t=CEP:SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=3/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=11,c=false,a=IDLE,uri=null}:runUpdateKey:NON_BLOCKING/NON_BLOCKING
DEBUG qtp1253731231-19 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/PRODUCING/ReservedThreadExecutor@21e220eb{s=3/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} PC t=CEP:SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=3/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=11,c=false,a=IDLE,uri=null}:runUpdateKey:NON_BLOCKING
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=3/3600000}{io=1/1,kio=1,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=11,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ManagedSelector - Forcing selection, actions=0
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ManagedSelector - action=null wakeup=false
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@1cb8eb53 waiting on select
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@1cb8eb53 woken up from select, 1/1 selected
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@1cb8eb53 processing 1 keys, 0 actions
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ManagedSelector - selected channel=java.nio.channels.SocketChannel[connected local=/[0:0:0:0:0:0:0:1]:4567 remote=/[0:0:0:0:0:0:0:1]:50736], selector=sun.nio.ch.KQueueSelectorImpl@1cb8eb53, interestOps=1, readyOps=1 SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=4/3600000}{io=1/1,kio=1,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=11,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=5/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=11,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ChannelEndPoint - task CEP:SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=5/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=11,c=false,a=IDLE,uri=null}:runFillable:BLOCKING
DEBUG qtp1253731231-19 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/PRODUCING/ReservedThreadExecutor@21e220eb{s=3/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} t=CEP:SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=5/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=11,c=false,a=IDLE,uri=null}:runFillable:BLOCKING/BLOCKING
DEBUG qtp1253731231-19 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@21e220eb{s=3/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} tryExecute EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/PRODUCING/ReservedThreadExecutor@21e220eb{s=3/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
DEBUG qtp1253731231-19 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@21e220eb{s=2/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}@2c9f20c4 offer EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/PRODUCING/ReservedThreadExecutor@21e220eb{s=2/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
DEBUG qtp1253731231-21 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@21e220eb{s=2/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}@2c9f20c4 task=EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/IDLE/ReservedThreadExecutor@21e220eb{s=2/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
DEBUG qtp1253731231-19 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/IDLE/ReservedThreadExecutor@21e220eb{s=2/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} EPC t=CEP:SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=6/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=11,c=false,a=IDLE,uri=null}:runFillable:BLOCKING
DEBUG qtp1253731231-21 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/IDLE/ReservedThreadExecutor@21e220eb{s=2/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} run
DEBUG qtp1253731231-19 org.eclipse.jetty.io.FillInterest - fillable FillInterest@1e4ce592{AC.ReadCB@29e1bc91{HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=11,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=6/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=11,c=false,a=IDLE,uri=null}}}
DEBUG qtp1253731231-21 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/IDLE/ReservedThreadExecutor@21e220eb{s=2/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} produce
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ManagedSelector - action=null wakeup=false
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=11,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=7/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=11,c=false,a=IDLE,uri=null} onFillable enter HttpChannelState@29862f31{s=IDLE a=NOT_ASYNC i=true r=IDLE w=false} null
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=7/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=11,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@1cb8eb53 waiting on select
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ChannelEndPoint - filled 683 SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=7/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=11,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=11,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=0/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=11,c=false,a=IDLE,uri=null} filled 683 HeapByteBuffer@17948da9[p=0,l=683,c=8192,r=683]={<<<GET /schedule HTT...j4ti0.node0\r\n\r\n>>>\nAccept-Language:...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=11,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=1/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=11,c=false,a=IDLE,uri=null} parse HeapByteBuffer@17948da9[p=0,l=683,c=8192,r=683]={<<<GET /schedule HTT...j4ti0.node0\r\n\r\n>>>\nAccept-Language:...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} {}
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@17948da9[p=0,l=683,c=8192,r=683]={<<<GET /schedule HTT...j4ti0.node0\r\n\r\n>>>\nAccept-Language:...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - START --> SPACE1
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - SPACE1 --> URI
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - URI --> SPACE2
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:4567 --> IN_VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:4567 --> FIELD
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:Cache-Control: max-age=0 --> IN_VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:Cache-Control: max-age=0 --> FIELD
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_NAME
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.113 Safari/537.36 --> IN_VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.113 Safari/537.36 --> FIELD
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9 --> IN_VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9 --> FIELD
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_NAME
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_NAME
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_NAME
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_NAME
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:Accept-Encoding: gzip, deflate, br --> IN_VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:Accept-Encoding: gzip, deflate, br --> FIELD
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:Accept-Language: en-GB,en-US;q=0.9,en;q=0.8 --> IN_VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:Accept-Language: en-GB,en-US;q=0.9,en;q=0.8 --> FIELD
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:Cookie: JSESSIONID=node019xsn66kh0xw7ttj925s1j4ti0.node0 --> IN_VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:Cookie: JSESSIONID=node019xsn66kh0xw7ttj925s1j4ti0.node0 --> FIELD
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER --> END
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:4567/schedule on HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=//localhost:4567/schedule}
GET //localhost:4567/schedule HTTP/1.1
Host: localhost:4567
Connection: keep-alive
Cache-Control: max-age=0
Upgrade-Insecure-Requests: 1
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.113 Safari/537.36
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9
Sec-Fetch-Site: same-origin
Sec-Fetch-Mode: navigate
Sec-Fetch-User: ?1
Sec-Fetch-Dest: document
Referer: http://localhost:4567/entertainment
Accept-Encoding: gzip, deflate, br
Accept-Language: en-GB,en-US;q=0.9,en;q=0.8
Cookie: JSESSIONID=node019xsn66kh0xw7ttj925s1j4ti0.node0
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannel - HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=//localhost:4567/schedule} onContentComplete
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannel - HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=//localhost:4567/schedule} onRequestComplete
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@9111125[c=0,q=0,[0]=null,s=STREAM] addContent EOF
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - HttpConnection@29e1bc91[p=HttpParser{s=END,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=//localhost:4567/schedule}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=6/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=END,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=//localhost:4567/schedule} parsed true HttpParser{s=END,0 of -1}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@29e1bc91[p=HttpParser{s=END,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=//localhost:4567/schedule}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=7/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=END,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=//localhost:4567/schedule}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannel - HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=//localhost:4567/schedule} handle //localhost:4567/schedule
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@29862f31{s=IDLE a=NOT_ASYNC i=true r=IDLE w=false}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannel - HttpChannelOverHttp@43c06af9{r=12,c=false,a=DISPATCHED,uri=//localhost:4567/schedule} action DISPATCH
DEBUG qtp1253731231-19 org.eclipse.jetty.server.Server - REQUEST GET /schedule on HttpChannelOverHttp@43c06af9{r=12,c=false,a=DISPATCHED,uri=//localhost:4567/schedule}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.session - Got Session ID node019xsn66kh0xw7ttj925s1j4ti0.node0 from cookie
DEBUG qtp1253731231-19 org.eclipse.jetty.server.session - Testing expiry on session node019xsn66kh0xw7ttj925s1j4ti0: expires at 0 now 1587640063975 maxIdle -1
DEBUG qtp1253731231-19 org.eclipse.jetty.server.session - Testing expiry on session node019xsn66kh0xw7ttj925s1j4ti0: expires at 0 now 1587640063975 maxIdle -1
DEBUG qtp1253731231-19 org.eclipse.jetty.server.session - sessionHandler=spark.embeddedserver.jetty.JettyHandler1375427324==dftMaxIdleSec=-1
DEBUG qtp1253731231-19 org.eclipse.jetty.server.session - session=org.eclipse.jetty.server.session.Session@6a302269
DEBUG qtp1253731231-19 org.sql2o.Query - total: 2 ms, execution: 2 ms, reading and parsing: 0 ms; executed [null]
DEBUG qtp1253731231-19 org.sql2o.Query - total: 2 ms, execution: 2 ms, reading and parsing: 0 ms; executed [null]
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@6f264af0[p=0,l=1950,c=32768,r=1950]={<<<\n<!DOCTYPE html>\n...</body>\n</html>>>>ia (max-width: 60...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@7663106b{null}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannel - COMMIT for /schedule on HttpChannelOverHttp@43c06af9{r=12,c=true,a=DISPATCHED,uri=//localhost:4567/schedule}
200 null HTTP/1.1
Date: Thu, 23 Apr 2020 11:07:43 GMT
Content-Type: text/html;charset=utf-8
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - org.eclipse.jetty.server.HttpConnection$SendCallback@25b112da[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$CommitCallback@2afd1779] generate: NEED_HEADER (null,[p=0,l=1950,c=32768,r=1950],false)@START
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=2,cl=-1} last=false content=DirectByteBuffer@6f264af0[p=0,l=1950,c=32768,r=1950]={<<<\n<!DOCTYPE html>\n...</body>\n</html>>>>ia (max-width: 60...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpGenerator - Date: Thu, 23 Apr 2020 11:07:43 GMT
Content-Type: text/html;charset=utf-8
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - org.eclipse.jetty.server.HttpConnection$SendCallback@25b112da[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$CommitCallback@2afd1779] generate: FLUSH ([p=0,l=160,c=8192,r=160],[p=0,l=1950,c=32768,r=1950],false)@COMMITTED
DEBUG qtp1253731231-19 org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@12630a5a{IDLE}->null [HeapByteBuffer@17948da9[p=0,l=160,c=8192,r=160]={<<<HTTP/1.1 200 OK\r\n...71121)\r\n\r\n79E\r\n>>>; Intel Mac OS X ...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@6f264af0[p=0,l=1950,c=32768,r=1950]={<<<\n<!DOCTYPE html>\n...</body>\n</html>>>>ia (max-width: 60...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}]
DEBUG qtp1253731231-19 org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@12630a5a{WRITING}->null:IDLE-->WRITING
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ChannelEndPoint - flushed 2110 SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=W,to=49/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=END,0 of -1},g=HttpGenerator@2b5b7332{s=COMMITTED}]=>HttpChannelOverHttp@43c06af9{r=12,c=true,a=DISPATCHED,uri=//localhost:4567/schedule}
DEBUG qtp1253731231-19 org.eclipse.jetty.io.WriteFlusher - Flushed=true 160/160+1 WriteFlusher@12630a5a{WRITING}->null
DEBUG qtp1253731231-19 org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@12630a5a{IDLE}->null:WRITING-->IDLE
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - org.eclipse.jetty.server.HttpConnection$SendCallback@25b112da[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$CommitCallback@2afd1779] generate: DONE ([p=160,l=160,c=8192,r=0],[p=1950,l=1950,c=32768,r=0],false)@COMMITTED
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@7272997b[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@7663106b{null}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - org.eclipse.jetty.server.HttpConnection$SendCallback@25b112da[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$ContentCallback@63377057] generate: CONTINUE (null,[p=0,l=0,c=0,r=0],true)@COMPLETING
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - org.eclipse.jetty.server.HttpConnection$SendCallback@25b112da[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$ContentCallback@63377057] generate: NEED_CHUNK (null,[p=0,l=0,c=0,r=0],true)@COMPLETING
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - org.eclipse.jetty.server.HttpConnection$SendCallback@25b112da[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$ContentCallback@63377057] generate: FLUSH (null,[p=0,l=0,c=0,r=0],true)@COMPLETING
DEBUG qtp1253731231-19 org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@12630a5a{IDLE}->null [HeapByteBuffer@a133757[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}]
DEBUG qtp1253731231-19 org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@12630a5a{WRITING}->null:IDLE-->WRITING
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ChannelEndPoint - flushed 7 SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=W,to=2/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=END,0 of -1},g=HttpGenerator@2b5b7332{s=COMPLETING}]=>HttpChannelOverHttp@43c06af9{r=12,c=true,a=DISPATCHED,uri=//localhost:4567/schedule}
DEBUG qtp1253731231-19 org.eclipse.jetty.io.WriteFlusher - Flushed=true 7/7+0 WriteFlusher@12630a5a{WRITING}->null
DEBUG qtp1253731231-19 org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@12630a5a{IDLE}->null:WRITING-->IDLE
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - org.eclipse.jetty.server.HttpConnection$SendCallback@25b112da[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$ContentCallback@63377057] generate: DONE (null,[p=0,l=0,c=0,r=0],true)@END
DEBUG qtp1253731231-19 org.eclipse.jetty.server.session - FinalSession=org.eclipse.jetty.server.session.Session@6a302269 old_session_manager=null this=spark.embeddedserver.jetty.JettyHandler1375427324==dftMaxIdleSec=-1
DEBUG qtp1253731231-19 org.eclipse.jetty.server.session - Store: id=node019xsn66kh0xw7ttj925s1j4ti0, dirty=false, lsave=1587640063955, period=0, elapsed=64
DEBUG qtp1253731231-19 org.eclipse.jetty.server.session - Non passivating SessionDataStore, session in SessionCache only id=node019xsn66kh0xw7ttj925s1j4ti0
DEBUG qtp1253731231-19 org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@43c06af9{r=12,c=true,a=DISPATCHED,uri=//localhost:4567/schedule}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@29862f31{s=DISPATCHED a=NOT_ASYNC i=true r=IDLE w=false}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannel - HttpChannelOverHttp@43c06af9{r=12,c=true,a=COMPLETING,uri=//localhost:4567/schedule} action COMPLETE
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannelState - onComplete HttpChannelState@29862f31{s=COMPLETING a=NOT_ASYNC i=false r=IDLE w=false}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannel - COMPLETE for /schedule written=1950
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@29862f31{s=COMPLETED a=NOT_ASYNC i=false r=IDLE w=false}
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,0 of -1}
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - END --> START
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannel - HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null} handle exit, result COMPLETE
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ChannelEndPoint - filled 0 SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=3/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ChannelEndPoint - filled 0 SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=3/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=3/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null} filled 0 HeapByteBuffer@17948da9[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 200 OK\r\n...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=3/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null} parse HeapByteBuffer@17948da9[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 200 OK\r\n...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} {}
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@17948da9[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 200 OK\r\n...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=3/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null} parsed false HttpParser{s=START,0 of -1}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=4/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-19 org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=4/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-19 org.eclipse.jetty.io.FillInterest - interested FillInterest@1e4ce592{AC.ReadCB@29e1bc91{HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=0/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}}}
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=0/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ManagedSelector - Queued change CEP:SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=0/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}:runUpdateKey:NON_BLOCKING on org.eclipse.jetty.io.ManagedSelector@77853773 id=1 keys=1 selected=0 actions=0
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=1/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null} onFillable exit HttpChannelState@29862f31{s=IDLE a=NOT_ASYNC i=true r=IDLE w=false} null
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@1cb8eb53 woken up from select, 0/1 selected
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@1cb8eb53 processing 0 keys, 1 actions
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ManagedSelector - action=CEP:SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=2/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}:runUpdateKey:NON_BLOCKING wakeup=false
DEBUG qtp1253731231-21 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/PRODUCING/ReservedThreadExecutor@21e220eb{s=3/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} t=CEP:SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=2/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}:runUpdateKey:NON_BLOCKING/NON_BLOCKING
DEBUG qtp1253731231-21 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/PRODUCING/ReservedThreadExecutor@21e220eb{s=3/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} PC t=CEP:SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=2/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}:runUpdateKey:NON_BLOCKING
DEBUG qtp1253731231-19 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@21e220eb{s=3/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}@b483b8 waiting
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=2/3600000}{io=1/1,kio=1,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ManagedSelector - Forcing selection, actions=0
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ManagedSelector - action=null wakeup=false
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@1cb8eb53 waiting on select
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@1cb8eb53 woken up from select, 1/1 selected
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@1cb8eb53 processing 1 keys, 0 actions
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ManagedSelector - selected channel=java.nio.channels.SocketChannel[connected local=/[0:0:0:0:0:0:0:1]:4567 remote=/[0:0:0:0:0:0:0:1]:50736], selector=sun.nio.ch.KQueueSelectorImpl@1cb8eb53, interestOps=1, readyOps=1 SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=1928/3600000}{io=1/1,kio=1,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=1928/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ChannelEndPoint - task CEP:SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=1928/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}:runFillable:BLOCKING
DEBUG qtp1253731231-21 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/PRODUCING/ReservedThreadExecutor@21e220eb{s=3/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} t=CEP:SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=1929/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}:runFillable:BLOCKING/BLOCKING
DEBUG qtp1253731231-21 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@21e220eb{s=3/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} tryExecute EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/PRODUCING/ReservedThreadExecutor@21e220eb{s=3/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
DEBUG qtp1253731231-21 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@21e220eb{s=2/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}@b483b8 offer EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/PRODUCING/ReservedThreadExecutor@21e220eb{s=2/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
DEBUG qtp1253731231-21 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/IDLE/ReservedThreadExecutor@21e220eb{s=2/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} EPC t=CEP:SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=1929/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}:runFillable:BLOCKING
DEBUG qtp1253731231-21 org.eclipse.jetty.io.FillInterest - fillable FillInterest@1e4ce592{AC.ReadCB@29e1bc91{HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=1930/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}}}
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpConnection - HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=1930/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null} onFillable enter HttpChannelState@29862f31{s=IDLE a=NOT_ASYNC i=true r=IDLE w=false} null
DEBUG qtp1253731231-19 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@21e220eb{s=2/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}@b483b8 task=EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/IDLE/ReservedThreadExecutor@21e220eb{s=2/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ChannelEndPoint - filled 654 SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=1930/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-19 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/IDLE/ReservedThreadExecutor@21e220eb{s=2/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} run
DEBUG qtp1253731231-19 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/IDLE/ReservedThreadExecutor@21e220eb{s=2/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} produce
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ManagedSelector - action=null wakeup=false
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=2/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@1cb8eb53 waiting on select
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpConnection - HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=0/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null} filled 654 HeapByteBuffer@17948da9[p=0,l=654,c=8192,r=654]={<<<GET /dashboard? H...j4ti0.node0\r\n\r\n>>>kh0xw7ttj925s1j4t...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpConnection - HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=3/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=12,c=false,a=IDLE,uri=null} parse HeapByteBuffer@17948da9[p=0,l=654,c=8192,r=654]={<<<GET /dashboard? H...j4ti0.node0\r\n\r\n>>>kh0xw7ttj925s1j4t...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} {}
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@17948da9[p=0,l=654,c=8192,r=654]={<<<GET /dashboard? H...j4ti0.node0\r\n\r\n>>>kh0xw7ttj925s1j4t...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - START --> SPACE1
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - SPACE1 --> URI
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - URI --> SPACE2
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:4567 --> IN_VALUE
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:4567 --> FIELD
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_NAME
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.113 Safari/537.36 --> IN_VALUE
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.113 Safari/537.36 --> FIELD
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9 --> IN_VALUE
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9 --> FIELD
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_NAME
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_NAME
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_NAME
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_NAME
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:Accept-Encoding: gzip, deflate, br --> IN_VALUE
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:Accept-Encoding: gzip, deflate, br --> FIELD
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:Accept-Language: en-GB,en-US;q=0.9,en;q=0.8 --> IN_VALUE
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:Accept-Language: en-GB,en-US;q=0.9,en;q=0.8 --> FIELD
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:Cookie: JSESSIONID=node019xsn66kh0xw7ttj925s1j4ti0.node0 --> IN_VALUE
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER:Cookie: JSESSIONID=node019xsn66kh0xw7ttj925s1j4ti0.node0 --> FIELD
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - HEADER --> END
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:4567/dashboard? on HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=//localhost:4567/dashboard?}
GET //localhost:4567/dashboard? HTTP/1.1
Host: localhost:4567
Connection: keep-alive
Upgrade-Insecure-Requests: 1
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.113 Safari/537.36
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9
Sec-Fetch-Site: same-origin
Sec-Fetch-Mode: navigate
Sec-Fetch-User: ?1
Sec-Fetch-Dest: document
Referer: http://localhost:4567/schedule
Accept-Encoding: gzip, deflate, br
Accept-Language: en-GB,en-US;q=0.9,en;q=0.8
Cookie: JSESSIONID=node019xsn66kh0xw7ttj925s1j4ti0.node0
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpChannel - HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=//localhost:4567/dashboard?} onContentComplete
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpChannel - HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=//localhost:4567/dashboard?} onRequestComplete
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@9111125[c=0,q=0,[0]=null,s=STREAM] addContent EOF
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpConnection - HttpConnection@29e1bc91[p=HttpParser{s=END,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=//localhost:4567/dashboard?}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=11/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=END,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=//localhost:4567/dashboard?} parsed true HttpParser{s=END,0 of -1}
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@29e1bc91[p=HttpParser{s=END,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=//localhost:4567/dashboard?}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=11/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=END,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=//localhost:4567/dashboard?}
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpChannel - HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=//localhost:4567/dashboard?} handle //localhost:4567/dashboard?
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@29862f31{s=IDLE a=NOT_ASYNC i=true r=IDLE w=false}
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpChannel - HttpChannelOverHttp@43c06af9{r=13,c=false,a=DISPATCHED,uri=//localhost:4567/dashboard?} action DISPATCH
DEBUG qtp1253731231-21 org.eclipse.jetty.server.Server - REQUEST GET /dashboard on HttpChannelOverHttp@43c06af9{r=13,c=false,a=DISPATCHED,uri=//localhost:4567/dashboard?}
DEBUG qtp1253731231-21 org.eclipse.jetty.server.session - Got Session ID node019xsn66kh0xw7ttj925s1j4ti0.node0 from cookie
DEBUG qtp1253731231-21 org.eclipse.jetty.server.session - Testing expiry on session node019xsn66kh0xw7ttj925s1j4ti0: expires at 0 now 1587640065965 maxIdle -1
DEBUG qtp1253731231-21 org.eclipse.jetty.server.session - Testing expiry on session node019xsn66kh0xw7ttj925s1j4ti0: expires at 0 now 1587640065965 maxIdle -1
DEBUG qtp1253731231-21 org.eclipse.jetty.server.session - sessionHandler=spark.embeddedserver.jetty.JettyHandler1375427324==dftMaxIdleSec=-1
DEBUG qtp1253731231-21 org.eclipse.jetty.server.session - session=org.eclipse.jetty.server.session.Session@6a302269
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@6f264af0[p=0,l=2277,c=32768,r=2277]={<<<<!DOCTYPE html>\n<...</body>\n</html>>>>rm action="/enter...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@7663106b{null}
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpChannel - COMMIT for /dashboard on HttpChannelOverHttp@43c06af9{r=13,c=true,a=DISPATCHED,uri=//localhost:4567/dashboard?}
200 null HTTP/1.1
Date: Thu, 23 Apr 2020 11:07:45 GMT
Content-Type: text/html;charset=utf-8
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpConnection - org.eclipse.jetty.server.HttpConnection$SendCallback@25b112da[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$CommitCallback@884ac16] generate: NEED_HEADER (null,[p=0,l=2277,c=32768,r=2277],false)@START
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=2,cl=-1} last=false content=DirectByteBuffer@6f264af0[p=0,l=2277,c=32768,r=2277]={<<<<!DOCTYPE html>\n<...</body>\n</html>>>>rm action="/enter...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpGenerator - Date: Thu, 23 Apr 2020 11:07:45 GMT
Content-Type: text/html;charset=utf-8
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpConnection - org.eclipse.jetty.server.HttpConnection$SendCallback@25b112da[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$CommitCallback@884ac16] generate: FLUSH ([p=0,l=160,c=8192,r=160],[p=0,l=2277,c=32768,r=2277],false)@COMMITTED
DEBUG qtp1253731231-21 org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@12630a5a{IDLE}->null [HeapByteBuffer@17948da9[p=0,l=160,c=8192,r=160]={<<<HTTP/1.1 200 OK\r\n...71121)\r\n\r\n8E5\r\n>>>) AppleWebKit/537...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@6f264af0[p=0,l=2277,c=32768,r=2277]={<<<<!DOCTYPE html>\n<...</body>\n</html>>>>rm action="/enter...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}]
DEBUG qtp1253731231-21 org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@12630a5a{WRITING}->null:IDLE-->WRITING
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ChannelEndPoint - flushed 2437 SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=W,to=18/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=END,0 of -1},g=HttpGenerator@2b5b7332{s=COMMITTED}]=>HttpChannelOverHttp@43c06af9{r=13,c=true,a=DISPATCHED,uri=//localhost:4567/dashboard?}
DEBUG qtp1253731231-21 org.eclipse.jetty.io.WriteFlusher - Flushed=true 160/160+1 WriteFlusher@12630a5a{WRITING}->null
DEBUG qtp1253731231-21 org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@12630a5a{IDLE}->null:WRITING-->IDLE
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpConnection - org.eclipse.jetty.server.HttpConnection$SendCallback@25b112da[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$CommitCallback@884ac16] generate: DONE ([p=160,l=160,c=8192,r=0],[p=2277,l=2277,c=32768,r=0],false)@COMMITTED
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@7272997b[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@7663106b{null}
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpConnection - org.eclipse.jetty.server.HttpConnection$SendCallback@25b112da[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$ContentCallback@391576d4] generate: CONTINUE (null,[p=0,l=0,c=0,r=0],true)@COMPLETING
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpConnection - org.eclipse.jetty.server.HttpConnection$SendCallback@25b112da[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$ContentCallback@391576d4] generate: NEED_CHUNK (null,[p=0,l=0,c=0,r=0],true)@COMPLETING
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpConnection - org.eclipse.jetty.server.HttpConnection$SendCallback@25b112da[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$ContentCallback@391576d4] generate: FLUSH (null,[p=0,l=0,c=0,r=0],true)@COMPLETING
DEBUG qtp1253731231-21 org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@12630a5a{IDLE}->null [HeapByteBuffer@a133757[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}]
DEBUG qtp1253731231-21 org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@12630a5a{WRITING}->null:IDLE-->WRITING
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ChannelEndPoint - flushed 7 SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=W,to=3/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=END,0 of -1},g=HttpGenerator@2b5b7332{s=COMPLETING}]=>HttpChannelOverHttp@43c06af9{r=13,c=true,a=DISPATCHED,uri=//localhost:4567/dashboard?}
DEBUG qtp1253731231-21 org.eclipse.jetty.io.WriteFlusher - Flushed=true 7/7+0 WriteFlusher@12630a5a{WRITING}->null
DEBUG qtp1253731231-21 org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@12630a5a{IDLE}->null:WRITING-->IDLE
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpConnection - org.eclipse.jetty.server.HttpConnection$SendCallback@25b112da[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$ContentCallback@391576d4] generate: DONE (null,[p=0,l=0,c=0,r=0],true)@END
DEBUG qtp1253731231-21 org.eclipse.jetty.server.session - FinalSession=org.eclipse.jetty.server.session.Session@6a302269 old_session_manager=null this=spark.embeddedserver.jetty.JettyHandler1375427324==dftMaxIdleSec=-1
DEBUG qtp1253731231-21 org.eclipse.jetty.server.session - Store: id=node019xsn66kh0xw7ttj925s1j4ti0, dirty=false, lsave=1587640064019, period=0, elapsed=1957
DEBUG qtp1253731231-21 org.eclipse.jetty.server.session - Non passivating SessionDataStore, session in SessionCache only id=node019xsn66kh0xw7ttj925s1j4ti0
DEBUG qtp1253731231-21 org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@43c06af9{r=13,c=true,a=DISPATCHED,uri=//localhost:4567/dashboard?}
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@29862f31{s=DISPATCHED a=NOT_ASYNC i=true r=IDLE w=false}
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpChannel - HttpChannelOverHttp@43c06af9{r=13,c=true,a=COMPLETING,uri=//localhost:4567/dashboard?} action COMPLETE
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpChannelState - onComplete HttpChannelState@29862f31{s=COMPLETING a=NOT_ASYNC i=false r=IDLE w=false}
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpChannel - COMPLETE for /dashboard written=2277
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@29862f31{s=COMPLETED a=NOT_ASYNC i=false r=IDLE w=false}
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,0 of -1}
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - END --> START
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpChannel - HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null} handle exit, result COMPLETE
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ChannelEndPoint - filled 0 SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=2/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ChannelEndPoint - filled 0 SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=2/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpConnection - HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=2/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null} filled 0 HeapByteBuffer@17948da9[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 200 OK\r\n...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpConnection - HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=3/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null} parse HeapByteBuffer@17948da9[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 200 OK\r\n...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} {}
DEBUG qtp1253731231-21 org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@17948da9[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 200 OK\r\n...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpConnection - HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=3/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null} parsed false HttpParser{s=START,0 of -1}
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=4/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-21 org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=4/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-21 org.eclipse.jetty.io.FillInterest - interested FillInterest@1e4ce592{AC.ReadCB@29e1bc91{HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=0/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}}}
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=1/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ManagedSelector - Queued change CEP:SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=1/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}:runUpdateKey:NON_BLOCKING on org.eclipse.jetty.io.ManagedSelector@77853773 id=1 keys=1 selected=0 actions=0
DEBUG qtp1253731231-21 org.eclipse.jetty.server.HttpConnection - HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=1/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null} onFillable exit HttpChannelState@29862f31{s=IDLE a=NOT_ASYNC i=true r=IDLE w=false} null
DEBUG qtp1253731231-21 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@21e220eb{s=3/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}@2c9f20c4 waiting
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@1cb8eb53 woken up from select, 0/1 selected
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@1cb8eb53 processing 0 keys, 1 actions
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ManagedSelector - action=CEP:SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=4/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}:runUpdateKey:NON_BLOCKING wakeup=false
DEBUG qtp1253731231-19 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/PRODUCING/ReservedThreadExecutor@21e220eb{s=3/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} t=CEP:SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=4/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}:runUpdateKey:NON_BLOCKING/NON_BLOCKING
DEBUG qtp1253731231-19 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/PRODUCING/ReservedThreadExecutor@21e220eb{s=3/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} PC t=CEP:SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=5/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}:runUpdateKey:NON_BLOCKING
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=5/3600000}{io=1/1,kio=1,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ManagedSelector - Forcing selection, actions=0
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ManagedSelector - action=null wakeup=false
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@1cb8eb53 waiting on select
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@1cb8eb53 woken up from select, 1/1 selected
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@1cb8eb53 processing 1 keys, 0 actions
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ManagedSelector - selected channel=java.nio.channels.SocketChannel[connected local=/[0:0:0:0:0:0:0:1]:4567 remote=/[0:0:0:0:0:0:0:1]:50736], selector=sun.nio.ch.KQueueSelectorImpl@1cb8eb53, interestOps=1, readyOps=1 SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=1270/3600000}{io=1/1,kio=1,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=1270/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ChannelEndPoint - task CEP:SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=1271/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}:runFillable:BLOCKING
DEBUG qtp1253731231-19 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/PRODUCING/ReservedThreadExecutor@21e220eb{s=3/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} t=CEP:SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=1271/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}:runFillable:BLOCKING/BLOCKING
DEBUG qtp1253731231-19 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@21e220eb{s=3/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} tryExecute EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/PRODUCING/ReservedThreadExecutor@21e220eb{s=3/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
DEBUG qtp1253731231-19 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@21e220eb{s=2/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}@2c9f20c4 offer EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/PRODUCING/ReservedThreadExecutor@21e220eb{s=2/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
DEBUG qtp1253731231-19 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/IDLE/ReservedThreadExecutor@21e220eb{s=2/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} EPC t=CEP:SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=1271/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}:runFillable:BLOCKING
DEBUG qtp1253731231-21 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@21e220eb{s=2/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}@2c9f20c4 task=EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/IDLE/ReservedThreadExecutor@21e220eb{s=2/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
DEBUG qtp1253731231-19 org.eclipse.jetty.io.FillInterest - fillable FillInterest@1e4ce592{AC.ReadCB@29e1bc91{HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=1272/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}}}
DEBUG qtp1253731231-21 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/IDLE/ReservedThreadExecutor@21e220eb{s=2/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} run
DEBUG qtp1253731231-21 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/IDLE/ReservedThreadExecutor@21e220eb{s=2/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} produce
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ManagedSelector - action=null wakeup=false
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=1272/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null} onFillable enter HttpChannelState@29862f31{s=IDLE a=NOT_ASYNC i=true r=IDLE w=false} null
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=1273/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@1cb8eb53 waiting on select
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ChannelEndPoint - filled 656 SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=1273/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=0/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null} filled 656 HeapByteBuffer@17948da9[p=0,l=656,c=8192,r=656]={<<<GET /yourtrips? H...j4ti0.node0\r\n\r\n>>>0xw7ttj925s1j4ti0...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=1/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=13,c=false,a=IDLE,uri=null} parse HeapByteBuffer@17948da9[p=0,l=656,c=8192,r=656]={<<<GET /yourtrips? H...j4ti0.node0\r\n\r\n>>>0xw7ttj925s1j4ti0...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} {}
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@17948da9[p=0,l=656,c=8192,r=656]={<<<GET /yourtrips? H...j4ti0.node0\r\n\r\n>>>0xw7ttj925s1j4ti0...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - START --> SPACE1
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - SPACE1 --> URI
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - URI --> SPACE2
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:4567 --> IN_VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:4567 --> FIELD
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_NAME
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.113 Safari/537.36 --> IN_VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.113 Safari/537.36 --> FIELD
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9 --> IN_VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9 --> FIELD
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_NAME
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_NAME
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_NAME
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_NAME
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:Accept-Encoding: gzip, deflate, br --> IN_VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:Accept-Encoding: gzip, deflate, br --> FIELD
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:Accept-Language: en-GB,en-US;q=0.9,en;q=0.8 --> IN_VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:Accept-Language: en-GB,en-US;q=0.9,en;q=0.8 --> FIELD
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:Cookie: JSESSIONID=node019xsn66kh0xw7ttj925s1j4ti0.node0 --> IN_VALUE
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER:Cookie: JSESSIONID=node019xsn66kh0xw7ttj925s1j4ti0.node0 --> FIELD
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - HEADER --> END
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:4567/yourtrips? on HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=//localhost:4567/yourtrips?}
GET //localhost:4567/yourtrips? HTTP/1.1
Host: localhost:4567
Connection: keep-alive
Upgrade-Insecure-Requests: 1
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.113 Safari/537.36
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9
Sec-Fetch-Site: same-origin
Sec-Fetch-Mode: navigate
Sec-Fetch-User: ?1
Sec-Fetch-Dest: document
Referer: http://localhost:4567/dashboard?
Accept-Encoding: gzip, deflate, br
Accept-Language: en-GB,en-US;q=0.9,en;q=0.8
Cookie: JSESSIONID=node019xsn66kh0xw7ttj925s1j4ti0.node0
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannel - HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=//localhost:4567/yourtrips?} onContentComplete
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannel - HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=//localhost:4567/yourtrips?} onRequestComplete
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@9111125[c=0,q=0,[0]=null,s=STREAM] addContent EOF
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - HttpConnection@29e1bc91[p=HttpParser{s=END,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=//localhost:4567/yourtrips?}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=8/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=END,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=//localhost:4567/yourtrips?} parsed true HttpParser{s=END,0 of -1}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@29e1bc91[p=HttpParser{s=END,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=//localhost:4567/yourtrips?}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=8/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=END,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=//localhost:4567/yourtrips?}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannel - HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=//localhost:4567/yourtrips?} handle //localhost:4567/yourtrips?
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@29862f31{s=IDLE a=NOT_ASYNC i=true r=IDLE w=false}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannel - HttpChannelOverHttp@43c06af9{r=14,c=false,a=DISPATCHED,uri=//localhost:4567/yourtrips?} action DISPATCH
DEBUG qtp1253731231-19 org.eclipse.jetty.server.Server - REQUEST GET /yourtrips on HttpChannelOverHttp@43c06af9{r=14,c=false,a=DISPATCHED,uri=//localhost:4567/yourtrips?}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.session - Got Session ID node019xsn66kh0xw7ttj925s1j4ti0.node0 from cookie
DEBUG qtp1253731231-19 org.eclipse.jetty.server.session - Testing expiry on session node019xsn66kh0xw7ttj925s1j4ti0: expires at 0 now 1587640067261 maxIdle -1
DEBUG qtp1253731231-19 org.eclipse.jetty.server.session - Testing expiry on session node019xsn66kh0xw7ttj925s1j4ti0: expires at 0 now 1587640067262 maxIdle -1
DEBUG qtp1253731231-19 org.eclipse.jetty.server.session - sessionHandler=spark.embeddedserver.jetty.JettyHandler1375427324==dftMaxIdleSec=-1
DEBUG qtp1253731231-19 org.eclipse.jetty.server.session - session=org.eclipse.jetty.server.session.Session@6a302269
DEBUG qtp1253731231-19 org.sql2o.Query - total: 2 ms, execution: 2 ms, reading and parsing: 0 ms; executed [null]
DEBUG qtp1253731231-19 org.sql2o.Query - total: 4 ms, execution: 4 ms, reading and parsing: 0 ms; executed [null]
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=DirectByteBuffer@6f264af0[p=0,l=3936,c=32768,r=3936]={<<<<!DOCTYPE html>\n<...</body>\n</html>>>>ass="col-sm">\n ...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} complete=false committing=true callback=Blocker@7663106b{null}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannel - COMMIT for /yourtrips on HttpChannelOverHttp@43c06af9{r=14,c=true,a=DISPATCHED,uri=//localhost:4567/yourtrips?}
200 null HTTP/1.1
Date: Thu, 23 Apr 2020 11:07:47 GMT
Content-Type: text/html;charset=utf-8
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - org.eclipse.jetty.server.HttpConnection$SendCallback@25b112da[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$CommitCallback@7a4aad01] generate: NEED_HEADER (null,[p=0,l=3936,c=32768,r=3936],false)@START
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=200,h=2,cl=-1} last=false content=DirectByteBuffer@6f264af0[p=0,l=3936,c=32768,r=3936]={<<<<!DOCTYPE html>\n<...</body>\n</html>>>>ass="col-sm">\n ...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpGenerator - Date: Thu, 23 Apr 2020 11:07:47 GMT
Content-Type: text/html;charset=utf-8
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpGenerator - CHUNKED_CONTENT
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - org.eclipse.jetty.server.HttpConnection$SendCallback@25b112da[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$CommitCallback@7a4aad01] generate: FLUSH ([p=0,l=160,c=8192,r=160],[p=0,l=3936,c=32768,r=3936],false)@COMMITTED
DEBUG qtp1253731231-19 org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@12630a5a{IDLE}->null [HeapByteBuffer@17948da9[p=0,l=160,c=8192,r=160]={<<<HTTP/1.1 200 OK\r\n...71121)\r\n\r\nF60\r\n>>>) AppleWebKit/537...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00},DirectByteBuffer@6f264af0[p=0,l=3936,c=32768,r=3936]={<<<<!DOCTYPE html>\n<...</body>\n</html>>>>ass="col-sm">\n ...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}]
DEBUG qtp1253731231-19 org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@12630a5a{WRITING}->null:IDLE-->WRITING
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ChannelEndPoint - flushed 4096 SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=W,to=55/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=END,0 of -1},g=HttpGenerator@2b5b7332{s=COMMITTED}]=>HttpChannelOverHttp@43c06af9{r=14,c=true,a=DISPATCHED,uri=//localhost:4567/yourtrips?}
DEBUG qtp1253731231-19 org.eclipse.jetty.io.WriteFlusher - Flushed=true 160/160+1 WriteFlusher@12630a5a{WRITING}->null
DEBUG qtp1253731231-19 org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@12630a5a{IDLE}->null:WRITING-->IDLE
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - org.eclipse.jetty.server.HttpConnection$SendCallback@25b112da[PROCESSING][i=HTTP/1.1{s=200,h=2,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$CommitCallback@7a4aad01] generate: DONE ([p=160,l=160,c=8192,r=0],[p=3936,l=3936,c=32768,r=0],false)@COMMITTED
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@7272997b[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=false callback=Blocker@7663106b{null}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - org.eclipse.jetty.server.HttpConnection$SendCallback@25b112da[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$ContentCallback@1b4086df] generate: CONTINUE (null,[p=0,l=0,c=0,r=0],true)@COMPLETING
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - org.eclipse.jetty.server.HttpConnection$SendCallback@25b112da[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$ContentCallback@1b4086df] generate: NEED_CHUNK (null,[p=0,l=0,c=0,r=0],true)@COMPLETING
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - org.eclipse.jetty.server.HttpConnection$SendCallback@25b112da[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$ContentCallback@1b4086df] generate: FLUSH (null,[p=0,l=0,c=0,r=0],true)@COMPLETING
DEBUG qtp1253731231-19 org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@12630a5a{IDLE}->null [HeapByteBuffer@a133757[p=0,l=7,c=1024,r=7]={<<<\r\n0\r\n\r\n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}]
DEBUG qtp1253731231-19 org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@12630a5a{WRITING}->null:IDLE-->WRITING
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ChannelEndPoint - flushed 7 SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=W,to=3/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=END,0 of -1},g=HttpGenerator@2b5b7332{s=COMPLETING}]=>HttpChannelOverHttp@43c06af9{r=14,c=true,a=DISPATCHED,uri=//localhost:4567/yourtrips?}
DEBUG qtp1253731231-19 org.eclipse.jetty.io.WriteFlusher - Flushed=true 7/7+0 WriteFlusher@12630a5a{WRITING}->null
DEBUG qtp1253731231-19 org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@12630a5a{IDLE}->null:WRITING-->IDLE
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - org.eclipse.jetty.server.HttpConnection$SendCallback@25b112da[PROCESSING][i=null,cb=org.eclipse.jetty.server.HttpChannel$ContentCallback@1b4086df] generate: DONE (null,[p=0,l=0,c=0,r=0],true)@END
DEBUG qtp1253731231-19 org.eclipse.jetty.server.session - FinalSession=org.eclipse.jetty.server.session.Session@6a302269 old_session_manager=null this=spark.embeddedserver.jetty.JettyHandler1375427324==dftMaxIdleSec=-1
DEBUG qtp1253731231-19 org.eclipse.jetty.server.session - Store: id=node019xsn66kh0xw7ttj925s1j4ti0, dirty=false, lsave=1587640065976, period=0, elapsed=1335
DEBUG qtp1253731231-19 org.eclipse.jetty.server.session - Non passivating SessionDataStore, session in SessionCache only id=node019xsn66kh0xw7ttj925s1j4ti0
DEBUG qtp1253731231-19 org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@43c06af9{r=14,c=true,a=DISPATCHED,uri=//localhost:4567/yourtrips?}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@29862f31{s=DISPATCHED a=NOT_ASYNC i=true r=IDLE w=false}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannel - HttpChannelOverHttp@43c06af9{r=14,c=true,a=COMPLETING,uri=//localhost:4567/yourtrips?} action COMPLETE
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannelState - onComplete HttpChannelState@29862f31{s=COMPLETING a=NOT_ASYNC i=false r=IDLE w=false}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannel - COMPLETE for /yourtrips written=3936
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@29862f31{s=COMPLETED a=NOT_ASYNC i=false r=IDLE w=false}
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,0 of -1}
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - END --> START
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpChannel - HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=null} handle exit, result COMPLETE
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ChannelEndPoint - filled 0 SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=4/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ChannelEndPoint - filled 0 SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=6/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=8/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=null} filled 0 HeapByteBuffer@17948da9[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 200 OK\r\n...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=9/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=null} parse HeapByteBuffer@17948da9[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 200 OK\r\n...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} {}
DEBUG qtp1253731231-19 org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@17948da9[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 200 OK\r\n...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=10/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=null} parsed false HttpParser{s=START,0 of -1}
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=10/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-19 org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=10/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-19 org.eclipse.jetty.io.FillInterest - interested FillInterest@1e4ce592{AC.ReadCB@29e1bc91{HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=0/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=null}}}
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=0/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-19 org.eclipse.jetty.io.ManagedSelector - Queued change CEP:SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=1/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=null}:runUpdateKey:NON_BLOCKING on org.eclipse.jetty.io.ManagedSelector@77853773 id=1 keys=1 selected=0 actions=0
DEBUG qtp1253731231-19 org.eclipse.jetty.server.HttpConnection - HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=3/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=null} onFillable exit HttpChannelState@29862f31{s=IDLE a=NOT_ASYNC i=true r=IDLE w=false} null
DEBUG qtp1253731231-19 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@21e220eb{s=3/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}@b483b8 waiting
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@1cb8eb53 woken up from select, 0/1 selected
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@1cb8eb53 processing 0 keys, 1 actions
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ManagedSelector - action=CEP:SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=4/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=null}:runUpdateKey:NON_BLOCKING wakeup=false
DEBUG qtp1253731231-21 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/PRODUCING/ReservedThreadExecutor@21e220eb{s=3/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} t=CEP:SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=4/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=null}:runUpdateKey:NON_BLOCKING/NON_BLOCKING
DEBUG qtp1253731231-21 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@4fcc6fa0/SelectorProducer@6a5d333e/PRODUCING/ReservedThreadExecutor@21e220eb{s=3/4,p=0}@SelectorManager@ServerConnector@2de04518{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} PC t=CEP:SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=5/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=null}:runUpdateKey:NON_BLOCKING
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on SocketChannelEndPoint@27f8114f{/[0:0:0:0:0:0:0:1]:50736<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=5/3600000}{io=1/1,kio=1,kro=1}->HttpConnection@29e1bc91[p=HttpParser{s=START,0 of -1},g=HttpGenerator@2b5b7332{s=START}]=>HttpChannelOverHttp@43c06af9{r=14,c=false,a=IDLE,uri=null}
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ManagedSelector - Forcing selection, actions=0
DEBUG qtp1253731231-21 org.eclipse.jetty.io.ManagedSelector - action=null wakeup=false
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @1123ms org.eclipse.jetty.server.session.HouseKeeper@16f9f4a8[interval=600000, ownscheduler=true]
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @1124ms org.eclipse.jetty.server.session.DefaultSessionIdManager@1b2fed08[worker=node0]
DEBUG Thread-0 org.eclipse.jetty.util.component.ContainerLifeCycle - org.eclipse.jetty.server.Server@718b6410[9.4.8.v20171121] added {org.eclipse.jetty.server.session.DefaultSessionIdManager@1b2fed08[worker=node0],MANAGED}
DEBUG Thread-0 org.eclipse.jetty.util.component.ContainerLifeCycle - spark.embeddedserver.jetty.JettyHandler1179115732==dftMaxIdleSec=-1 added {org.eclipse.jetty.server.session.DefaultSessionIdManager@1b2fed08[worker=node0],UNMANAGED}
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.util.thread.ScheduledExecutorScheduler@25368a5a
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @1126ms org.eclipse.jetty.util.thread.ScheduledExecutorScheduler@25368a5a
DEBUG Thread-0 org.eclipse.jetty.server.handler.AbstractHandler - starting spark.embeddedserver.jetty.JettyHandler1179115732==dftMaxIdleSec=-1
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.server.session.DefaultSessionCache@5dc75129[evict=-1,removeUnloadable=false,saveOnCreate=false,saveOnInactiveEvict=false]
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.server.session.NullSessionDataStore@1c98e32[passivating=false,graceSec=3600]
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @1128ms org.eclipse.jetty.server.session.NullSessionDataStore@1c98e32[passivating=false,graceSec=3600]
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @1128ms org.eclipse.jetty.server.session.DefaultSessionCache@5dc75129[evict=-1,removeUnloadable=false,saveOnCreate=false,saveOnInactiveEvict=false]
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @1128ms spark.embeddedserver.jetty.JettyHandler1179115732==dftMaxIdleSec=-1
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.server.handler.ErrorHandler@552736df
DEBUG Thread-0 org.eclipse.jetty.server.handler.AbstractHandler - starting org.eclipse.jetty.server.handler.ErrorHandler@552736df
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @1129ms org.eclipse.jetty.server.handler.ErrorHandler@552736df
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - starting ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
DEBUG Thread-0 org.eclipse.jetty.util.component.ContainerLifeCycle - ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} added {sun.nio.ch.ServerSocketChannelImpl[/[0:0:0:0:0:0:0:0]:4567],POJO}
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.util.thread.ScheduledExecutorScheduler@714b1be2
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @1146ms org.eclipse.jetty.util.thread.ScheduledExecutorScheduler@714b1be2
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - starting HttpConnectionFactory@1c2b7461[HTTP/1.1]
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @1146ms HttpConnectionFactory@1c2b7461[HTTP/1.1]
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - starting SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
DEBUG Thread-0 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7d25d204{s=0/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
DEBUG Thread-0 org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} added {ReservedThreadExecutor@7d25d204{s=0/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567},MANAGED}
DEBUG Thread-0 org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@12e62382/SelectorProducer@63ee4ed9/IDLE/ReservedThreadExecutor@7d25d204{s=0/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} added {SelectorProducer@63ee4ed9,POJO}
DEBUG Thread-0 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@12e62382/SelectorProducer@63ee4ed9/IDLE/ReservedThreadExecutor@7d25d204{s=0/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} created
DEBUG Thread-0 org.eclipse.jetty.util.component.ContainerLifeCycle - org.eclipse.jetty.io.ManagedSelector@677dea73 id=0 keys=-1 selected=-1 actions=0 added {EatWhatYouKill@12e62382/SelectorProducer@63ee4ed9/IDLE/ReservedThreadExecutor@7d25d204{s=0/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567},MANAGED}
DEBUG Thread-0 org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} added {org.eclipse.jetty.io.ManagedSelector@677dea73 id=0 keys=-1 selected=-1 actions=0,AUTO}
DEBUG Thread-0 org.eclipse.jetty.util.component.ContainerLifeCycle - EatWhatYouKill@722b5af3/SelectorProducer@51f28d07/IDLE/ReservedThreadExecutor@7d25d204{s=0/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} added {SelectorProducer@51f28d07,POJO}
DEBUG Thread-0 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@722b5af3/SelectorProducer@51f28d07/IDLE/ReservedThreadExecutor@7d25d204{s=0/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} created
DEBUG Thread-0 org.eclipse.jetty.util.component.ContainerLifeCycle - org.eclipse.jetty.io.ManagedSelector@407b8966 id=1 keys=-1 selected=-1 actions=0 added {EatWhatYouKill@722b5af3/SelectorProducer@51f28d07/IDLE/ReservedThreadExecutor@7d25d204{s=0/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567},MANAGED}
DEBUG Thread-0 org.eclipse.jetty.util.component.ContainerLifeCycle - SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} added {org.eclipse.jetty.io.ManagedSelector@407b8966 id=1 keys=-1 selected=-1 actions=0,AUTO}
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - starting ReservedThreadExecutor@7d25d204{s=0/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @1194ms ReservedThreadExecutor@7d25d204{s=0/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.io.ManagedSelector@677dea73 id=0 keys=-1 selected=-1 actions=0
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - starting EatWhatYouKill@12e62382/SelectorProducer@63ee4ed9/IDLE/ReservedThreadExecutor@7d25d204{s=0/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @1199ms EatWhatYouKill@12e62382/SelectorProducer@63ee4ed9/IDLE/ReservedThreadExecutor@7d25d204{s=0/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
DEBUG Thread-0 org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$98/0x0000000800bfdc40@41fb264c
DEBUG qtp282522288-16 org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$98/0x0000000800bfdc40@41fb264c
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @1247ms org.eclipse.jetty.io.ManagedSelector@677dea73 id=0 keys=0 selected=0 actions=0
DEBUG qtp282522288-16 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@12e62382/SelectorProducer@63ee4ed9/IDLE/ReservedThreadExecutor@7d25d204{s=0/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} produce
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - starting org.eclipse.jetty.io.ManagedSelector@407b8966 id=1 keys=-1 selected=-1 actions=0
DEBUG qtp282522288-16 org.eclipse.jetty.io.ManagedSelector - action=null wakeup=false
DEBUG qtp282522288-16 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@6b77ec32 waiting on select
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - starting EatWhatYouKill@722b5af3/SelectorProducer@51f28d07/IDLE/ReservedThreadExecutor@7d25d204{s=0/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @1269ms EatWhatYouKill@722b5af3/SelectorProducer@51f28d07/IDLE/ReservedThreadExecutor@7d25d204{s=0/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
DEBUG Thread-0 org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$$Lambda$98/0x0000000800bfdc40@20263968
DEBUG qtp282522288-18 org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$$Lambda$98/0x0000000800bfdc40@20263968
DEBUG qtp282522288-18 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@722b5af3/SelectorProducer@51f28d07/IDLE/ReservedThreadExecutor@7d25d204{s=0/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} produce
DEBUG qtp282522288-18 org.eclipse.jetty.io.ManagedSelector - action=null wakeup=false
DEBUG qtp282522288-18 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@43deff0 waiting on select
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @1270ms org.eclipse.jetty.io.ManagedSelector@407b8966 id=1 keys=0 selected=0 actions=0
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @1272ms SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
DEBUG Thread-0 org.eclipse.jetty.util.component.ContainerLifeCycle - ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} added {acceptor-0@350c2af5,POJO}
DEBUG Thread-0 org.eclipse.jetty.util.thread.QueuedThreadPool - queue acceptor-0@350c2af5
DEBUG qtp282522288-17 org.eclipse.jetty.util.thread.QueuedThreadPool - run acceptor-0@350c2af5
INFO Thread-0 org.eclipse.jetty.server.AbstractConnector - Started ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @1277ms ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
INFO Thread-0 org.eclipse.jetty.server.Server - Started @1278ms
DEBUG Thread-0 org.eclipse.jetty.util.component.AbstractLifeCycle - STARTED @1278ms org.eclipse.jetty.server.Server@718b6410[9.4.8.v20171121]
DEBUG qtp282522288-17-acceptor-0@350c2af5-ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@49a1c670 on org.eclipse.jetty.io.ManagedSelector@407b8966 id=1 keys=0 selected=0 actions=0
DEBUG qtp282522288-17-acceptor-0@350c2af5-ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$Accept@aee64a on org.eclipse.jetty.io.ManagedSelector@677dea73 id=0 keys=0 selected=0 actions=0
DEBUG qtp282522288-18 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@43deff0 woken up from select, 0/0 selected
DEBUG qtp282522288-18 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@43deff0 processing 0 keys, 1 actions
DEBUG qtp282522288-18 org.eclipse.jetty.io.ManagedSelector - action=org.eclipse.jetty.io.ManagedSelector$Accept@49a1c670 wakeup=false
DEBUG qtp282522288-16 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@6b77ec32 woken up from select, 0/0 selected
DEBUG qtp282522288-16 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@6b77ec32 processing 0 keys, 1 actions
DEBUG qtp282522288-16 org.eclipse.jetty.io.ManagedSelector - action=org.eclipse.jetty.io.ManagedSelector$Accept@aee64a wakeup=false
DEBUG qtp282522288-16 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@12e62382/SelectorProducer@63ee4ed9/PRODUCING/ReservedThreadExecutor@7d25d204{s=0/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} t=org.eclipse.jetty.io.ManagedSelector$Accept@aee64a/NON_BLOCKING
DEBUG qtp282522288-18 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@722b5af3/SelectorProducer@51f28d07/PRODUCING/ReservedThreadExecutor@7d25d204{s=0/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} t=org.eclipse.jetty.io.ManagedSelector$Accept@49a1c670/NON_BLOCKING
DEBUG qtp282522288-18 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@722b5af3/SelectorProducer@51f28d07/PRODUCING/ReservedThreadExecutor@7d25d204{s=0/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} PC t=org.eclipse.jetty.io.ManagedSelector$Accept@49a1c670
DEBUG qtp282522288-16 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@12e62382/SelectorProducer@63ee4ed9/PRODUCING/ReservedThreadExecutor@7d25d204{s=0/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} PC t=org.eclipse.jetty.io.ManagedSelector$Accept@aee64a
DEBUG qtp282522288-18 org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$CreateEndPoint@1908a07a on org.eclipse.jetty.io.ManagedSelector@407b8966 id=1 keys=1 selected=0 actions=0
DEBUG qtp282522288-16 org.eclipse.jetty.io.ManagedSelector - Queued change org.eclipse.jetty.io.ManagedSelector$CreateEndPoint@70736575 on org.eclipse.jetty.io.ManagedSelector@677dea73 id=0 keys=1 selected=0 actions=0
DEBUG qtp282522288-18 org.eclipse.jetty.io.ManagedSelector - Forcing selection, actions=1
DEBUG qtp282522288-16 org.eclipse.jetty.io.ManagedSelector - Forcing selection, actions=1
DEBUG qtp282522288-18 org.eclipse.jetty.io.ManagedSelector - action=null wakeup=true
DEBUG qtp282522288-16 org.eclipse.jetty.io.ManagedSelector - action=null wakeup=true
DEBUG qtp282522288-18 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@43deff0 waiting on select
DEBUG qtp282522288-16 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@6b77ec32 waiting on select
DEBUG qtp282522288-18 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@43deff0 woken up from select, 0/1 selected
DEBUG qtp282522288-16 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@6b77ec32 woken up from select, 0/1 selected
DEBUG qtp282522288-18 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@43deff0 processing 0 keys, 1 actions
DEBUG qtp282522288-16 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@6b77ec32 processing 0 keys, 1 actions
DEBUG qtp282522288-18 org.eclipse.jetty.io.ManagedSelector - action=org.eclipse.jetty.io.ManagedSelector$CreateEndPoint@1908a07a wakeup=false
DEBUG qtp282522288-16 org.eclipse.jetty.io.ManagedSelector - action=org.eclipse.jetty.io.ManagedSelector$CreateEndPoint@70736575 wakeup=false
DEBUG qtp282522288-18 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@722b5af3/SelectorProducer@51f28d07/PRODUCING/ReservedThreadExecutor@7d25d204{s=0/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} t=org.eclipse.jetty.io.ManagedSelector$CreateEndPoint@1908a07a/BLOCKING
DEBUG qtp282522288-16 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@12e62382/SelectorProducer@63ee4ed9/PRODUCING/ReservedThreadExecutor@7d25d204{s=0/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} t=org.eclipse.jetty.io.ManagedSelector$CreateEndPoint@70736575/BLOCKING
DEBUG qtp282522288-18 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7d25d204{s=0/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} tryExecute EatWhatYouKill@722b5af3/SelectorProducer@51f28d07/PRODUCING/ReservedThreadExecutor@7d25d204{s=0/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
DEBUG qtp282522288-16 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7d25d204{s=0/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} tryExecute EatWhatYouKill@12e62382/SelectorProducer@63ee4ed9/PRODUCING/ReservedThreadExecutor@7d25d204{s=0/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
DEBUG qtp282522288-18 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7d25d204{s=0/4,p=1}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} startReservedThread p=1
DEBUG qtp282522288-16 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7d25d204{s=0/4,p=2}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} startReservedThread p=2
DEBUG qtp282522288-16 org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@7d25d204{s=0/4,p=2}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}@6615cf05
DEBUG qtp282522288-16 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@12e62382/SelectorProducer@63ee4ed9/PRODUCING/ReservedThreadExecutor@7d25d204{s=0/4,p=2}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} PEC t=org.eclipse.jetty.io.ManagedSelector$CreateEndPoint@70736575
DEBUG qtp282522288-16 org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$CreateEndPoint@70736575
DEBUG qtp282522288-16 org.eclipse.jetty.io.ManagedSelector - Forcing selection, actions=0
DEBUG qtp282522288-16 org.eclipse.jetty.io.ManagedSelector - action=null wakeup=false
DEBUG qtp282522288-16 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@6b77ec32 waiting on select
DEBUG qtp282522288-20 org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$CreateEndPoint@70736575
DEBUG qtp282522288-19 org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@7d25d204{s=0/4,p=2}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}@6615cf05
DEBUG qtp282522288-18 org.eclipse.jetty.util.thread.QueuedThreadPool - queue ReservedThreadExecutor@7d25d204{s=0/4,p=2}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}@5f4d364
DEBUG qtp282522288-18 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@722b5af3/SelectorProducer@51f28d07/PRODUCING/ReservedThreadExecutor@7d25d204{s=1/4,p=2}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} PEC t=org.eclipse.jetty.io.ManagedSelector$CreateEndPoint@1908a07a
DEBUG qtp282522288-18 org.eclipse.jetty.util.thread.QueuedThreadPool - queue org.eclipse.jetty.io.ManagedSelector$CreateEndPoint@1908a07a
DEBUG qtp282522288-21 org.eclipse.jetty.util.thread.QueuedThreadPool - run ReservedThreadExecutor@7d25d204{s=1/4,p=2}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}@5f4d364
DEBUG qtp282522288-19 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7d25d204{s=1/4,p=2}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}@6615cf05 started
DEBUG qtp282522288-21 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7d25d204{s=2/4,p=2}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}@5f4d364 started
DEBUG qtp282522288-19 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7d25d204{s=2/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}@6615cf05 waiting
DEBUG qtp282522288-22 org.eclipse.jetty.util.thread.QueuedThreadPool - run org.eclipse.jetty.io.ManagedSelector$CreateEndPoint@1908a07a
DEBUG qtp282522288-18 org.eclipse.jetty.io.ManagedSelector - Forcing selection, actions=0
DEBUG qtp282522288-18 org.eclipse.jetty.io.ManagedSelector - action=null wakeup=false
DEBUG qtp282522288-18 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@43deff0 waiting on select
DEBUG qtp282522288-21 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7d25d204{s=2/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}@5f4d364 waiting
DEBUG qtp282522288-20 org.eclipse.jetty.io.IdleTimeout - SocketChannelEndPoint@7910a992{/[0:0:0:0:0:0:0:1]:55272<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=8/3600000}{io=0/0,kio=0,kro=0}-><null> idle timeout check, elapsed: 7 ms, remaining: 3599993 ms
DEBUG qtp282522288-22 org.eclipse.jetty.io.IdleTimeout - SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=8/3600000}{io=0/0,kio=0,kro=0}-><null> idle timeout check, elapsed: 7 ms, remaining: 3599993 ms
DEBUG qtp282522288-22 org.eclipse.jetty.http.PreEncodedHttpField - HttpField encoders loaded: [org.eclipse.jetty.http.Http1FieldPreEncoder@2293e554]
DEBUG qtp282522288-22 org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null} -> SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=52/3600000}{io=0/0,kio=0,kro=0}-><null>,null,HttpChannelState@6433f9b4{s=IDLE a=NOT_ASYNC i=true r=IDLE w=false}
DEBUG qtp282522288-20 org.eclipse.jetty.server.HttpChannel - new HttpChannelOverHttp@4661281a{r=0,c=false,a=IDLE,uri=null} -> SocketChannelEndPoint@7910a992{/[0:0:0:0:0:0:0:1]:55272<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=52/3600000}{io=0/0,kio=0,kro=0}-><null>,null,HttpChannelState@2b67f227{s=IDLE a=NOT_ASYNC i=true r=IDLE w=false}
DEBUG qtp282522288-20 org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@798fdf6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@ca4c3fa{s=START}]=>HttpChannelOverHttp@4661281a{r=0,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@7910a992{/[0:0:0:0:0:0:0:1]:55272<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=60/3600000}{io=0/0,kio=0,kro=0}-><null>
DEBUG qtp282522288-22 org.eclipse.jetty.server.HttpConnection - New HTTP Connection HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=60/3600000}{io=0/0,kio=0,kro=0}-><null>
DEBUG qtp282522288-22 org.eclipse.jetty.io.AbstractEndPoint - onOpen SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=61/3600000}{io=0/0,kio=0,kro=0}->HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null}
DEBUG qtp282522288-20 org.eclipse.jetty.io.AbstractEndPoint - onOpen SocketChannelEndPoint@7910a992{/[0:0:0:0:0:0:0:1]:55272<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=61/3600000}{io=0/0,kio=0,kro=0}->HttpConnection@798fdf6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@ca4c3fa{s=START}]=>HttpChannelOverHttp@4661281a{r=0,c=false,a=IDLE,uri=null}
DEBUG qtp282522288-22 org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=62/3600000}{io=0/0,kio=0,kro=0}->HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null}
DEBUG qtp282522288-20 org.eclipse.jetty.io.AbstractConnection - onOpen HttpConnection@798fdf6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@ca4c3fa{s=START}]=>HttpChannelOverHttp@4661281a{r=0,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@7910a992{/[0:0:0:0:0:0:0:1]:55272<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=62/3600000}{io=0/0,kio=0,kro=0}->HttpConnection@798fdf6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@ca4c3fa{s=START}]=>HttpChannelOverHttp@4661281a{r=0,c=false,a=IDLE,uri=null}
DEBUG qtp282522288-22 org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=63/3600000}{io=0/0,kio=0,kro=0}->HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null}
DEBUG qtp282522288-20 org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@798fdf6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@ca4c3fa{s=START}]=>HttpChannelOverHttp@4661281a{r=0,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@7910a992{/[0:0:0:0:0:0:0:1]:55272<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=63/3600000}{io=0/0,kio=0,kro=0}->HttpConnection@798fdf6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@ca4c3fa{s=START}]=>HttpChannelOverHttp@4661281a{r=0,c=false,a=IDLE,uri=null}
DEBUG qtp282522288-22 org.eclipse.jetty.io.FillInterest - interested FillInterest@62e1f51{AC.ReadCB@9225b28{HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=1/3600000}{io=0/0,kio=0,kro=0}->HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null}}}
DEBUG qtp282522288-20 org.eclipse.jetty.io.FillInterest - interested FillInterest@29ea6b67{AC.ReadCB@798fdf6{HttpConnection@798fdf6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@ca4c3fa{s=START}]=>HttpChannelOverHttp@4661281a{r=0,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@7910a992{/[0:0:0:0:0:0:0:1]:55272<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=1/3600000}{io=0/0,kio=0,kro=0}->HttpConnection@798fdf6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@ca4c3fa{s=START}]=>HttpChannelOverHttp@4661281a{r=0,c=false,a=IDLE,uri=null}}}
DEBUG qtp282522288-22 org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=1/3600000}{io=0/1,kio=0,kro=0}->HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null}
DEBUG qtp282522288-20 org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for SocketChannelEndPoint@7910a992{/[0:0:0:0:0:0:0:1]:55272<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=1/3600000}{io=0/1,kio=0,kro=0}->HttpConnection@798fdf6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@ca4c3fa{s=START}]=>HttpChannelOverHttp@4661281a{r=0,c=false,a=IDLE,uri=null}
DEBUG qtp282522288-22 org.eclipse.jetty.io.ManagedSelector - Queued change CEP:SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=2/3600000}{io=0/1,kio=0,kro=0}->HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null}:runUpdateKey:NON_BLOCKING on org.eclipse.jetty.io.ManagedSelector@407b8966 id=1 keys=1 selected=0 actions=0
DEBUG qtp282522288-22 org.eclipse.jetty.io.ManagedSelector - Created SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=3/3600000}{io=0/1,kio=0,kro=0}->HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null}
DEBUG qtp282522288-22 org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$CreateEndPoint@1908a07a
DEBUG qtp282522288-20 org.eclipse.jetty.io.ManagedSelector - Queued change CEP:SocketChannelEndPoint@7910a992{/[0:0:0:0:0:0:0:1]:55272<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=3/3600000}{io=0/1,kio=0,kro=0}->HttpConnection@798fdf6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@ca4c3fa{s=START}]=>HttpChannelOverHttp@4661281a{r=0,c=false,a=IDLE,uri=null}:runUpdateKey:NON_BLOCKING on org.eclipse.jetty.io.ManagedSelector@677dea73 id=0 keys=1 selected=0 actions=0
DEBUG qtp282522288-18 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@43deff0 woken up from select, 0/1 selected
DEBUG qtp282522288-16 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@6b77ec32 woken up from select, 0/1 selected
DEBUG qtp282522288-18 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@43deff0 processing 0 keys, 1 actions
DEBUG qtp282522288-16 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@6b77ec32 processing 0 keys, 1 actions
DEBUG qtp282522288-18 org.eclipse.jetty.io.ManagedSelector - action=CEP:SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=5/3600000}{io=0/1,kio=0,kro=0}->HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null}:runUpdateKey:NON_BLOCKING wakeup=false
DEBUG qtp282522288-16 org.eclipse.jetty.io.ManagedSelector - action=CEP:SocketChannelEndPoint@7910a992{/[0:0:0:0:0:0:0:1]:55272<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=5/3600000}{io=0/1,kio=0,kro=0}->HttpConnection@798fdf6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@ca4c3fa{s=START}]=>HttpChannelOverHttp@4661281a{r=0,c=false,a=IDLE,uri=null}:runUpdateKey:NON_BLOCKING wakeup=false
DEBUG qtp282522288-20 org.eclipse.jetty.io.ManagedSelector - Created SocketChannelEndPoint@7910a992{/[0:0:0:0:0:0:0:1]:55272<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=4/3600000}{io=0/1,kio=0,kro=0}->HttpConnection@798fdf6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@ca4c3fa{s=START}]=>HttpChannelOverHttp@4661281a{r=0,c=false,a=IDLE,uri=null}
DEBUG qtp282522288-20 org.eclipse.jetty.util.thread.QueuedThreadPool - ran org.eclipse.jetty.io.ManagedSelector$CreateEndPoint@70736575
DEBUG qtp282522288-18 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@722b5af3/SelectorProducer@51f28d07/PRODUCING/ReservedThreadExecutor@7d25d204{s=2/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} t=CEP:SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=5/3600000}{io=0/1,kio=0,kro=0}->HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null}:runUpdateKey:NON_BLOCKING/NON_BLOCKING
DEBUG qtp282522288-16 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@12e62382/SelectorProducer@63ee4ed9/PRODUCING/ReservedThreadExecutor@7d25d204{s=2/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} t=CEP:SocketChannelEndPoint@7910a992{/[0:0:0:0:0:0:0:1]:55272<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=6/3600000}{io=0/1,kio=0,kro=0}->HttpConnection@798fdf6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@ca4c3fa{s=START}]=>HttpChannelOverHttp@4661281a{r=0,c=false,a=IDLE,uri=null}:runUpdateKey:NON_BLOCKING/NON_BLOCKING
DEBUG qtp282522288-18 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@722b5af3/SelectorProducer@51f28d07/PRODUCING/ReservedThreadExecutor@7d25d204{s=2/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} PC t=CEP:SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=6/3600000}{io=0/1,kio=0,kro=0}->HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null}:runUpdateKey:NON_BLOCKING
DEBUG qtp282522288-16 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@12e62382/SelectorProducer@63ee4ed9/PRODUCING/ReservedThreadExecutor@7d25d204{s=2/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} PC t=CEP:SocketChannelEndPoint@7910a992{/[0:0:0:0:0:0:0:1]:55272<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=7/3600000}{io=0/1,kio=0,kro=0}->HttpConnection@798fdf6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@ca4c3fa{s=START}]=>HttpChannelOverHttp@4661281a{r=0,c=false,a=IDLE,uri=null}:runUpdateKey:NON_BLOCKING
DEBUG qtp282522288-18 org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=7/3600000}{io=1/1,kio=1,kro=0}->HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null}
DEBUG qtp282522288-16 org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on SocketChannelEndPoint@7910a992{/[0:0:0:0:0:0:0:1]:55272<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=8/3600000}{io=1/1,kio=1,kro=0}->HttpConnection@798fdf6[p=HttpParser{s=START,0 of -1},g=HttpGenerator@ca4c3fa{s=START}]=>HttpChannelOverHttp@4661281a{r=0,c=false,a=IDLE,uri=null}
DEBUG qtp282522288-18 org.eclipse.jetty.io.ManagedSelector - Forcing selection, actions=0
DEBUG qtp282522288-16 org.eclipse.jetty.io.ManagedSelector - Forcing selection, actions=0
DEBUG qtp282522288-18 org.eclipse.jetty.io.ManagedSelector - action=null wakeup=false
DEBUG qtp282522288-16 org.eclipse.jetty.io.ManagedSelector - action=null wakeup=false
DEBUG qtp282522288-18 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@43deff0 waiting on select
DEBUG qtp282522288-16 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@6b77ec32 waiting on select
DEBUG qtp282522288-18 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@43deff0 woken up from select, 1/1 selected
DEBUG qtp282522288-18 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@43deff0 processing 1 keys, 0 actions
DEBUG qtp282522288-18 org.eclipse.jetty.io.ManagedSelector - selected channel=java.nio.channels.SocketChannel[connected local=/[0:0:0:0:0:0:0:1]:4567 remote=/[0:0:0:0:0:0:0:1]:55271], selector=sun.nio.ch.KQueueSelectorImpl@43deff0, interestOps=1, readyOps=1 SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=5406/3600000}{io=1/1,kio=1,kro=1}->HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null}
DEBUG qtp282522288-18 org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=5408/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null}
DEBUG qtp282522288-18 org.eclipse.jetty.io.ChannelEndPoint - task CEP:SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=5408/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null}:runFillable:BLOCKING
DEBUG qtp282522288-18 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@722b5af3/SelectorProducer@51f28d07/PRODUCING/ReservedThreadExecutor@7d25d204{s=2/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} t=CEP:SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=5409/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null}:runFillable:BLOCKING/BLOCKING
DEBUG qtp282522288-18 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7d25d204{s=2/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} tryExecute EatWhatYouKill@722b5af3/SelectorProducer@51f28d07/PRODUCING/ReservedThreadExecutor@7d25d204{s=2/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
DEBUG qtp282522288-18 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7d25d204{s=1/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}@5f4d364 offer EatWhatYouKill@722b5af3/SelectorProducer@51f28d07/PRODUCING/ReservedThreadExecutor@7d25d204{s=1/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
DEBUG qtp282522288-21 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@7d25d204{s=1/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}@5f4d364 task=EatWhatYouKill@722b5af3/SelectorProducer@51f28d07/IDLE/ReservedThreadExecutor@7d25d204{s=1/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
DEBUG qtp282522288-18 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@722b5af3/SelectorProducer@51f28d07/IDLE/ReservedThreadExecutor@7d25d204{s=1/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} EPC t=CEP:SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=5412/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null}:runFillable:BLOCKING
DEBUG qtp282522288-21 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@722b5af3/SelectorProducer@51f28d07/IDLE/ReservedThreadExecutor@7d25d204{s=1/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} run
DEBUG qtp282522288-21 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@722b5af3/SelectorProducer@51f28d07/IDLE/ReservedThreadExecutor@7d25d204{s=1/4,p=0}@SelectorManager@ServerConnector@63aa3c4d{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} produce
DEBUG qtp282522288-18 org.eclipse.jetty.io.FillInterest - fillable FillInterest@62e1f51{AC.ReadCB@9225b28{HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=5413/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null}}}
DEBUG qtp282522288-21 org.eclipse.jetty.io.ManagedSelector - action=null wakeup=false
DEBUG qtp282522288-21 org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=5414/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpConnection - HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=5414/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null} onFillable enter HttpChannelState@6433f9b4{s=IDLE a=NOT_ASYNC i=true r=IDLE w=false} null
DEBUG qtp282522288-21 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@43deff0 waiting on select
DEBUG qtp282522288-18 org.eclipse.jetty.io.ChannelEndPoint - filled 1249 SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=5416/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpConnection - HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=4/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null} filled 1249 HeapByteBuffer@2fe6adb6[p=0,l=1249,c=8192,r=1249]={<<<POST /newtrip HTT...tination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpConnection - HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=5/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@9225b28[p=HttpParser{s=START,0 of -1},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=0,c=false,a=IDLE,uri=null} parse HeapByteBuffer@2fe6adb6[p=0,l=1249,c=8192,r=1249]={<<<POST /newtrip HTT...tination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} {}
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@2fe6adb6[p=0,l=1249,c=8192,r=1249]={<<<POST /newtrip HTT...tination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - START --> SPACE1
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - SPACE1 --> URI
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - URI --> SPACE2
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_NAME
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/x-www-form-urlencoded --> IN_VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:Content-Type: application/x-www-form-urlencoded --> FIELD
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_NAME
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_NAME
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_NAME
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_NAME
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - HEADER --> CONTENT
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:4567/newtrip on HttpChannelOverHttp@7a1733a6{r=1,c=false,a=IDLE,uri=//localhost:4567/newtrip}
POST //localhost:4567/newtrip HTTP/1.1
Host: localhost:4567
Connection: keep-alive
Content-Length: 37
Cache-Control: max-age=0
Origin: http://localhost:4567
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@731490db[c=1,q=1,[0]=EOF,s=STREAM] read 1 from Content@46521f38{HeapByteBufferR@2fcec895[p=1567,l=1591,c=8192,r=24]={POST /login HTTP/...p6v0.node0\r\n\r\nu<<<sername=Avril1&password=>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@731490db[c=2,q=1,[0]=EOF,s=STREAM] read 1 from Content@46521f38{HeapByteBufferR@2fcec895[p=1568,l=1591,c=8192,r=23]={POST /login HTTP/...6v0.node0\r\n\r\nus<<<ername=Avril1&password=>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@731490db[c=3,q=1,[0]=EOF,s=STREAM] read 1 from Content@46521f38{HeapByteBufferR@2fcec895[p=1569,l=1591,c=8192,r=22]={POST /login HTTP/...v0.node0\r\n\r\nuse<<<rname=Avril1&password=>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@731490db[c=4,q=1,[0]=EOF,s=STREAM] read 1 from Content@46521f38{HeapByteBufferR@2fcec895[p=1570,l=1591,c=8192,r=21]={POST /login HTTP/...0.node0\r\n\r\nuser<<<name=Avril1&password=>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@731490db[c=5,q=1,[0]=EOF,s=STREAM] read 1 from Content@46521f38{HeapByteBufferR@2fcec895[p=1571,l=1591,c=8192,r=20]={POST /login HTTP/....node0\r\n\r\nusern<<<ame=Avril1&password=>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@731490db[c=6,q=1,[0]=EOF,s=STREAM] read 1 from Content@46521f38{HeapByteBufferR@2fcec895[p=1572,l=1591,c=8192,r=19]={POST /login HTTP/...node0\r\n\r\nuserna<<<me=Avril1&password=>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@731490db[c=7,q=1,[0]=EOF,s=STREAM] read 1 from Content@46521f38{HeapByteBufferR@2fcec895[p=1573,l=1591,c=8192,r=18]={POST /login HTTP/...ode0\r\n\r\nusernam<<<e=Avril1&password=>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@731490db[c=8,q=1,[0]=EOF,s=STREAM] read 1 from Content@46521f38{HeapByteBufferR@2fcec895[p=1574,l=1591,c=8192,r=17]={POST /login HTTP/...de0\r\n\r\nusername<<<=Avril1&password=>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@731490db[c=9,q=1,[0]=EOF,s=STREAM] read 1 from Content@46521f38{HeapByteBufferR@2fcec895[p=1575,l=1591,c=8192,r=16]={POST /login HTTP/...e0\r\n\r\nusername=<<<Avril1&password=>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@731490db[c=10,q=1,[0]=EOF,s=STREAM] read 1 from Content@46521f38{HeapByteBufferR@2fcec895[p=1576,l=1591,c=8192,r=15]={POST /login HTTP/...0\r\n\r\nusername=A<<<vril1&password=>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@731490db[c=11,q=1,[0]=EOF,s=STREAM] read 1 from Content@46521f38{HeapByteBufferR@2fcec895[p=1577,l=1591,c=8192,r=14]={POST /login HTTP/...\r\n\r\nusername=Av<<<ril1&password=>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@731490db[c=12,q=1,[0]=EOF,s=STREAM] read 1 from Content@46521f38{HeapByteBufferR@2fcec895[p=1578,l=1591,c=8192,r=13]={POST /login HTTP/...\n\r\nusername=Avr<<<il1&password=>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@731490db[c=13,q=1,[0]=EOF,s=STREAM] read 1 from Content@46521f38{HeapByteBufferR@2fcec895[p=1579,l=1591,c=8192,r=12]={POST /login HTTP/...\r\nusername=Avri<<<l1&password=>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@731490db[c=14,q=1,[0]=EOF,s=STREAM] read 1 from Content@46521f38{HeapByteBufferR@2fcec895[p=1580,l=1591,c=8192,r=11]={POST /login HTTP/...\nusername=Avril<<<1&password=>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@731490db[c=15,q=1,[0]=EOF,s=STREAM] read 1 from Content@46521f38{HeapByteBufferR@2fcec895[p=1581,l=1591,c=8192,r=10]={POST /login HTTP/...username=Avril1<<<&password=>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@731490db[c=16,q=1,[0]=EOF,s=STREAM] read 1 from Content@46521f38{HeapByteBufferR@2fcec895[p=1582,l=1591,c=8192,r=9]={POST /login HTTP/...sername=Avril1&<<<password=>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@731490db[c=17,q=1,[0]=EOF,s=STREAM] read 1 from Content@46521f38{HeapByteBufferR@2fcec895[p=1583,l=1591,c=8192,r=8]={POST /login HTTP/...ername=Avril1&p<<<assword=>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@731490db[c=18,q=1,[0]=EOF,s=STREAM] read 1 from Content@46521f38{HeapByteBufferR@2fcec895[p=1584,l=1591,c=8192,r=7]={POST /login HTTP/...rname=Avril1&pa<<<ssword=>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@731490db[c=19,q=1,[0]=EOF,s=STREAM] read 1 from Content@46521f38{HeapByteBufferR@2fcec895[p=1585,l=1591,c=8192,r=6]={POST /login HTTP/...name=Avril1&pas<<<sword=>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@731490db[c=20,q=1,[0]=EOF,s=STREAM] read 1 from Content@46521f38{HeapByteBufferR@2fcec895[p=1586,l=1591,c=8192,r=5]={POST /login HTTP/...ame=Avril1&pass<<<word=>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@731490db[c=21,q=1,[0]=EOF,s=STREAM] read 1 from Content@46521f38{HeapByteBufferR@2fcec895[p=1587,l=1591,c=8192,r=4]={POST /login HTTP/...me=Avril1&passw<<<ord=>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@731490db[c=22,q=1,[0]=EOF,s=STREAM] read 1 from Content@46521f38{HeapByteBufferR@2fcec895[p=1588,l=1591,c=8192,r=3]={POST /login HTTP/...e=Avril1&passwo<<<rd=>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@731490db[c=23,q=1,[0]=EOF,s=STREAM] read 1 from Content@46521f38{HeapByteBufferR@2fcec895[p=1589,l=1591,c=8192,r=2]={POST /login HTTP/...=Avril1&passwor<<<d=>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@731490db[c=24,q=1,[0]=EOF,s=STREAM] read 1 from Content@46521f38{HeapByteBufferR@2fcec895[p=1590,l=1591,c=8192,r=1]={POST /login HTTP/...Avril1&password<<<=>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@731490db[c=25,q=1,[0]=EOF,s=STREAM] read 1 from Content@46521f38{HeapByteBufferR@2fcec895[p=1591,l=1591,c=8192,r=0]={POST /login HTTP/...vril1&password=<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@7c145205[p=HttpParser{s=END,25 of 25},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=DISPATCHED,uri=//localhost:4567/login}<-SocketChannelEndPoint@220c9e59{/[0:0:0:0:0:0:0:1]:60303<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=35/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@7c145205[p=HttpParser{s=END,25 of 25},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=DISPATCHED,uri=//localhost:4567/login}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@22a2aaa3{s=DISPATCHED a=NOT_ASYNC i=true r=IDLE w=false}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.session - Checking node0dgt4vha1x46z1ancqtjsnnp6v0 is in use by at least one context
DEBUG qtp1527475388-18 org.eclipse.jetty.server.session - Checked node0dgt4vha1x46z1ancqtjsnnp6v0, in use:
DEBUG qtp1527475388-18 org.eclipse.jetty.server.session - Creating new session id=node01o7krbhqrt14c1rf5mbyrolbp80
DEBUG qtp1527475388-18 org.eclipse.jetty.server.session - Req count=1 for id=node01o7krbhqrt14c1rf5mbyrolbp80
DEBUG qtp1527475388-18 org.eclipse.jetty.server.session - updateInactivityTimer
DEBUG qtp1527475388-18 org.eclipse.jetty.server.session - setIdleTimeout called: old=0 new=-1
DEBUG qtp1527475388-18 org.eclipse.jetty.server.session - Session is immortal && no inactivity eviction: timer cancelled
DEBUG qtp1527475388-18 spark.Response - Redirecting (Found 302 to /dashboard
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@48523c4c[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=true callback=Blocker@2f9ba3b7{null}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpChannel - COMMIT for /login on HttpChannelOverHttp@3c1cee87{r=2,c=true,a=DISPATCHED,uri=//localhost:4567/login}
302 null HTTP/1.1
Date: Thu, 23 Apr 2020 10:59:19 GMT
Set-Cookie: JSESSIONID=node01o7krbhqrt14c1rf5mbyrolbp80.node0;Path=/
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Location: http://localhost:4567/dashboard
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpConnection - org.eclipse.jetty.server.HttpConnection$SendCallback@1e5821af[PROCESSING][i=HTTP/1.1{s=302,h=4,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$CommitCallback@49844135] generate: NEED_HEADER (null,[p=0,l=0,c=0,r=0],true)@START
DEBUG qtp1527475388-18 org.eclipse.jetty.http.HttpGenerator - generateHeaders HTTP/1.1{s=302,h=4,cl=-1} last=true content=HeapByteBuffer@48523c4c[p=0,l=0,c=0,r=0]={<<<>>>}
DEBUG qtp1527475388-18 org.eclipse.jetty.http.HttpGenerator - Date: Thu, 23 Apr 2020 10:59:19 GMT
Set-Cookie: JSESSIONID=node01o7krbhqrt14c1rf5mbyrolbp80.node0;Path=/
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Location: http://localhost:4567/dashboard
DEBUG qtp1527475388-18 org.eclipse.jetty.http.HttpGenerator - CONTENT_LENGTH
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpConnection - org.eclipse.jetty.server.HttpConnection$SendCallback@1e5821af[PROCESSING][i=HTTP/1.1{s=302,h=4,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$CommitCallback@49844135] generate: FLUSH ([p=0,l=263,c=8192,r=263],[p=0,l=0,c=0,r=0],true)@COMPLETING
DEBUG qtp1527475388-18 org.eclipse.jetty.io.WriteFlusher - write: WriteFlusher@3c0bc7af{IDLE}->null [HeapByteBuffer@17d152f1[p=0,l=263,c=8192,r=263]={<<<HTTP/1.1 302 Foun....v20171121)\r\n\r\n>>>el Mac OS X 10_13...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}]
DEBUG qtp1527475388-18 org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3c0bc7af{WRITING}->null:IDLE-->WRITING
DEBUG qtp1527475388-18 org.eclipse.jetty.io.ChannelEndPoint - flushed 263 SocketChannelEndPoint@220c9e59{/[0:0:0:0:0:0:0:1]:60303<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=W,to=45/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@7c145205[p=HttpParser{s=END,25 of 25},g=HttpGenerator@77c1e549{s=COMPLETING}]=>HttpChannelOverHttp@3c1cee87{r=2,c=true,a=DISPATCHED,uri=//localhost:4567/login}
DEBUG qtp1527475388-18 org.eclipse.jetty.io.WriteFlusher - Flushed=true 263/263+0 WriteFlusher@3c0bc7af{WRITING}->null
DEBUG qtp1527475388-18 org.eclipse.jetty.io.WriteFlusher - update WriteFlusher@3c0bc7af{IDLE}->null:WRITING-->IDLE
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpConnection - org.eclipse.jetty.server.HttpConnection$SendCallback@1e5821af[PROCESSING][i=HTTP/1.1{s=302,h=4,cl=-1},cb=org.eclipse.jetty.server.HttpChannel$CommitCallback@49844135] generate: DONE ([p=263,l=263,c=8192,r=0],[p=0,l=0,c=0,r=0],true)@END
DEBUG qtp1527475388-18 org.eclipse.jetty.server.session - FinalSession=org.eclipse.jetty.server.session.Session@604a271 old_session_manager=null this=spark.embeddedserver.jetty.JettyHandler1400685827==dftMaxIdleSec=-1
DEBUG qtp1527475388-18 org.eclipse.jetty.server.session - Store: id=node01o7krbhqrt14c1rf5mbyrolbp80, dirty=true, lsave=0, period=0, elapsed=1587639559472
DEBUG qtp1527475388-18 org.eclipse.jetty.server.session - Non passivating SessionDataStore, session in SessionCache only id=node01o7krbhqrt14c1rf5mbyrolbp80
DEBUG qtp1527475388-18 org.eclipse.jetty.server.Server - handled=true async=false committed=true on HttpChannelOverHttp@3c1cee87{r=2,c=true,a=DISPATCHED,uri=//localhost:4567/login}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpChannelState - unhandle HttpChannelState@22a2aaa3{s=DISPATCHED a=NOT_ASYNC i=true r=READY w=false}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpChannel - HttpChannelOverHttp@3c1cee87{r=2,c=true,a=COMPLETING,uri=//localhost:4567/login} action COMPLETE
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpChannelState - onComplete HttpChannelState@22a2aaa3{s=COMPLETING a=NOT_ASYNC i=false r=READY w=false}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpChannel - COMPLETE for /login written=0
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpChannelState - recycle HttpChannelState@22a2aaa3{s=COMPLETED a=NOT_ASYNC i=false r=READY w=false}
DEBUG qtp1527475388-18 org.eclipse.jetty.http.HttpParser - reset HttpParser{s=END,25 of 25}
DEBUG qtp1527475388-18 org.eclipse.jetty.http.HttpParser - END --> START
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpChannel - HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null} handle exit, result COMPLETE
DEBUG qtp1527475388-18 org.eclipse.jetty.io.ChannelEndPoint - filled 0 SocketChannelEndPoint@220c9e59{/[0:0:0:0:0:0:0:1]:60303<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=4/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}
DEBUG qtp1527475388-18 org.eclipse.jetty.io.ChannelEndPoint - filled 0 SocketChannelEndPoint@220c9e59{/[0:0:0:0:0:0:0:1]:60303<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=5/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpConnection - HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@220c9e59{/[0:0:0:0:0:0:0:1]:60303<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=5/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null} filled 0 HeapByteBuffer@17d152f1[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 302 Foun...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpConnection - HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@220c9e59{/[0:0:0:0:0:0:0:1]:60303<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=6/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null} parse HeapByteBuffer@17d152f1[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 302 Foun...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} {}
DEBUG qtp1527475388-18 org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@17d152f1[p=0,l=0,c=8192,r=0]={<<<>>>HTTP/1.1 302 Foun...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpConnection - HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@220c9e59{/[0:0:0:0:0:0:0:1]:60303<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=7/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null} parsed false HttpParser{s=START,0 of -1}
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@220c9e59{/[0:0:0:0:0:0:0:1]:60303<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=7/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}
DEBUG qtp1527475388-18 org.eclipse.jetty.io.AbstractConnection - fillInterested HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@220c9e59{/[0:0:0:0:0:0:0:1]:60303<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=8/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}
DEBUG qtp1527475388-18 org.eclipse.jetty.io.FillInterest - interested FillInterest@7472e728{AC.ReadCB@7c145205{HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@220c9e59{/[0:0:0:0:0:0:0:1]:60303<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=0/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}}}
DEBUG qtp1527475388-18 org.eclipse.jetty.io.ChannelEndPoint - changeInterests p=false 0->1 for SocketChannelEndPoint@220c9e59{/[0:0:0:0:0:0:0:1]:60303<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=1/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}
DEBUG qtp1527475388-18 org.eclipse.jetty.io.ManagedSelector - Queued change CEP:SocketChannelEndPoint@220c9e59{/[0:0:0:0:0:0:0:1]:60303<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=1/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}:runUpdateKey:NON_BLOCKING on org.eclipse.jetty.io.ManagedSelector@71baa53 id=1 keys=1 selected=0 actions=0
DEBUG qtp1527475388-19 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@25fb347f woken up from select, 0/1 selected
DEBUG qtp1527475388-19 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@25fb347f processing 0 keys, 1 actions
DEBUG qtp1527475388-18 org.eclipse.jetty.server.HttpConnection - HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@220c9e59{/[0:0:0:0:0:0:0:1]:60303<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=2/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null} onFillable exit HttpChannelState@22a2aaa3{s=IDLE a=NOT_ASYNC i=true r=IDLE w=false} null
DEBUG qtp1527475388-19 org.eclipse.jetty.io.ManagedSelector - action=CEP:SocketChannelEndPoint@220c9e59{/[0:0:0:0:0:0:0:1]:60303<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=2/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}:runUpdateKey:NON_BLOCKING wakeup=false
DEBUG qtp1527475388-18 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@77fb9415{s=2/4,p=0}@SelectorManager@ServerConnector@4d6d8a37{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}@21c45233 waiting
DEBUG qtp1527475388-19 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@77047f8d/SelectorProducer@40eea7e3/PRODUCING/ReservedThreadExecutor@77fb9415{s=2/4,p=0}@SelectorManager@ServerConnector@4d6d8a37{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} t=CEP:SocketChannelEndPoint@220c9e59{/[0:0:0:0:0:0:0:1]:60303<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=3/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}:runUpdateKey:NON_BLOCKING/NON_BLOCKING
DEBUG qtp1527475388-19 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@77047f8d/SelectorProducer@40eea7e3/PRODUCING/ReservedThreadExecutor@77fb9415{s=2/4,p=0}@SelectorManager@ServerConnector@4d6d8a37{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} PC t=CEP:SocketChannelEndPoint@220c9e59{/[0:0:0:0:0:0:0:1]:60303<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=3/3600000}{io=0/1,kio=0,kro=1}->HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}:runUpdateKey:NON_BLOCKING
DEBUG qtp1527475388-19 org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 0 -> 1 on SocketChannelEndPoint@220c9e59{/[0:0:0:0:0:0:0:1]:60303<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=4/3600000}{io=1/1,kio=1,kro=1}->HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}
DEBUG qtp1527475388-19 org.eclipse.jetty.io.ManagedSelector - Forcing selection, actions=0
DEBUG qtp1527475388-19 org.eclipse.jetty.io.ManagedSelector - action=null wakeup=false
DEBUG qtp1527475388-19 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@25fb347f waiting on select
DEBUG qtp1527475388-19 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@25fb347f woken up from select, 1/1 selected
DEBUG qtp1527475388-19 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@25fb347f processing 1 keys, 0 actions
DEBUG qtp1527475388-19 org.eclipse.jetty.io.ManagedSelector - selected channel=java.nio.channels.SocketChannel[connected local=/[0:0:0:0:0:0:0:1]:4567 remote=/[0:0:0:0:0:0:0:1]:60303], selector=sun.nio.ch.KQueueSelectorImpl@25fb347f, interestOps=1, readyOps=1 SocketChannelEndPoint@220c9e59{/[0:0:0:0:0:0:0:1]:60303<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=5/3600000}{io=1/1,kio=1,kro=1}->HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}
DEBUG qtp1527475388-19 org.eclipse.jetty.io.ChannelEndPoint - onSelected 1->0 r=true w=false for SocketChannelEndPoint@220c9e59{/[0:0:0:0:0:0:0:1]:60303<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=5/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}
DEBUG qtp1527475388-19 org.eclipse.jetty.io.ChannelEndPoint - task CEP:SocketChannelEndPoint@220c9e59{/[0:0:0:0:0:0:0:1]:60303<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=6/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}:runFillable:BLOCKING
DEBUG qtp1527475388-19 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@77047f8d/SelectorProducer@40eea7e3/PRODUCING/ReservedThreadExecutor@77fb9415{s=2/4,p=0}@SelectorManager@ServerConnector@4d6d8a37{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} t=CEP:SocketChannelEndPoint@220c9e59{/[0:0:0:0:0:0:0:1]:60303<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=7/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}:runFillable:BLOCKING/BLOCKING
DEBUG qtp1527475388-19 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@77fb9415{s=2/4,p=0}@SelectorManager@ServerConnector@4d6d8a37{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} tryExecute EatWhatYouKill@77047f8d/SelectorProducer@40eea7e3/PRODUCING/ReservedThreadExecutor@77fb9415{s=2/4,p=0}@SelectorManager@ServerConnector@4d6d8a37{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
DEBUG qtp1527475388-19 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@77fb9415{s=1/4,p=0}@SelectorManager@ServerConnector@4d6d8a37{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}@21c45233 offer EatWhatYouKill@77047f8d/SelectorProducer@40eea7e3/PRODUCING/ReservedThreadExecutor@77fb9415{s=1/4,p=0}@SelectorManager@ServerConnector@4d6d8a37{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
DEBUG qtp1527475388-18 org.eclipse.jetty.util.thread.ReservedThreadExecutor - ReservedThreadExecutor@77fb9415{s=1/4,p=0}@SelectorManager@ServerConnector@4d6d8a37{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}@21c45233 task=EatWhatYouKill@77047f8d/SelectorProducer@40eea7e3/IDLE/ReservedThreadExecutor@77fb9415{s=1/4,p=0}@SelectorManager@ServerConnector@4d6d8a37{HTTP/1.1,[http/1.1]}{0.0.0.0:4567}
DEBUG qtp1527475388-19 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@77047f8d/SelectorProducer@40eea7e3/IDLE/ReservedThreadExecutor@77fb9415{s=1/4,p=0}@SelectorManager@ServerConnector@4d6d8a37{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} EPC t=CEP:SocketChannelEndPoint@220c9e59{/[0:0:0:0:0:0:0:1]:60303<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=9/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}:runFillable:BLOCKING
DEBUG qtp1527475388-18 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@77047f8d/SelectorProducer@40eea7e3/IDLE/ReservedThreadExecutor@77fb9415{s=1/4,p=0}@SelectorManager@ServerConnector@4d6d8a37{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} run
DEBUG qtp1527475388-18 org.eclipse.jetty.util.thread.strategy.EatWhatYouKill - EatWhatYouKill@77047f8d/SelectorProducer@40eea7e3/IDLE/ReservedThreadExecutor@77fb9415{s=1/4,p=0}@SelectorManager@ServerConnector@4d6d8a37{HTTP/1.1,[http/1.1]}{0.0.0.0:4567} produce
DEBUG qtp1527475388-19 org.eclipse.jetty.io.FillInterest - fillable FillInterest@7472e728{AC.ReadCB@7c145205{HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@220c9e59{/[0:0:0:0:0:0:0:1]:60303<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=FI,flush=-,to=11/3600000}{io=1/0,kio=1,kro=1}->HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}}}
DEBUG qtp1527475388-18 org.eclipse.jetty.io.ManagedSelector - action=null wakeup=false
DEBUG qtp1527475388-18 org.eclipse.jetty.io.ChannelEndPoint - Key interests updated 1 -> 0 on SocketChannelEndPoint@220c9e59{/[0:0:0:0:0:0:0:1]:60303<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=12/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}
DEBUG qtp1527475388-19 org.eclipse.jetty.server.HttpConnection - HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@220c9e59{/[0:0:0:0:0:0:0:1]:60303<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=12/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null} onFillable enter HttpChannelState@22a2aaa3{s=IDLE a=NOT_ASYNC i=true r=IDLE w=false} null
DEBUG qtp1527475388-18 org.eclipse.jetty.io.ManagedSelector - Selector sun.nio.ch.KQueueSelectorImpl@25fb347f waiting on select
DEBUG qtp1527475388-19 org.eclipse.jetty.io.ChannelEndPoint - filled 1470 SocketChannelEndPoint@220c9e59{/[0:0:0:0:0:0:0:1]:60303<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=13/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}
DEBUG qtp1527475388-19 org.eclipse.jetty.server.HttpConnection - HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@220c9e59{/[0:0:0:0:0:0:0:1]:60303<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=0/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null} filled 1470 HeapByteBuffer@17d152f1[p=0,l=1470,c=8192,r=1470]={<<<GET /dashboard HT...lbp80.node0\r\n\r\n>>>--85f1818830fb86c...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}
DEBUG qtp1527475388-19 org.eclipse.jetty.server.HttpConnection - HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null}<-SocketChannelEndPoint@220c9e59{/[0:0:0:0:0:0:0:1]:60303<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=1/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@7c145205[p=HttpParser{s=START,0 of -1},g=HttpGenerator@77c1e549{s=START}]=>HttpChannelOverHttp@3c1cee87{r=2,c=false,a=IDLE,uri=null} parse HeapByteBuffer@17d152f1[p=0,l=1470,c=8192,r=1470]={<<<GET /dashboard HT...lbp80.node0\r\n\r\n>>>--85f1818830fb86c...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} {}
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - parseNext s=START HeapByteBuffer@17d152f1[p=0,l=1470,c=8192,r=1470]={<<<GET /dashboard HT...lbp80.node0\r\n\r\n>>>--85f1818830fb86c...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - START --> SPACE1
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - SPACE1 --> URI
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - URI --> SPACE2
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - SPACE2 --> REQUEST_VERSION
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - REQUEST_VERSION --> HEADER
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:4567 --> IN_VALUE
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:Host: localhost:4567 --> FIELD
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> IN_VALUE
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:Connection: keep-alive --> FIELD
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_NAME
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36 --> IN_VALUE
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36 --> FIELD
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_NAME
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9 --> IN_VALUE
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9 --> FIELD
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_NAME
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_NAME
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_NAME
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:Accept-Encoding: gzip, deflate, br --> IN_VALUE
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:Accept-Encoding: gzip, deflate, br --> FIELD
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:Accept-Language: en-US,en;q=0.9 --> IN_VALUE
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:Accept-Language: en-US,en;q=0.9 --> FIELD
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> VALUE
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> IN_VALUE
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER:null --> FIELD
DEBUG qtp1527475388-19 org.eclipse.jetty.http.HttpParser - HEADER --> END
DEBUG qtp1527475388-19 org.eclipse.jetty.server.HttpChannel - REQUEST for //localhost:4567/dashboard on HttpChannelOverHttp@3c1cee87{r=3,c=false,a=IDLE,uri=//localhost:4567/dashboard}
GET //localhost:4567/dashboard HTTP/1.1
Host: localhost:4567
Connection: keep-alive
Cache-Control: max-age=0
Upgrade-Insecure-Requests: 1
Content-Type: application/x-www-form-urlencoded
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.122 Safari/537.36
Sec-Fetch-Dest: document
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9
Sec-Fetch-Site: same-origin
Sec-Fetch-Mode: navigate
Sec-Fetch-User: ?1
Referer: http://localhost:4567/newtrip?
Accept-Encoding: gzip, deflate, br
Accept-Language: en-GB,en-US;q=0.9,en;q=0.8
Cookie: rack.session=BAh7CEkiD3Nlc3Npb25faWQGOgZFVG86HVJhY2s6OlNlc3Npb246OlNlc3Npb25JZAY6D0BwdWJsaWNfaWRJIkVmMDA4Y2ZhNjM0YzIxNTIyMTJiNmMxNmE2NjQwMWZhODIyZGY0Y2RmNDMwZWQ1ZmJlZDQ3OGJjMzZmYmExNzI2BjsARkkiCWNzcmYGOwBGSSIxb09Db0hRQlFWSGQ4VTdDeFhYKzJaSUtCMkYvem9qdDRXMVJvbitHQ0ovMD0GOwBGSSINdHJhY2tpbmcGOwBGewZJIhRIVFRQX1VTRVJfQUdFTlQGOwBUSSItOGJhYmNmZmM1NWE5ZjRlYjJjZWUzODU5YWIwMzEzMzU5MTg4MzMyZgY7AEY%3D--ec6db0d0aa0e36466c48874a079fb977f89da024; JSESSIONID=node0h7jn91ewdhzi713aa9j1s99k0.node0
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpConnection - HttpConnection@9225b28[p=HttpParser{s=CONTENT,0 of 37},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=1,c=false,a=IDLE,uri=//localhost:4567/newtrip}<-SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=28/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@9225b28[p=HttpParser{s=CONTENT,0 of 37},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=1,c=false,a=IDLE,uri=//localhost:4567/newtrip} parsed true HttpParser{s=CONTENT,0 of 37}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpChannel - HttpChannelOverHttp@7a1733a6{r=1,c=false,a=IDLE,uri=//localhost:4567/newtrip} handle //localhost:4567/newtrip
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpChannelState - handling HttpChannelState@6433f9b4{s=IDLE a=NOT_ASYNC i=true r=IDLE w=false}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpChannel - HttpChannelOverHttp@7a1733a6{r=1,c=false,a=DISPATCHED,uri=//localhost:4567/newtrip} action DISPATCH
DEBUG qtp282522288-18 org.eclipse.jetty.server.Server - REQUEST POST /newtrip on HttpChannelOverHttp@7a1733a6{r=1,c=false,a=DISPATCHED,uri=//localhost:4567/newtrip}
DEBUG qtp282522288-18 org.eclipse.jetty.server.session - Got Session ID node0h7jn91ewdhzi713aa9j1s99k0.node0 from cookie
DEBUG qtp282522288-18 org.eclipse.jetty.server.session - Session node0h7jn91ewdhzi713aa9j1s99k0 not found locally, attempting to load
DEBUG qtp282522288-18 org.eclipse.jetty.server.session - sessionHandler=spark.embeddedserver.jetty.JettyHandler1179115732==dftMaxIdleSec=-1
DEBUG qtp282522288-18 org.eclipse.jetty.server.session - session=null
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpConnection - HttpConnection@9225b28[p=HttpParser{s=CONTENT,0 of 37},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=1,c=false,a=DISPATCHED,uri=//localhost:4567/newtrip}<-SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=62/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@9225b28[p=HttpParser{s=CONTENT,0 of 37},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=1,c=false,a=DISPATCHED,uri=//localhost:4567/newtrip} parse HeapByteBuffer@2fe6adb6[p=1212,l=1249,c=8192,r=37]={POST /newtrip HTT...s99k0.node0\r\n\r\n<<<trip_name_1=Thurs...tination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00} {}
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - parseNext s=CONTENT HeapByteBuffer@2fe6adb6[p=1212,l=1249,c=8192,r=37]={POST /newtrip HTT...s99k0.node0\r\n\r\n<<<trip_name_1=Thurs...tination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpChannel - HttpChannelOverHttp@7a1733a6{r=1,c=false,a=DISPATCHED,uri=//localhost:4567/newtrip} onContent Content@68710fa1{HeapByteBufferR@46864419[p=1212,l=1249,c=8192,r=37]={POST /newtrip HTT...s99k0.node0\r\n\r\n<<<trip_name_1=Thurs...tination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=0,q=0,[0]=null,s=STREAM] addContent Content@68710fa1{HeapByteBufferR@46864419[p=1212,l=1249,c=8192,r=37]={POST /newtrip HTT...s99k0.node0\r\n\r\n<<<trip_name_1=Thurs...tination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.http.HttpParser - CONTENT --> END
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpChannel - HttpChannelOverHttp@7a1733a6{r=1,c=false,a=DISPATCHED,uri=//localhost:4567/newtrip} onContentComplete
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpChannel - HttpChannelOverHttp@7a1733a6{r=1,c=false,a=DISPATCHED,uri=//localhost:4567/newtrip} onRequestComplete
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=0,q=1,[0]=EOF,s=STREAM] addContent EOF
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpConnection - HttpConnection@9225b28[p=HttpParser{s=END,37 of 37},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=1,c=false,a=DISPATCHED,uri=//localhost:4567/newtrip}<-SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=69/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@9225b28[p=HttpParser{s=END,37 of 37},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=1,c=false,a=DISPATCHED,uri=//localhost:4567/newtrip} parsed false HttpParser{s=END,37 of 37}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=1,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1213,l=1249,c=8192,r=36]={POST /newtrip HTT...99k0.node0\r\n\r\nt<<<rip_name_1=Thurs2...tination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=2,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1214,l=1249,c=8192,r=35]={POST /newtrip HTT...9k0.node0\r\n\r\ntr<<<ip_name_1=Thurs2&...tination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=3,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1215,l=1249,c=8192,r=34]={POST /newtrip HTT...k0.node0\r\n\r\ntri<<<p_name_1=Thurs2&d...tination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=4,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1216,l=1249,c=8192,r=33]={POST /newtrip HTT...0.node0\r\n\r\ntrip<<<_name_1=Thurs2&de...tination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=5,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1217,l=1249,c=8192,r=32]={POST /newtrip HTT....node0\r\n\r\ntrip_<<<name_1=Thurs2&destination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=6,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1218,l=1249,c=8192,r=31]={POST /newtrip HTT...node0\r\n\r\ntrip_n<<<ame_1=Thurs2&destination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=7,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1219,l=1249,c=8192,r=30]={POST /newtrip HTT...ode0\r\n\r\ntrip_na<<<me_1=Thurs2&destination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=8,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1220,l=1249,c=8192,r=29]={POST /newtrip HTT...de0\r\n\r\ntrip_nam<<<e_1=Thurs2&destination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=9,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1221,l=1249,c=8192,r=28]={POST /newtrip HTT...e0\r\n\r\ntrip_name<<<_1=Thurs2&destination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=10,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1222,l=1249,c=8192,r=27]={POST /newtrip HTT...0\r\n\r\ntrip_name_<<<1=Thurs2&destination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=11,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1223,l=1249,c=8192,r=26]={POST /newtrip HTT...\r\n\r\ntrip_name_1<<<=Thurs2&destination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=12,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1224,l=1249,c=8192,r=25]={POST /newtrip HTT...\n\r\ntrip_name_1=<<<Thurs2&destination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=13,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1225,l=1249,c=8192,r=24]={POST /newtrip HTT...\r\ntrip_name_1=T<<<hurs2&destination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=14,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1226,l=1249,c=8192,r=23]={POST /newtrip HTT...\ntrip_name_1=Th<<<urs2&destination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=15,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1227,l=1249,c=8192,r=22]={POST /newtrip HTT...trip_name_1=Thu<<<rs2&destination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=16,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1228,l=1249,c=8192,r=21]={POST /newtrip HTT...rip_name_1=Thur<<<s2&destination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=17,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1229,l=1249,c=8192,r=20]={POST /newtrip HTT...ip_name_1=Thurs<<<2&destination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=18,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1230,l=1249,c=8192,r=19]={POST /newtrip HTT...p_name_1=Thurs2<<<&destination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=19,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1231,l=1249,c=8192,r=18]={POST /newtrip HTT..._name_1=Thurs2&<<<destination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=20,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1232,l=1249,c=8192,r=17]={POST /newtrip HTT...name_1=Thurs2&d<<<estination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=21,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1233,l=1249,c=8192,r=16]={POST /newtrip HTT...ame_1=Thurs2&de<<<stination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=22,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1234,l=1249,c=8192,r=15]={POST /newtrip HTT...me_1=Thurs2&des<<<tination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=23,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1235,l=1249,c=8192,r=14]={POST /newtrip HTT...e_1=Thurs2&dest<<<ination=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=24,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1236,l=1249,c=8192,r=13]={POST /newtrip HTT..._1=Thurs2&desti<<<nation=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=25,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1237,l=1249,c=8192,r=12]={POST /newtrip HTT...1=Thurs2&destin<<<ation=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=26,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1238,l=1249,c=8192,r=11]={POST /newtrip HTT...=Thurs2&destina<<<tion=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=27,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1239,l=1249,c=8192,r=10]={POST /newtrip HTT...Thurs2&destinat<<<ion=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=28,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1240,l=1249,c=8192,r=9]={POST /newtrip HTT...hurs2&destinati<<<on=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=29,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1241,l=1249,c=8192,r=8]={POST /newtrip HTT...urs2&destinatio<<<n=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=30,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1242,l=1249,c=8192,r=7]={POST /newtrip HTT...rs2&destination<<<=Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=31,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1243,l=1249,c=8192,r=6]={POST /newtrip HTT...s2&destination=<<<Cancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=32,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1244,l=1249,c=8192,r=5]={POST /newtrip HTT...2&destination=C<<<ancun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=33,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1245,l=1249,c=8192,r=4]={POST /newtrip HTT...&destination=Ca<<<ncun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=34,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1246,l=1249,c=8192,r=3]={POST /newtrip HTT...destination=Can<<<cun>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=35,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1247,l=1249,c=8192,r=2]={POST /newtrip HTT...estination=Canc<<<un>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=36,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1248,l=1249,c=8192,r=1]={POST /newtrip HTT...stination=Cancu<<<n>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpInput - HttpInputOverHTTP@25dd97c2[c=37,q=1,[0]=EOF,s=STREAM] read 1 from Content@68710fa1{HeapByteBufferR@46864419[p=1249,l=1249,c=8192,r=0]={POST /newtrip HTT...tination=Cancun<<<>>>\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00...\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00}}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpConnection - releaseRequestBuffer HttpConnection@9225b28[p=HttpParser{s=END,37 of 37},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=1,c=false,a=DISPATCHED,uri=//localhost:4567/newtrip}<-SocketChannelEndPoint@2d784041{/[0:0:0:0:0:0:0:1]:55271<->/[0:0:0:0:0:0:0:1]:4567,OPEN,fill=-,flush=-,to=85/3600000}{io=0/0,kio=0,kro=1}->HttpConnection@9225b28[p=HttpParser{s=END,37 of 37},g=HttpGenerator@3a3b7b87{s=START}]=>HttpChannelOverHttp@7a1733a6{r=1,c=false,a=DISPATCHED,uri=//localhost:4567/newtrip}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpChannelState - onEof HttpChannelState@6433f9b4{s=DISPATCHED a=NOT_ASYNC i=true r=IDLE w=false}
DEBUG qtp282522288-18 org.eclipse.jetty.server.session - Checking node0h7jn91ewdhzi713aa9j1s99k0 is in use by at least one context
DEBUG qtp282522288-18 org.eclipse.jetty.server.session - Checked node0h7jn91ewdhzi713aa9j1s99k0, in use:
DEBUG qtp282522288-18 org.eclipse.jetty.server.session - Creating new session id=node01hycm7otu6z9uehn5nc5u895r0
DEBUG qtp282522288-18 org.eclipse.jetty.server.session - Req count=1 for id=node01hycm7otu6z9uehn5nc5u895r0
DEBUG qtp282522288-18 org.eclipse.jetty.server.session - updateInactivityTimer
DEBUG qtp282522288-18 org.eclipse.jetty.server.session - setIdleTimeout called: old=0 new=-1
DEBUG qtp282522288-18 org.eclipse.jetty.server.session - Session is immortal && no inactivity eviction: timer cancelled
DEBUG qtp282522288-18 org.sql2o.Query - total: 5 ms; executed update [No name]
DEBUG qtp282522288-18 spark.Response - Redirecting (Found 302 to /pickhotel
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpChannel - sendResponse info=null content=HeapByteBuffer@4c62455f[p=0,l=0,c=0,r=0]={<<<>>>} complete=true committing=true callback=Blocker@60cceb1a{null}
DEBUG qtp282522288-18 org.eclipse.jetty.server.HttpChannel - COMMIT for /newtrip on HttpChannelOverHttp@7a1733a6{r=1,c=true,a=DISPATCHED,uri=//localhost:4567/newtrip}
302 null HTTP/1.1
Date: Thu, 23 Apr 2020 10:37:23 GMT
Set-Cookie: JSESSIONID=node01hycm7otu6z9uehn5nc5u895r0.node0;Path=/
Expires: Thu, 01 Jan 1970 00:00:00 GMT