-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoom.txt
2801 lines (2801 loc) · 336 KB
/
oom.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- Logs begin at Thu 2016-06-09 22:30:35 UTC, end at Mon 2016-06-13 22:36:55 UTC. --
Jun 13 22:12:51 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:51.943126909Z" level=warning msg="task updates not yet supported" task.id=4b6l6izb15fpootjoojczythr
Jun 13 22:12:51 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:51.943848251Z" level=debug msg="state changed" state.desired=RUNNING state.transition="ACCEPTED->PREPARING" task.id=4b6l6izb15fpootjoojczythr
Jun 13 22:12:51 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:51.944606679Z" level=debug msg="(*Agent).UpdateTaskStatus" task.id=4b6l6izb15fpootjoojczythr
Jun 13 22:12:52 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:52.102173439Z" level=error msg="Failed to delete real server 10.0.2.3 for vip 10.0.2.2 fwmark 258: no such file or directory"
Jun 13 22:12:52 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:52.115416691Z" level=debug msg="2016/06/13 22:12:52 [DEBUG] memberlist: TCP connection from=172.19.29.201:37740\n"
Jun 13 22:12:52 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:52.115884797Z" level=warning msg="2016/06/13 22:12:52 [ERR] memberlist: failed to receive: EOF from=172.19.29.201:37740\n"
Jun 13 22:12:52 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:52.368088673Z" level=debug msg="Trying to pull reis from https://registry-1.docker.io v2"
Jun 13 22:12:52 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:52.384437764Z" level=warning msg="2016/06/13 22:12:52 [WARN] memberlist: Refuting a suspect message (from: manager)\n"
Jun 13 22:12:52 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:52.385671108Z" level=debug msg="task status reported"
Jun 13 22:12:52 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:52.475634098Z" level=debug msg="84aa74d518c21de7 [logterm: 0, index: 37389] rejected msgApp [logterm: 2, index: 37389] from 7a5d54c1bed70eac"
Jun 13 22:12:54 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:54.272736184Z" level=debug msg="2016/06/13 22:12:54 [DEBUG] memberlist: Failed UDP ping: ip-172-19-241-145 (timeout reached)\n"
Jun 13 22:12:54 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:54.274884684Z" level=debug msg="2016/06/13 22:12:54 [DEBUG] memberlist: TCP connection from=172.19.29.201:37748\n"
Jun 13 22:12:54 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:54.495008053Z" level=info msg="2016/06/13 22:12:54 [INFO] memberlist: Suspect ip-172-19-241-145 has failed, no acks received\n"
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.426071879Z" level=warning msg="2016/06/13 22:12:56 [WARN] memberlist: Refuting a suspect message (from: manager)\n"
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.426803537Z" level=debug msg="2016/06/13 22:12:56 [DEBUG] memberlist: TCP connection from=172.19.29.201:37762\n"
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.427465923Z" level=debug msg="ip-172-19-241-146: Initiating bulk sync with nodes [manager]"
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.427921769Z" level=debug msg="ip-172-19-241-146: Initiating bulk sync for networks [8dcvpzm8as9nmqjx5gkscucr9 3650q66w16062huv8srhfo3pg] with node manager"
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.429367284Z" level=debug msg="2016/06/13 22:12:56 [DEBUG] memberlist: Failed UDP ping: manager (timeout reached)\n"
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.443289851Z" level=debug msg="(*worker).Assign" len(tasks)=27
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.443797659Z" level=debug msg=assigned task.desiredstate=SHUTDOWN task.id=dv3lb211cnem97pskyiu6b1r5
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.444293701Z" level=debug msg=assigned task.desiredstate=SHUTDOWN task.id=7rgdagvg5oefpj900msxe759b
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.444856586Z" level=debug msg=assigned task.desiredstate=SHUTDOWN task.id=e57vcujuew469s3pb53fyl6q5
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.445383330Z" level=debug msg=assigned task.desiredstate=SHUTDOWN task.id=7fcx3dc5qu7lgqvkftruig3zc
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.445819072Z" level=debug msg=assigned task.desiredstate=SHUTDOWN task.id=6vgpc9fxoh6wcdijd60e3zryp
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.446245082Z" level=debug msg=assigned task.desiredstate=RUNNING task.id=bx87xcbtwdesay41z54frt4gj
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.446654530Z" level=debug msg=assigned task.desiredstate=SHUTDOWN task.id=8yq1td3rpfpyizue1ndk6dfy0
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.447060832Z" level=debug msg=assigned task.desiredstate=SHUTDOWN task.id=ajgqu4x3jr2mxd2ryo72mt5nx
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.447176446Z" level=debug msg=assigned task.desiredstate=RUNNING task.id=2wa3mfi4d9trh2hvxng0d5f8x
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.447235088Z" level=debug msg=assigned task.desiredstate=SHUTDOWN task.id=6mv2ia9gg6r2zjejz0aldw0ak
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.447296629Z" level=debug msg=assigned task.desiredstate=SHUTDOWN task.id=ekm9f1t7rbjfpmahivb6g0fjz
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.447354654Z" level=debug msg=assigned task.desiredstate=SHUTDOWN task.id=9rk7bw2fiats8va46lppyic2q
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.447401267Z" level=debug msg=assigned task.desiredstate=RUNNING task.id=4b6l6izb15fpootjoojczythr
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.447445565Z" level=debug msg=assigned task.desiredstate=SHUTDOWN task.id=5ftwktexsq7nicircsma0ojyv
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.447510732Z" level=debug msg=assigned task.desiredstate=RUNNING task.id=75idr9rsq2wm7e90j4hu9yde3
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.447568557Z" level=debug msg=assigned task.desiredstate=SHUTDOWN task.id=b0e3v7xrkqm92jd3lxiln9nga
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.447624048Z" level=debug msg=assigned task.desiredstate=RUNNING task.id=d6as1ex5p4tmwoordwffhcf1a
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.447669219Z" level=debug msg=assigned task.desiredstate=SHUTDOWN task.id=et82evhj2srlxpe2htz56odxb
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.447713845Z" level=debug msg=assigned task.desiredstate=SHUTDOWN task.id=blvvw52of65cfd5pn3fm9f3qe
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.447755877Z" level=debug msg=assigned task.desiredstate=RUNNING task.id=4ms6munr70gvoa6kpkn0rotzj
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.447797749Z" level=debug msg=assigned task.desiredstate=RUNNING task.id=cj6p8mz00zbkmaiu9z0p2sl83
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.447853962Z" level=debug msg=assigned task.desiredstate=RUNNING task.id=a1mji4gkmugx1d9ht8pj6oom3
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.447911012Z" level=debug msg=assigned task.desiredstate=SHUTDOWN task.id=0fbat3xm4dcf1ei23ixbfzbtw
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.447967103Z" level=debug msg=assigned task.desiredstate=RUNNING task.id=a3qkw657u53blxjjazmop95gj
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.448023220Z" level=debug msg=assigned task.desiredstate=SHUTDOWN task.id=ei6idvty9i1grs3v4lt0wsuef
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.448067014Z" level=debug msg=assigned task.desiredstate=SHUTDOWN task.id=837z67l3dvdyu0qqaby3nnmcj
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.448126397Z" level=debug msg=assigned task.desiredstate=SHUTDOWN task.id=9svd34624g5fiwdvcmnpgvwlo
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.471192180Z" level=debug msg="2016/06/13 22:12:56 [DEBUG] memberlist: TCP connection from=172.19.29.201:37766\n"
Jun 13 22:12:56 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:12:56.471962803Z" level=debug msg="ip-172-19-241-146: Bulk sync to node manager took 41.656026ms"
Jun 13 22:13:01 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:01.091077124Z" level=debug msg="2016/06/13 22:13:01 [DEBUG] memberlist: TCP connection from=172.19.29.201:37774\n"
Jun 13 22:13:01 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:01.658029611Z" level=info msg="2016/06/13 22:13:01 [INFO] memberlist: Marking ip-172-19-241-145 as failed, suspect timeout reached\n"
Jun 13 22:13:01 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:01.659034001Z" level=info msg="2016/06/13 22:13:01 [INFO] memberlist: Suspect ip-172-19-241-145 has failed, no acks received\n"
Jun 13 22:13:05 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:05.979950974Z" level=warning msg="2016/06/13 22:13:05 [WARN] memberlist: Refuting a suspect message (from: manager)\n"
Jun 13 22:13:05 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:05.981388841Z" level=debug msg="2016/06/13 22:13:05 [DEBUG] memberlist: TCP connection from=172.19.29.201:37784\n"
Jun 13 22:13:06 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:06.570097624Z" level=debug msg="2016/06/13 22:13:06 [DEBUG] memberlist: TCP connection from=172.19.29.201:37780\n"
Jun 13 22:13:06 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:06.571126262Z" level=debug msg="84aa74d518c21de7 [logterm: 0, index: 37392] rejected msgApp [logterm: 2, index: 37392] from 7a5d54c1bed70eac"
Jun 13 22:13:09 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:09.768783736Z" level=warning msg="2016/06/13 22:13:09 [WARN] memberlist: Refuting a suspect message (from: manager)\n"
Jun 13 22:13:09 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:09.771256225Z" level=debug msg="2016/06/13 22:13:09 [DEBUG] memberlist: TCP connection from=172.19.29.201:37790\n"
Jun 13 22:13:09 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:09.771879313Z" level=debug msg="ip-172-19-241-146: Initiating bulk sync with nodes [manager]"
Jun 13 22:13:09 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:09.772363056Z" level=debug msg="ip-172-19-241-146: Initiating bulk sync for networks [3650q66w16062huv8srhfo3pg 8dcvpzm8as9nmqjx5gkscucr9] with node manager"
Jun 13 22:13:10 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:10.718184315Z" level=debug msg="2016/06/13 22:13:10 [DEBUG] memberlist: TCP connection from=172.19.29.201:37794\n"
Jun 13 22:13:10 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:10.719095597Z" level=debug msg="ip-172-19-241-146: Bulk sync to node manager took 944.629867ms"
Jun 13 22:13:14 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:14.976708997Z" level=warning msg="2016/06/13 22:13:14 [WARN] memberlist: Refuting a suspect message (from: manager)\n"
Jun 13 22:13:14 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:14.986508291Z" level=debug msg="2016/06/13 22:13:14 [DEBUG] memberlist: TCP connection from=172.19.29.201:37804\n"
Jun 13 22:13:20 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:20.471862043Z" level=debug msg="2016/06/13 22:13:20 [DEBUG] memberlist: Initiating push/pull sync with: 172.19.29.201:7946\n"
Jun 13 22:13:21 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:21.429749564Z" level=debug msg="2016/06/13 22:13:21 [DEBUG] memberlist: TCP connection from=172.19.29.201:37796\n"
Jun 13 22:13:21 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:21.430749595Z" level=debug msg="2016/06/13 22:13:21 [DEBUG] memberlist: TCP connection from=172.19.29.201:37802\n"
Jun 13 22:13:21 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:21.432255828Z" level=debug msg="2016/06/13 22:13:21 [DEBUG] memberlist: Failed UDP ping: manager (timeout reached)\n"
Jun 13 22:13:21 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:21.433073712Z" level=warning msg="2016/06/13 22:13:21 [WARN] memberlist: Refuting a suspect message (from: manager)\n"
Jun 13 22:13:21 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:21.445017861Z" level=debug msg="2016/06/13 22:13:21 [DEBUG] memberlist: TCP connection from=172.19.29.201:37816\n"
Jun 13 22:13:22 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:22.546037805Z" level=error msg="Error trying v2 registry: Get https://registry-1.docker.io/v2/library/reis/manifests/latest: Get https://auth.docker.io/token?scope=repository%3Alibrary%2Freis%3Apull&service=registry.docker.io: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)"
Jun 13 22:13:22 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:22.546753147Z" level=error msg="Attempting next endpoint for pull after error: Get https://registry-1.docker.io/v2/library/reis/manifests/latest: Get https://auth.docker.io/token?scope=repository%3Alibrary%2Freis%3Apull&service=registry.docker.io: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)"
Jun 13 22:13:22 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:22.555620079Z" level=debug msg="Skipping v1 endpoint https://index.docker.io because v2 registry was detected"
Jun 13 22:13:22 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:22.560270204Z" level=debug msg="(*Agent).UpdateTaskStatus" task.id=4b6l6izb15fpootjoojczythr
Jun 13 22:13:22 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:22.561192601Z" level=debug msg="2016/06/13 22:13:22 [DEBUG] memberlist: TCP connection from=172.19.29.201:37808\n"
Jun 13 22:13:22 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:22.563888519Z" level=debug msg="2016/06/13 22:13:22 [DEBUG] memberlist: TCP connection from=172.19.29.201:37812\n"
Jun 13 22:13:31 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:31.622759244Z" level=debug msg="2016/06/13 22:13:31 [DEBUG] memberlist: Failed UDP ping: manager (timeout reached)\n"
Jun 13 22:13:31 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:31.632029645Z" level=info msg="2016/06/13 22:13:31 [INFO] memberlist: Suspect manager has failed, no acks received\n"
Jun 13 22:13:31 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:31.633213367Z" level=debug msg="Trying to pull reis from https://registry-1.docker.io v2"
Jun 13 22:13:31 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:31.634188930Z" level=debug msg="2016/06/13 22:13:31 [DEBUG] memberlist: TCP connection from=172.19.29.201:37822\n"
Jun 13 22:13:31 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:31.634669712Z" level=warning msg="2016/06/13 22:13:31 [ERR] memberlist: failed to receive: EOF from=172.19.29.201:37822\n"
Jun 13 22:13:31 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:31.647950794Z" level=warning msg="2016/06/13 22:13:31 [WARN] memberlist: Refuting a suspect message (from: manager)\n"
Jun 13 22:13:31 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:31.648711562Z" level=debug msg="task status reported"
Jun 13 22:13:32 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:32.139045572Z" level=debug msg="2016/06/13 22:13:32 [DEBUG] memberlist: Failed UDP ping: manager (timeout reached)\n"
Jun 13 22:13:32 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:32.139794064Z" level=debug msg="ip-172-19-241-146: Initiating bulk sync with nodes [ip-172-19-241-145]"
Jun 13 22:13:32 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:32.140273103Z" level=debug msg="ip-172-19-241-146: Initiating bulk sync for networks [eygnxs66cw0sr2uj95q8jv1t1 3650q66w16062huv8srhfo3pg 8dcvpzm8as9nmqjx5gkscucr9] with node ip-172-19-241-145"
Jun 13 22:13:35 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:35.321965124Z" level=warning msg="2016/06/13 22:13:35 [ERR] memberlist: Failed TCP fallback ping: write tcp 172.19.241.146:40472->172.19.29.201:7946: i/o timeout\n"
Jun 13 22:13:38 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:38.967949740Z" level=debug msg="2016/06/13 22:13:38 [DEBUG] memberlist: TCP connection from=172.19.29.201:37830\n"
Jun 13 22:13:38 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:38.968855341Z" level=warning msg="2016/06/13 22:13:38 [ERR] memberlist: failed to receive: EOF from=172.19.29.201:37830\n"
Jun 13 22:13:48 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:48.535479699Z" level=debug msg="2016/06/13 22:13:48 [DEBUG] memberlist: Failed UDP ping: manager (timeout reached)\n"
Jun 13 22:13:48 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:48.537270966Z" level=warning msg="Error getting v2 registry: Get https://registry-1.docker.io/v2/: net/http: request canceled (Client.Timeout exceeded while awaiting headers)"
Jun 13 22:13:48 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:48.537683280Z" level=error msg="Attempting next endpoint for pull after error: Get https://registry-1.docker.io/v2/: net/http: request canceled (Client.Timeout exceeded while awaiting headers)"
Jun 13 22:13:48 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:48.538075468Z" level=debug msg="Trying to pull reis from https://index.docker.io v1"
Jun 13 22:13:48 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:48.538627764Z" level=debug msg="hostDir: /etc/docker/certs.d/docker.io"
Jun 13 22:13:48 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:48.547279736Z" level=debug msg="[registry] Calling GET https://index.docker.io/v1/repositories/library/reis/images"
Jun 13 22:13:48 ip-172-19-241-146 dockerd[23568]: time="2016-06-13T22:13:48.550734440Z" level=debug msg="pull progress map[status:Pulling repository docker.io/library/reis]"
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: fatal error: runtime: out of memory
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: runtime stack:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: runtime.throw(0x1ecb210, 0x16)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/panic.go:547 +0x90
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: runtime.sysMap(0xc8cce20000, 0x32b10000, 0x1000b3c00, 0x2ab9298)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/mem_linux.go:206 +0x9b
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: runtime.(*mheap).sysAlloc(0x2a93bc0, 0x32b10000, 0xc800000000)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/malloc.go:429 +0x191
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: runtime.(*mheap).grow(0x2a93bc0, 0x19588, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/mheap.go:651 +0x63
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: runtime.(*mheap).allocSpanLocked(0x2a93bc0, 0x19581, 0xc820000000)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/mheap.go:553 +0x4f6
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: runtime.(*mheap).alloc_m(0x2a93bc0, 0x19581, 0x100000000, 0xc81ff7b60f)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/mheap.go:437 +0x119
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: runtime.(*mheap).alloc.func1()
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/mheap.go:502 +0x41
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: runtime.systemstack(0x7fdbbfffeca8)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/asm_amd64.s:307 +0xab
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: runtime.(*mheap).alloc(0x2a93bc0, 0x19581, 0x10100000000, 0xecee5c)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/mheap.go:503 +0x63
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: runtime.largeAlloc(0x32b02000, 0xc800000000, 0xc82172bac8)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/malloc.go:766 +0xb3
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: runtime.mallocgc.func3()
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/malloc.go:664 +0x33
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: runtime.systemstack(0xc820012000)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/asm_amd64.s:291 +0x79
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: runtime.mstart()
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/proc.go:1051
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 170 [running]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: runtime.systemstack_switch()
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/asm_amd64.s:245 fp=0xc82172bb10 sp=0xc82172bb08
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: runtime.mallocgc(0x32b02000, 0x17013c0, 0xc800000000, 0x10)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/malloc.go:665 +0x9eb fp=0xc82172bbe8 sp=0xc82172bb10
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: runtime.newarray(0x17013c0, 0x32b0200, 0xc821190000)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/malloc.go:798 +0xc9 fp=0xc82172bc28 sp=0xc82172bbe8
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: runtime.growslice(0x16c38c0, 0xc822600000, 0x288ce00, 0x288ce00, 0x288ce01, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/slice.go:100 +0x2c1 fp=0xc82172bc98 sp=0xc82172bc28
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/libnetwork/networkdb.(*NetworkDB).bulkSyncTables(0xc82085c6e0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/networkdb/cluster.go:322 +0x70c fp=0xc82172bea8 sp=0xc82172bc98
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/libnetwork/networkdb.(*NetworkDB).(github.com/docker/libnetwork/networkdb.bulkSyncTables)-fm()
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/networkdb/cluster.go:122 +0x20 fp=0xc82172beb8 sp=0xc82172bea8
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/libnetwork/networkdb.(*NetworkDB).triggerFunc(0xc82085c6e0, 0x6fc23ac00, 0xc821235260, 0xc821235140, 0xc82089e410)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/networkdb/cluster.go:169 +0x112 fp=0xc82172bf78 sp=0xc82172beb8
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: runtime.goexit()
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/asm_amd64.s:1998 +0x1 fp=0xc82172bf80 sp=0xc82172bf78
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/libnetwork/networkdb.(*NetworkDB).clusterInit
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/networkdb/cluster.go:125 +0x92a
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 1 [chan receive, 251 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: main.(*DaemonCli).start(0xc8203a9230, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/cmd/dockerd/daemon.go:306 +0x2229
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: main.main()
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/cmd/dockerd/docker.go:68 +0x491
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 17 [syscall, 251 minutes, locked to thread]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: runtime.goexit()
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/asm_amd64.s:1998 +0x1
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 14 [select, 251 minutes, locked to thread]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: runtime.gopark(0x2158688, 0xc82001bf28, 0x1d5b008, 0x6, 0x18, 0x2)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/proc.go:262 +0x163
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: runtime.selectgoImpl(0xc82001bf28, 0x0, 0x18)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/select.go:392 +0xa67
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: runtime.selectgo(0xc82001bf28)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/select.go:215 +0x12
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: runtime.ensureSigM.func1()
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/signal1_unix.go:279 +0x358
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: runtime.goexit()
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/asm_amd64.s:1998 +0x1
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 6 [syscall, 251 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: os/signal.signal_recv(0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/sigqueue.go:116 +0x132
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: os/signal.loop()
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/os/signal/signal_unix.go:22 +0x18
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by os/signal.init.1
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/os/signal/signal_unix.go:28 +0x37
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 15 [chan receive, 251 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/docker/pkg/signal.Trap.func1(0xc8203a75c0, 0xc82039fdc0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/pkg/signal/trap.go:32 +0x71
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/docker/pkg/signal.Trap
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/pkg/signal/trap.go:62 +0x2be
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 16 [syscall, 251 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: syscall.Syscall6(0x3d, 0x5c14, 0xc82001d5dc, 0x0, 0xc8200713b0, 0x0, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/syscall/asm_linux_amd64.s:44 +0x5
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: syscall.wait4(0x5c14, 0xc82001d5dc, 0x0, 0xc8200713b0, 0x90, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/syscall/zsyscall_linux_amd64.go:172 +0x7f
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: syscall.Wait4(0x5c14, 0xc82001d624, 0x0, 0xc8200713b0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/syscall/syscall_linux.go:256 +0x55
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: os.(*Process).wait(0xc8203c26c0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/os/exec_unix.go:22 +0x105
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: os.(*Process).Wait(0xc8203c26c0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/os/doc.go:49 +0x2d
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: os/exec.(*Cmd).Wait(0xc82039bb80, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/os/exec/exec.go:396 +0x211
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/docker/libcontainerd.(*remote).runContainerdDaemon.func1(0xc82039bb80, 0xc820372b00)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/libcontainerd/remote_linux.go:397 +0x21
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/docker/libcontainerd.(*remote).runContainerdDaemon
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/libcontainerd/remote_linux.go:399 +0x1168
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 18 [select, 251 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.(*Conn).transportMonitor(0xc8201f2780)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/clientconn.go:544 +0x1d3
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.NewConn.func1(0xc8201f2780)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/clientconn.go:355 +0x1b5
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by google.golang.org/grpc.NewConn
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/clientconn.go:356 +0x4e3
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 19 [semacquire, 251 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: sync.runtime_Syncsemacquire(0xc8203c1a50)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/sema.go:241 +0x201
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: sync.(*Cond).Wait(0xc8203c1a40)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/sync/cond.go:63 +0x9b
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.(*Conn).WaitForStateChange(0xc8201f2780, 0x7fdbd7bf0940, 0xc82000f118, 0x2, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/clientconn.go:405 +0x19f
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.(*unicastPicker).WaitForStateChange(0xc8203c2760, 0x7fdbd7bf0940, 0xc82000f118, 0x2, 0x1f31140, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/picker.go:96 +0x4f
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.(*ClientConn).WaitForStateChange(0xc820372d10, 0x7fdbd7bf0940, 0xc82000f118, 0x2, 0x1, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/clientconn.go:283 +0x6b
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/docker/libcontainerd.(*remote).handleConnectionChange(0xc820372b00)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/libcontainerd/remote_linux.go:118 +0xb4
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/docker/libcontainerd.New
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/libcontainerd/remote_linux.go:105 +0xa17
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 22 [IO wait, 2 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.runtime_pollWait(0x7fdbd7bfc758, 0x72, 0xc8203e6000)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/netpoll.go:160 +0x60
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*pollDesc).Wait(0xc8203b72c0, 0x72, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_poll_runtime.go:73 +0x3a
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*pollDesc).WaitRead(0xc8203b72c0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_poll_runtime.go:78 +0x36
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*netFD).Read(0xc8203b7260, 0xc8203e6000, 0x8000, 0x8000, 0x0, 0x7fdbd7bec168, 0xc82000e180)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_unix.go:250 +0x23a
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*conn).Read(0xc82001e680, 0xc8203e6000, 0x8000, 0x8000, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/net.go:172 +0xe4
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: bufio.(*Reader).fill(0xc8203a7c80)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/bufio/bufio.go:97 +0x1e9
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: bufio.(*Reader).Read(0xc8203a7c80, 0xc8200b8ab8, 0x9, 0x9, 0xc81ff40fb1, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/bufio/bufio.go:207 +0x260
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: io.ReadAtLeast(0x7fdbd7bfe698, 0xc8203a7c80, 0xc8200b8ab8, 0x9, 0x9, 0x9, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/io/io.go:297 +0xe6
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: io.ReadFull(0x7fdbd7bfe698, 0xc8203a7c80, 0xc8200b8ab8, 0x9, 0x9, 0xc8217e0218, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/io/io.go:315 +0x62
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: golang.org/x/net/http2.readFrameHeader(0xc8200b8ab8, 0x9, 0x9, 0x7fdbd7bfe698, 0xc8203a7c80, 0x0, 0xc800000000, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/golang.org/x/net/http2/frame.go:236 +0xa5
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: golang.org/x/net/http2.(*Framer).ReadFrame(0xc8200b8a80, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/golang.org/x/net/http2/frame.go:463 +0x106
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc/transport.(*framer).readFrame(0xc8203a9b90, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/http_util.go:406 +0x3d
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc/transport.(*http2Client).reader(0xc8201f2870)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/http2_client.go:788 +0x109
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by google.golang.org/grpc/transport.newHTTP2Client
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/http2_client.go:174 +0xd21
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 23 [select, 251 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc/transport.(*http2Client).controller(0xc8201f2870)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/http2_client.go:866 +0x5da
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by google.golang.org/grpc/transport.newHTTP2Client
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/http2_client.go:201 +0x15c2
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 31 [select, 2 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/libnetwork.(*controller).watchLoop(0xc8201f2a50)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/store.go:431 +0x13b
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/libnetwork.(*controller).startWatch
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/store.go:448 +0x112
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 25 [select, 251 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.NewClientStream.func1(0x7fdbd7bfe6e8, 0xc8201f2870, 0xc820082e00, 0xc8203b8640)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/stream.go:151 +0x258
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by google.golang.org/grpc.NewClientStream
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/stream.go:159 +0xab2
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 26 [select, 2 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc/transport.(*recvBufferReader).Read(0xc8203a9ce0, 0xc8203c2a90, 0x5, 0x5, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/transport.go:141 +0x7e6
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc/transport.(*Stream).Read(0xc820082e00, 0xc8203c2a90, 0x5, 0x5, 0x10, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/transport.go:294 +0x71
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: io.ReadAtLeast(0x7fdbd7bfe888, 0xc820082e00, 0xc8203c2a90, 0x5, 0x5, 0x5, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/io/io.go:297 +0xe6
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: io.ReadFull(0x7fdbd7bfe888, 0xc820082e00, 0xc8203c2a90, 0x5, 0x5, 0x2a8afe0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/io/io.go:315 +0x62
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.(*parser).recvMsg(0xc8203c2a80, 0x100000002, 0x0, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/rpc_util.go:216 +0xb9
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.recv(0xc8203c2a80, 0x7fdbd7bfe370, 0x2ab67e0, 0xc820082e00, 0x0, 0x0, 0x1b64380, 0xc82111ed40, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/rpc_util.go:300 +0x45
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.(*clientStream).RecvMsg(0xc8203b8640, 0x1b64380, 0xc82111ed40, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/stream.go:234 +0xac
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/containerd/api/grpc/types.(*aPIEventsClient).Recv(0xc8203b1850, 0xecef1269f, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/containerd/api/grpc/types/api.pb.go:1004 +0x7e
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/docker/libcontainerd.(*remote).handleEventStream(0xc820372b00, 0x7fdbd7bfe9b0, 0xc8203b1850)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/libcontainerd/remote_linux.go:261 +0x6c
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/docker/libcontainerd.(*remote).startEventsMonitor
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/libcontainerd/remote_linux.go:254 +0x184
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 27 [chan receive, 251 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/docker/daemon.setupDumpStackTrap.func1(0xc8203a7f20)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/daemon/debugtrap_unix.go:17 +0x4d
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/docker/daemon.setupDumpStackTrap
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/daemon/debugtrap_unix.go:20 +0x13f
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 55 [IO wait, 2 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.runtime_pollWait(0x7fdbd7bfc698, 0x72, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/netpoll.go:160 +0x60
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*pollDesc).Wait(0xc8203a3090, 0x72, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_poll_runtime.go:73 +0x3a
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*pollDesc).WaitRead(0xc8203a3090, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_poll_runtime.go:78 +0x36
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*netFD).accept(0xc8203a3030, 0x0, 0x7fdbd7bfe508, 0xc820700180)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_unix.go:426 +0x27c
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*UnixListener).AcceptUnix(0xc82031b140, 0xc820685ed0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/unixsock_posix.go:305 +0x53
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*UnixListener).Accept(0xc82031b140, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/unixsock_posix.go:315 +0x41
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/libnetwork.(*controller).acceptClientConnections(0xc8201f2a50, 0xc8203a2fc0, 0x63, 0x7fdbd7bfe208, 0xc82031b140)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/sandbox_externalkey_unix.go:128 +0x41
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/libnetwork.(*controller).startExternalKeyListener
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/sandbox_externalkey_unix.go:122 +0x28a
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 72 [runnable]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/docker/daemon.(*statsCollector).run(0xc82020c8c0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/daemon/stats_collector_unix.go:106 +0xb6
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/docker/daemon.(*Daemon).newStatsCollector
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/daemon/stats_collector_unix.go:44 +0x1f1
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 73 [chan receive, 1 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/docker/daemon.(*Daemon).execCommandGC(0xc82036d860)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/daemon/exec.go:237 +0x87
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/docker/daemon.NewDaemon
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/daemon/daemon.go:554 +0x33c7
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 74 [chan receive, 251 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: main.(*DaemonCli).setupConfigReloadTrap.func1(0xc820404f60, 0xc8203a9230)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/cmd/dockerd/daemon_unix.go:55 +0x4d
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by main.(*DaemonCli).setupConfigReloadTrap
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/cmd/dockerd/daemon_unix.go:58 +0x14c
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 75 [chan receive, 251 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/docker/api/server.(*Server).serveAPI(0xc8203a7740, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/api/server/server.go:95 +0x19e
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/docker/api/server.(*Server).Wait(0xc8203a7740, 0xc820404fc0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/api/server/server.go:189 +0x2b
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by main.(*DaemonCli).start
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/cmd/dockerd/daemon.go:299 +0x21eb
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 77 [IO wait, 1 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.runtime_pollWait(0x7fdbd7bfc818, 0x72, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/netpoll.go:160 +0x60
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*pollDesc).Wait(0xc8203b6c30, 0x72, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_poll_runtime.go:73 +0x3a
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*pollDesc).WaitRead(0xc8203b6c30, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_poll_runtime.go:78 +0x36
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*netFD).accept(0xc8203b6bd0, 0x0, 0x7fdbd7bfe508, 0xc82121c1a0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_unix.go:426 +0x27c
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*UnixListener).AcceptUnix(0xc82039ff60, 0x20, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/unixsock_posix.go:305 +0x53
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*UnixListener).Accept(0xc82039ff60, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/unixsock_posix.go:315 +0x41
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/docker/cmd/dockerd/hack.(*MalformedHostHeaderOverride).Accept(0xc8203b13c0, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/cmd/dockerd/hack/malformed_host_override.go:116 +0x5f
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net/http.(*Server).Serve(0xc8203bc100, 0x7fdbd7bfe290, 0xc8203b13c0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/http/server.go:2117 +0x129
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/docker/api/server.(*HTTPServer).Serve(0xc8203c2360, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/api/server/server.go:114 +0x47
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/docker/api/server.(*Server).serveAPI.func1(0xc820405080, 0xc8203c2360)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/api/server/server.go:87 +0x13d
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/docker/api/server.(*Server).serveAPI
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/api/server/server.go:91 +0x137
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 78 [select, 251 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.(*Conn).WaitForStateChange.func1(0x7fdbd7bf0940, 0xc82000f118, 0xc8201f2780, 0xc82067b2b0, 0xc8204050e0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/clientconn.go:394 +0x1b1
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by google.golang.org/grpc.(*Conn).WaitForStateChange
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/clientconn.go:402 +0x14e
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 103 [select, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.(*Node).runManager(0xc820877550, 0x7fdbd7bfe820, 0xc8207b4400, 0xc8203c3580, 0xc821235e60, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/node.go:621 +0x9a4
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.(*Node).run.func6(0xc820864e50, 0xc820877550, 0x7fdbd7bfe820, 0xc8207b4400, 0xc8203c3580, 0xc821235e60, 0xc820864e80, 0xc82067bf60)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/node.go:282 +0x4d
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/swarmkit/agent.(*Node).run
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/node.go:285 +0x9be
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 80 [semacquire, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: sync.runtime_Semacquire(0xc820864e8c)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/sema.go:47 +0x26
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: sync.(*WaitGroup).Wait(0xc820864e80)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/sync/waitgroup.go:127 +0xb4
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.(*Node).run(0xc820877550, 0x7fdbd7bfe820, 0xc8207b4400, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/node.go:300 +0xab2
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/swarmkit/agent.(*Node).Start
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/node.go:152 +0x383
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 81 [select, 251 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.(*Node).run.func2(0x7fdbd7bfe820, 0xc8207b4400, 0xc820877550, 0xc82067bf60)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/node.go:165 +0xff
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/swarmkit/agent.(*Node).run
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/node.go:170 +0x14f
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 99 [chan receive, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/docker/daemon/cluster.(*Cluster).reconnectOnFailure(0xc8200b98c0, 0x7fdbd7bfe820, 0xc8207b4300)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/daemon/cluster/cluster.go:142 +0x6a
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/docker/daemon/cluster.(*Cluster).Join
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/daemon/cluster/cluster.go:317 +0x348
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 102 [select, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.(*Node).run.func5(0xc821235e00, 0x7fdbd7bfe820, 0xc8207b4400, 0xc820877550)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/node.go:254 +0x2fc
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/swarmkit/agent.(*Node).run
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/node.go:271 +0x862
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 100 [select, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.(*Node).run.func4(0xc820877550, 0x7fdbd7bfe820, 0xc8207b4400, 0xc821235da0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/node.go:235 +0x1f5
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/swarmkit/agent.(*Node).run
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/node.go:249 +0x773
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 86 [select, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/libnetwork.(*controller).clusterAgentInit(0xc8201f2a50)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/controller.go:273 +0x2c5
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/libnetwork.(*controller).SetClusterProvider
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/controller.go:230 +0xc4
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 87 [select, 251 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.(*Node).Err(0xc820877550, 0x7fdbd7bfe820, 0xc8207b4300, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/node.go:341 +0x16e
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/docker/daemon/cluster.(*Cluster).startNewNode.func1(0xc820877550, 0x7fdbd7bfe820, 0xc8207b4300, 0xc8200b98c0, 0xc82067bee0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/daemon/cluster/cluster.go:208 +0x47
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/docker/daemon/cluster.(*Cluster).startNewNode
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/daemon/cluster/cluster.go:220 +0x646
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 161 [select]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/go-events.(*Broadcaster).run(0xc821295800)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/go-events/broadcast.go:113 +0x9a4
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/go-events.NewBroadcaster
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/go-events/broadcast.go:30 +0x199
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 89 [chan receive, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/docker/daemon/cluster.(*Cluster).startNewNode.func3(0xc820877550, 0x7fdbd7bfe820, 0xc8207b4300, 0xc8200b98c0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/daemon/cluster/cluster.go:240 +0x73
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/docker/daemon/cluster.(*Cluster).startNewNode
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/daemon/cluster/cluster.go:252 +0x6d8
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 90 [select, 251 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.(*Node).ListenControlSocket.func1(0x7fdbd7bfe820, 0xc8207b4300, 0xc820877550, 0xc82076da40)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/node.go:451 +0xf7
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/swarmkit/agent.(*Node).ListenControlSocket
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/node.go:456 +0x110
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 91 [semacquire, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: sync.runtime_Syncsemacquire(0xc8207b4050)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/sema.go:241 +0x201
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: sync.(*Cond).Wait(0xc8207b4040)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/sync/cond.go:63 +0x9b
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.(*Node).ListenControlSocket.func2(0xc82076d9e0, 0xc82076da40, 0xc820877550, 0x7fdbd7bfe820, 0xc8207b4300, 0xc82001e6d8)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/node.go:466 +0xf6
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/swarmkit/agent.(*Node).ListenControlSocket
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/node.go:472 +0x164
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 101 [select, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/ca.RenewTLSConfig.func1(0xc821235e00, 0xc8212f6c80, 0xc821235da0, 0x7fdbd7bfe820, 0xc8207b4400, 0xc8203c3580, 0xc8212f6a40)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/ca/config.go:274 +0xd8b
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/swarmkit/ca.RenewTLSConfig
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/ca/config.go:322 +0xbe
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 104 [select, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.(*Agent).Err(0xc821237e00, 0x7fdbd7bf0940, 0xc82000f118, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/agent.go:120 +0x168
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.(*Node).runAgent(0xc820877550, 0x7fdbd7bfe820, 0xc8207b4400, 0xc8200ffa40, 0x7fdbd41dad98, 0xc82006efc0, 0xc821235ec0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/node.go:398 +0x788
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.(*Node).run.func7(0xc820864e60, 0xc820877550, 0x7fdbd7bfe820, 0xc8207b4400, 0xc8200ffa40, 0xc8203c3580, 0xc821235ec0, 0xc820864e80, 0xc82067bf60)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/node.go:287 +0x8b
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/swarmkit/agent.(*Node).run
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/node.go:290 +0xa48
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 162 [IO wait]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.runtime_pollWait(0x7fdbd7bfbf18, 0x72, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/netpoll.go:160 +0x60
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*pollDesc).Wait(0xc8208806f0, 0x72, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_poll_runtime.go:73 +0x3a
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*pollDesc).WaitRead(0xc8208806f0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_poll_runtime.go:78 +0x36
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*netFD).accept(0xc820880690, 0x0, 0x7fdbd7bfe508, 0xc82152b080)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_unix.go:426 +0x27c
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*TCPListener).AcceptTCP(0xc82001e6a0, 0x2155e70, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/tcpsock_posix.go:254 +0x4d
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/hashicorp/memberlist.(*Memberlist).tcpListen(0xc821314e00)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/hashicorp/memberlist/net.go:188 +0x34
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/hashicorp/memberlist.newMemberlist
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/hashicorp/memberlist/memberlist.go:139 +0xfa9
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 106 [select, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/go-events.(*Broadcaster).run(0xc8212f6fc0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/go-events/broadcast.go:113 +0x9a4
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/go-events.NewBroadcaster
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/go-events/broadcast.go:30 +0x199
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 107 [select]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/go-events.(*Broadcaster).run(0xc821306500)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/go-events/broadcast.go:113 +0x9a4
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/go-events.NewBroadcaster
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/go-events/broadcast.go:30 +0x199
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 144 [chan receive, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/manager.(*Manager).Run.func2(0xc820edf740, 0xc821258c60, 0x7fdbd7bfe820, 0xc82104ea00)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/manager/manager.go:247 +0x96
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/swarmkit/manager.(*Manager).Run
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/manager/manager.go:416 +0x18f
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 130 [select, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.NewClientStream.func1(0x7fdbd7bfe6e8, 0xc82126e000, 0xc8213142a0, 0xc820885400)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/stream.go:151 +0x258
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by google.golang.org/grpc.NewClientStream
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/stream.go:159 +0xab2
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 112 [select, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.(*Conn).transportMonitor(0xc82126e1e0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/clientconn.go:544 +0x1d3
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.NewConn.func1(0xc82126e1e0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/clientconn.go:355 +0x1b5
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by google.golang.org/grpc.NewConn
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/clientconn.go:356 +0x4e3
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 113 [select]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.(*Agent).run(0xc821237e00, 0x7fdbd7bfe820, 0xc821306a00)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/agent.go:162 +0x1248
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/swarmkit/agent.(*Agent).Start
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/agent.go:83 +0x37d
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 132 [select]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/coreos/etcd/raft.(*node).run(0xc821272690, 0xc82120a6c0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/coreos/etcd/raft/node.go:300 +0x1356
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/coreos/etcd/raft.StartNode
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/coreos/etcd/raft/node.go:203 +0x73b
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 116 [semacquire]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: sync.runtime_Syncsemacquire(0xc821240ed0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/sema.go:241 +0x201
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: sync.(*Cond).Wait(0xc821240ec0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/sync/cond.go:63 +0x9b
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.(*statusReporter).run(0xc821240ea0, 0x7fdbd7bfe820, 0xc821306a00)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/reporter.go:96 +0x159
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/swarmkit/agent.newStatusReporter
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/reporter.go:44 +0x13f
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 117 [chan receive, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.(*worker).Listen.func1(0x7fdbd7bfe820, 0xc821306a00, 0xc8213067c0, 0xc82089e200)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/worker.go:180 +0x4e
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/swarmkit/agent.(*worker).Listen
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/worker.go:184 +0x150
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 118 [select, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.(*statusReporter).run.func1(0x7fdbd7bfe820, 0xc821306a00, 0xc821240ea0, 0xc821241500)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/reporter.go:83 +0xfb
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/swarmkit/agent.(*statusReporter).run
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/reporter.go:89 +0xbf
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 121 [IO wait]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.runtime_pollWait(0x7fdbd7bfc398, 0x72, 0xc8220c8000)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/netpoll.go:160 +0x60
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*pollDesc).Wait(0xc82089ca70, 0x72, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_poll_runtime.go:73 +0x3a
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*pollDesc).WaitRead(0xc82089ca70, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_poll_runtime.go:78 +0x36
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*netFD).Read(0xc82089ca10, 0xc8220c8000, 0x4000, 0x4000, 0x0, 0x7fdbd7bec168, 0xc82000e180)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_unix.go:250 +0x23a
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*conn).Read(0xc82001e538, 0xc8220c8000, 0x4000, 0x4000, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/net.go:172 +0xe4
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: crypto/tls.(*block).readFromUntil(0xc820858a80, 0x7fdbd4231dd0, 0xc82001e538, 0x5, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/crypto/tls/conn.go:460 +0xcc
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: crypto/tls.(*Conn).readRecord(0xc82074b800, 0x2158717, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/crypto/tls/conn.go:562 +0x2d1
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: crypto/tls.(*Conn).Read(0xc82074b800, 0xc8208a2000, 0x8000, 0x8000, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/crypto/tls/conn.go:939 +0x167
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: bufio.(*Reader).fill(0xc820ede180)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/bufio/bufio.go:97 +0x1e9
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: bufio.(*Reader).Read(0xc820ede180, 0xc82120a038, 0x9, 0x9, 0xc81ff52011, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/bufio/bufio.go:207 +0x260
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: io.ReadAtLeast(0x7fdbd7bfe698, 0xc820ede180, 0xc82120a038, 0x9, 0x9, 0x9, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/io/io.go:297 +0xe6
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: io.ReadFull(0x7fdbd7bfe698, 0xc820ede180, 0xc82120a038, 0x9, 0x9, 0xc821aa5208, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/io/io.go:315 +0x62
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: golang.org/x/net/http2.readFrameHeader(0xc82120a038, 0x9, 0x9, 0x7fdbd7bfe698, 0xc820ede180, 0x0, 0xc800000000, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/golang.org/x/net/http2/frame.go:236 +0xa5
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: golang.org/x/net/http2.(*Framer).ReadFrame(0xc82120a000, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/golang.org/x/net/http2/frame.go:463 +0x106
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc/transport.(*framer).readFrame(0xc8211560c0, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/http_util.go:406 +0x3d
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc/transport.(*http2Client).reader(0xc82126e000)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/http2_client.go:788 +0x109
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by google.golang.org/grpc/transport.newHTTP2Client
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/http2_client.go:174 +0xd21
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 142 [select, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/manager.(*Manager).Run.func1(0x7fdbd7bfe820, 0xc82104ea00, 0xc821258c60, 0xc82084a500)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/manager/manager.go:236 +0x102
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/swarmkit/manager.(*Manager).Run
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/manager/manager.go:241 +0x102
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 122 [select]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc/transport.(*http2Client).controller(0xc82126e000)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/http2_client.go:866 +0x5da
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by google.golang.org/grpc/transport.newHTTP2Client
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/http2_client.go:201 +0x15c2
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 143 [semacquire, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: sync.runtime_Syncsemacquire(0xc82104ea50)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/sema.go:241 +0x201
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: sync.(*Cond).Wait(0xc82104ea40)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/sync/cond.go:63 +0x9b
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/go-events.(*Queue).next(0xc820888210, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/go-events/queue.go:96 +0xd7
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/go-events.(*Queue).run(0xc820888210)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/go-events/queue.go:68 +0x30
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/go-events.NewQueue
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/go-events/queue.go:29 +0x1b6
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 124 [select, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.NewClientStream.func1(0x7fdbd7bfe6e8, 0xc82126e000, 0xc821314000, 0xc820884320)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/stream.go:151 +0x258
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by google.golang.org/grpc.NewClientStream
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/stream.go:159 +0xab2
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 127 [select]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc/transport.(*Stream).Header(0xc8214ba8c0, 0xc8214ba8c0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/transport.go:221 +0x242
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.recvResponse(0x7fdbd7bfe370, 0x2ab67e0, 0x0, 0x0, 0x0, 0x0, 0x7fdbd7bfe3a8, 0xc82070ca60, 0x7fdbd4231c28, 0xc821306740, ...)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/call.go:54 +0x4e
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.Invoke(0x7fdbd7bfe7b0, 0xc821156870, 0x1f8edc0, 0x28, 0x1c8f980, 0xc821ba2a30, 0x1c8fbe0, 0xc821ba2a40, 0xc821195810, 0x0, ...)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/call.go:178 +0xae6
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/api.(*dispatcherClient).Heartbeat(0xc82001e108, 0x7fdbd7bfe7b0, 0xc821156870, 0xc821ba2a30, 0x0, 0x0, 0x0, 0xc822199e00, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/api/dispatcher.pb.go:581 +0xec
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.(*session).heartbeat(0xc821240de0, 0x7fdbd7bfe7b0, 0xc821156870, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/session.go:121 +0x2cb
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.(*session).(github.com/docker/swarmkit/agent.heartbeat)-fm(0x7fdbd7bfe7b0, 0xc821156870, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/session.go:68 +0x42
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.runctx(0x7fdbd7bfe7b0, 0xc821156870, 0xc821240d80, 0xc821240c00, 0xc82077b750)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/helpers.go:9 +0x55
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/swarmkit/agent.(*session).run
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/session.go:68 +0x485
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 128 [select]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc/transport.(*recvBufferReader).Read(0xc821156bd0, 0xc8210a8af0, 0x5, 0x5, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/transport.go:141 +0x7e6
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc/transport.(*Stream).Read(0xc8213142a0, 0xc8210a8af0, 0x5, 0x5, 0xc81ffbba87, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/transport.go:294 +0x71
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: io.ReadAtLeast(0x7fdbd7bfe888, 0xc8213142a0, 0xc8210a8af0, 0x5, 0x5, 0x5, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/io/io.go:297 +0xe6
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: io.ReadFull(0x7fdbd7bfe888, 0xc8213142a0, 0xc8210a8af0, 0x5, 0x5, 0xc821053a88, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/io/io.go:315 +0x62
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.(*parser).recvMsg(0xc8210a8ae0, 0xc822428d00, 0x0, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/rpc_util.go:216 +0xb9
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.recv(0xc8210a8ae0, 0x7fdbd7bfe370, 0x2ab67e0, 0xc8213142a0, 0x0, 0x0, 0x1c9b060, 0xc821ff6c60, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/rpc_util.go:300 +0x45
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.(*clientStream).RecvMsg(0xc820885400, 0x1c9b060, 0xc821ff6c60, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/stream.go:234 +0xac
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/api.(*dispatcherTasksClient).Recv(0xc82077ba90, 0xc821240b40, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/api/dispatcher.pb.go:623 +0x7e
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.(*session).watch(0xc821240de0, 0x7fdbd7bfe7b0, 0xc821156870, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/session.go:180 +0x24a
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.(*session).(github.com/docker/swarmkit/agent.watch)-fm(0x7fdbd7bfe7b0, 0xc821156870, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/session.go:69 +0x42
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.runctx(0x7fdbd7bfe7b0, 0xc821156870, 0xc821240d80, 0xc821240c00, 0xc82077b760)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/helpers.go:9 +0x55
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/swarmkit/agent.(*session).run
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/session.go:69 +0x50b
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 129 [select, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc/transport.(*recvBufferReader).Read(0xc821156240, 0xc8210a81d0, 0x5, 0x5, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/transport.go:141 +0x7e6
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc/transport.(*Stream).Read(0xc821314000, 0xc8210a81d0, 0x5, 0x5, 0x6, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/transport.go:294 +0x71
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: io.ReadAtLeast(0x7fdbd7bfe888, 0xc821314000, 0xc8210a81d0, 0x5, 0x5, 0x5, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/io/io.go:297 +0xe6
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: io.ReadFull(0x7fdbd7bfe888, 0xc821314000, 0xc8210a81d0, 0x5, 0x5, 0x412ef3, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/io/io.go:315 +0x62
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.(*parser).recvMsg(0xc8210a81c0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/rpc_util.go:216 +0xb9
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.recv(0xc8210a81c0, 0x7fdbd7bfe370, 0x2ab67e0, 0xc821314000, 0x0, 0x0, 0x1c9a480, 0xc82000c0a0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/rpc_util.go:300 +0x45
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.(*clientStream).RecvMsg(0xc820884320, 0x1c9a480, 0xc82000c0a0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/stream.go:234 +0xac
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/api.(*dispatcherSessionClient).Recv(0xc82077b2b0, 0x7fdbd7bfe7b0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/api/dispatcher.pb.go:573 +0x7e
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.(*session).listen(0xc821240de0, 0x7fdbd7bfe7b0, 0xc821156870, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/session.go:148 +0xf5
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.(*session).(github.com/docker/swarmkit/agent.listen)-fm(0x7fdbd7bfe7b0, 0xc821156870, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/session.go:70 +0x42
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.runctx(0x7fdbd7bfe7b0, 0xc821156870, 0xc821240d80, 0xc821240c00, 0xc82077b770)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/helpers.go:9 +0x55
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/swarmkit/agent.(*session).run
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/session.go:70 +0x58d
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 187595 [chan receive]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/docker/daemon.writeDistributionProgress(0xc822198b10, 0x7fdbd417e030, 0xc8223bc5a8, 0xc820bf64e0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/daemon/daemon.go:682 +0x1b1
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/docker/daemon.(*Daemon).pullImageWithReference.func1(0xc822198b10, 0x7fdbd417e030, 0xc8223bc5a8, 0xc820bf64e0, 0xc820bf6540)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/daemon/image_pull.go:86 +0x3f
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/docker/daemon.(*Daemon).pullImageWithReference
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/daemon/image_pull.go:88 +0xff
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 133 [select, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.(*Conn).transportMonitor(0xc82126e4b0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/clientconn.go:544 +0x1d3
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.NewConn.func1(0xc82126e4b0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/clientconn.go:355 +0x1b5
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by google.golang.org/grpc.NewConn
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/clientconn.go:356 +0x4e3
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 134 [runnable]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.runtime_pollWait(0x7fdbd7bfc158, 0x77, 0x462cb0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/netpoll.go:160 +0x60
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*pollDesc).Wait(0xc8218d1f70, 0x77, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_poll_runtime.go:73 +0x3a
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*pollDesc).WaitWrite(0xc8218d1f70, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_poll_runtime.go:82 +0x36
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*netFD).connect(0xc8218d1f10, 0x0, 0x0, 0x7fdbd4231da8, 0xc8219928e0, 0xecef12734, 0x1ac549d1, 0x2a8afe0, 0x0, 0x0, ...)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_unix.go:127 +0x28e
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*netFD).dial(0xc8218d1f10, 0x7fdbd4231d60, 0x0, 0x7fdbd4231d60, 0xc821aa5710, 0xecef12734, 0xc81ac549d1, 0x2a8afe0, 0x0, 0x0, ...)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/sock_posix.go:137 +0x364
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.socket(0x1d5bdd8, 0x3, 0x2, 0x1, 0x0, 0xc821aa5700, 0x7fdbd4231d60, 0x0, 0x7fdbd4231d60, 0xc821aa5710, ...)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/sock_posix.go:89 +0x429
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.internetSocket(0x1d5bdd8, 0x3, 0x7fdbd4231d60, 0x0, 0x7fdbd4231d60, 0xc821aa5710, 0xecef12734, 0x1ac549d1, 0x2a8afe0, 0x1, ...)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/ipsock_posix.go:161 +0x153
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.dialTCP(0x1d5bdd8, 0x3, 0x0, 0xc821aa5710, 0xecef12734, 0xc81ac549d1, 0x2a8afe0, 0x0, 0x0, 0x0, ...)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/tcpsock_posix.go:171 +0x12b
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.dialSingle(0xc821a2b9e0, 0x7fdbd4231cd0, 0xc821aa5710, 0xecef12734, 0x1ac549d1, 0x2a8afe0, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/dial.go:371 +0x40c
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.dialSerial.func1(0xecef12734, 0x1ac549d1, 0x2a8afe0, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/dial.go:343 +0x75
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.dial(0x1d5bdd8, 0x3, 0x7fdbd4231cd0, 0xc821aa5710, 0xc8219928c0, 0xecef12734, 0x1ac549d1, 0x2a8afe0, 0x0, 0x0, ...)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_unix.go:40 +0x60
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.dialSerial(0xc821a2b9e0, 0xc821f78020, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/dial.go:345 +0x7d0
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*Dialer).Dial(0xc8217ef8c8, 0x1d5bdd8, 0x3, 0xc8210a92c0, 0x13, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/dial.go:239 +0x512
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.DialTimeout(0x1d5bdd8, 0x3, 0xc8210a92c0, 0x13, 0x4a817c800, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/dial.go:200 +0xa3
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc/transport.newHTTP2Client.func1(0xc8210a92c0, 0x13, 0x4a817c800, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/http2_client.go:110 +0x69
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc/transport.newHTTP2Client(0xc8210a92c0, 0x13, 0xc8217efd68, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/http2_client.go:116 +0x111
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc/transport.NewClientTransport(0xc8210a92c0, 0x13, 0xc8217efd68, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/transport.go:347 +0x4d
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.(*Conn).resetTransport(0xc82126e5a0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/clientconn.go:464 +0x442
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.(*Conn).reconnect(0xc82126e5a0, 0xc820eb1500)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/clientconn.go:529 +0xc4
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.(*Conn).transportMonitor(0xc82126e5a0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/clientconn.go:554 +0x16b
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.NewConn.func1(0xc82126e5a0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/clientconn.go:355 +0x1b5
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by google.golang.org/grpc.NewConn
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/clientconn.go:356 +0x4e3
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 135 [select, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/go-events.(*Broadcaster).run(0xc82104e700)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/go-events/broadcast.go:113 +0x9a4
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/go-events.NewBroadcaster
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/go-events/broadcast.go:30 +0x199
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 136 [select, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/go-events.(*Broadcaster).run(0xc82104e740)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/go-events/broadcast.go:113 +0x9a4
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/go-events.NewBroadcaster
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/go-events/broadcast.go:30 +0x199
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 137 [chan receive, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/manager.(*Manager).Run(0xc821258c60, 0x7fdbd7bf0940, 0xc82000f118, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/manager/manager.go:506 +0x1370
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.(*Node).runManager.func1(0xc821258c60, 0xc820edf620)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/node.go:601 +0x64
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/swarmkit/agent.(*Node).runManager
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/node.go:603 +0x61d
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 138 [semacquire, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: sync.runtime_Syncsemacquire(0xc82104ec90)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/sema.go:241 +0x201
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: sync.(*Cond).Wait(0xc82104ec80)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/sync/cond.go:63 +0x9b
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.(*Conn).WaitForStateChange(0xc82126e690, 0x7fdbd7bfe820, 0xc8207b4400, 0x2, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/clientconn.go:405 +0x19f
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.(*unicastPicker).WaitForStateChange(0xc8210a9b00, 0x7fdbd7bfe820, 0xc8207b4400, 0x2, 0xc8207b4040, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/picker.go:96 +0x4f
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.(*ClientConn).WaitForStateChange(0xc820c5a9a0, 0x7fdbd7bfe820, 0xc8207b4400, 0x2, 0x2, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/clientconn.go:283 +0x6b
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.(*Node).initManagerConnection(0xc820877550, 0x7fdbd7bfe820, 0xc8207b4400, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/node.go:557 +0x33d
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/swarmkit/agent.(*Node).runManager
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/node.go:609 +0x6cf
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 176 [syscall, 243 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: syscall.Syscall6(0x2d, 0x1f, 0xc820d44000, 0x1000, 0x0, 0xc82170fc30, 0xc82170fc2c, 0x0, 0x0, 0x1)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/syscall/asm_linux_amd64.s:44 +0x5
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: syscall.recvfrom(0x1f, 0xc820d44000, 0x1000, 0x1000, 0x0, 0xc82170fc30, 0xc82170fc2c, 0x41f459, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/syscall/zsyscall_linux_amd64.go:1712 +0x9e
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: syscall.Recvfrom(0x1f, 0xc820d44000, 0x1000, 0x1000, 0x0, 0x1000, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/syscall/syscall_unix.go:251 +0xb9
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/vishvananda/netlink/nl.(*NetlinkSocket).Receive(0xc820705770, 0x0, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/vishvananda/netlink/nl/nl_linux.go:405 +0x123
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/libnetwork/drivers/overlay.(*network).watchMiss(0xc8212599e0, 0xc820705770)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/drivers/overlay/ov_network.go:528 +0x76
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/libnetwork/drivers/overlay.(*network).initSandbox
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/drivers/overlay/ov_network.go:520 +0x5cc
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 140 [select, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.(*Node).waitRole.func1(0x7fdbd7bfe820, 0xc8207b4400, 0xc820877550, 0xc820edf680)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/node.go:416 +0xf7
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/swarmkit/agent.(*Node).waitRole
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/node.go:421 +0x154
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 141 [semacquire, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: sync.runtime_Syncsemacquire(0xc8207b4010)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/sema.go:241 +0x201
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: sync.(*Cond).Wait(0xc8207b4000)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/sync/cond.go:63 +0x9b
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/agent.(*Node).waitRole.func2(0xc820877550, 0xc820edf680, 0x1d96760, 0xc, 0x7fdbd7bfe820, 0xc8207b4400)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/node.go:426 +0xcd
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/swarmkit/agent.(*Node).waitRole
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/agent/node.go:431 +0x1b1
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 145 [runnable]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/manager/state/raft.(*Node).Run(0xc820054000, 0x7fdbd7bfe820, 0xc82104ea00, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/manager/state/raft/raft.go:295 +0xd7f
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/manager.(*Manager).Run.func3(0xc821258c60, 0x7fdbd7bfe820, 0xc82104ea00)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/manager/manager.go:419 +0x46
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/swarmkit/manager.(*Manager).Run
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/manager/manager.go:424 +0x1ce
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 146 [IO wait, 248 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.runtime_pollWait(0x7fdbd7bfc518, 0x72, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/netpoll.go:160 +0x60
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*pollDesc).Wait(0xc82089c680, 0x72, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_poll_runtime.go:73 +0x3a
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*pollDesc).WaitRead(0xc82089c680, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_poll_runtime.go:78 +0x36
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*netFD).accept(0xc82089c620, 0x0, 0x7fdbd7bfe508, 0xc820818980)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_unix.go:426 +0x27c
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*TCPListener).AcceptTCP(0xc82001e078, 0xc82124bd58, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/tcpsock_posix.go:254 +0x4d
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*TCPListener).Accept(0xc82001e078, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/tcpsock_posix.go:264 +0x3d
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.(*Server).Serve(0xc821258b40, 0x7fdbd41dace0, 0xc82001e078, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/server.go:277 +0x1b5
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/manager.(*Manager).Run.func6(0x7fdbd7bfe820, 0xc82104ea00, 0xc820edf860, 0xc821258c60, 0x1d5bdd8, 0x3, 0x7fdbd41dace0, 0xc82001e078)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/manager/manager.go:481 +0x75e
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/swarmkit/manager.(*Manager).Run
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/manager/manager.go:483 +0xe1e
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 147 [IO wait, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.runtime_pollWait(0x7fdbd7bfc5d8, 0x72, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/netpoll.go:160 +0x60
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*pollDesc).Wait(0xc82089c6f0, 0x72, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_poll_runtime.go:73 +0x3a
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*pollDesc).WaitRead(0xc82089c6f0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_poll_runtime.go:78 +0x36
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*netFD).accept(0xc82089c690, 0x0, 0x7fdbd7bfe508, 0xc8206c8a20)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_unix.go:426 +0x27c
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*UnixListener).AcceptUnix(0xc820701d80, 0xc82103bd40, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/unixsock_posix.go:305 +0x53
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*UnixListener).Accept(0xc820701d80, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/unixsock_posix.go:315 +0x41
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.(*Server).Serve(0xc821258bd0, 0x7fdbd7bfe208, 0xc820701d80, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/server.go:277 +0x1b5
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/manager.(*Manager).Run.func6(0x7fdbd7bfe820, 0xc82104ea00, 0xc820edf860, 0xc821258c60, 0x1d5c4b0, 0x4, 0x7fdbd7bfe208, 0xc820701d80)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/manager/manager.go:478 +0x5b6
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/swarmkit/manager.(*Manager).Run
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/manager/manager.go:483 +0xe1e
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 148 [select, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.(*Conn).transportMonitor(0xc82126e690)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/clientconn.go:544 +0x1d3
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.NewConn.func1(0xc82126e690)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/clientconn.go:355 +0x1b5
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by google.golang.org/grpc.NewConn
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/clientconn.go:356 +0x4e3
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 154 [IO wait, 1 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.runtime_pollWait(0x7fdbd7bfbfd8, 0x72, 0xc820849c00)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/netpoll.go:160 +0x60
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*pollDesc).Wait(0xc8208935d0, 0x72, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_poll_runtime.go:73 +0x3a
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*pollDesc).WaitRead(0xc8208935d0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_poll_runtime.go:78 +0x36
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*netFD).Read(0xc820893570, 0xc820849c00, 0x400, 0x400, 0x0, 0x7fdbd7bec168, 0xc82000e180)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_unix.go:250 +0x23a
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*conn).Read(0xc82001e620, 0xc820849c00, 0x400, 0x400, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/net.go:172 +0xe4
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: crypto/tls.(*block).readFromUntil(0xc820889a70, 0x7fdbd7bfe648, 0xc82001e620, 0x5, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/crypto/tls/conn.go:460 +0xcc
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: crypto/tls.(*Conn).readRecord(0xc82074ac00, 0x2158717, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/crypto/tls/conn.go:562 +0x2d1
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: crypto/tls.(*Conn).Read(0xc82074ac00, 0xc821296000, 0x8000, 0x8000, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/crypto/tls/conn.go:939 +0x167
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: bufio.(*Reader).fill(0xc821234840)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/bufio/bufio.go:97 +0x1e9
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: bufio.(*Reader).Read(0xc821234840, 0xc82120b538, 0x9, 0x9, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/bufio/bufio.go:207 +0x260
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: io.ReadAtLeast(0x7fdbd7bfe698, 0xc821234840, 0xc82120b538, 0x9, 0x9, 0x9, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/io/io.go:297 +0xe6
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: io.ReadFull(0x7fdbd7bfe698, 0xc821234840, 0xc82120b538, 0x9, 0x9, 0xc820ac7e00, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/io/io.go:315 +0x62
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: golang.org/x/net/http2.readFrameHeader(0xc82120b538, 0x9, 0x9, 0x7fdbd7bfe698, 0xc821234840, 0x20000000, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/golang.org/x/net/http2/frame.go:236 +0xa5
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: golang.org/x/net/http2.(*Framer).ReadFrame(0xc82120b500, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/golang.org/x/net/http2/frame.go:463 +0x106
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc/transport.(*framer).readFrame(0xc820859d40, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/http_util.go:406 +0x3d
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc/transport.(*http2Server).HandleStreams(0xc821259560, 0xc820859dd0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/http2_server.go:243 +0x646
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.(*Server).serveStreams(0xc821258bd0, 0x7fdbd41e51e0, 0xc821259560)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/server.go:350 +0x159
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.(*Server).serveNewHTTP2Transport(0xc821258bd0, 0x7fdbd42362e0, 0xc82074ac00, 0x7fdbd41e51b8, 0xc82112ef20)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/server.go:337 +0x49d
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.(*Server).handleRawConn(0xc821258bd0, 0x7fdbd7bfb908, 0xc82001e620)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/server.go:314 +0x4ee
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by google.golang.org/grpc.(*Server).Serve
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/server.go:286 +0x372
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 150 [IO wait]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.runtime_pollWait(0x7fdbd7bfc458, 0x72, 0xc820d45000)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/netpoll.go:160 +0x60
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*pollDesc).Wait(0xc820892760, 0x72, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_poll_runtime.go:73 +0x3a
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*pollDesc).WaitRead(0xc820892760, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_poll_runtime.go:78 +0x36
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*netFD).Read(0xc820892700, 0xc820d45000, 0x1000, 0x1000, 0x0, 0x7fdbd7bec168, 0xc82000e180)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_unix.go:250 +0x23a
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*conn).Read(0xc82001e5e8, 0xc820d45000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/net.go:172 +0xe4
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: crypto/tls.(*block).readFromUntil(0xc820889680, 0x7fdbd4231dd0, 0xc82001e5e8, 0x5, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/crypto/tls/conn.go:460 +0xcc
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: crypto/tls.(*Conn).readRecord(0xc82074a900, 0x2158717, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/crypto/tls/conn.go:562 +0x2d1
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: crypto/tls.(*Conn).Read(0xc82074a900, 0xc820b72000, 0x8000, 0x8000, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/crypto/tls/conn.go:939 +0x167
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: bufio.(*Reader).fill(0xc8211666c0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/bufio/bufio.go:97 +0x1e9
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: bufio.(*Reader).Read(0xc8211666c0, 0xc821142938, 0x9, 0x9, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/bufio/bufio.go:207 +0x260
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: io.ReadAtLeast(0x7fdbd7bfe698, 0xc8211666c0, 0xc821142938, 0x9, 0x9, 0x9, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/io/io.go:297 +0xe6
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: io.ReadFull(0x7fdbd7bfe698, 0xc8211666c0, 0xc821142938, 0x9, 0x9, 0xc821270000, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/io/io.go:315 +0x62
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: golang.org/x/net/http2.readFrameHeader(0xc821142938, 0x9, 0x9, 0x7fdbd7bfe698, 0xc8211666c0, 0x21000000, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/golang.org/x/net/http2/frame.go:236 +0xa5
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: golang.org/x/net/http2.(*Framer).ReadFrame(0xc821142900, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/golang.org/x/net/http2/frame.go:463 +0x106
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc/transport.(*framer).readFrame(0xc820802570, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/http_util.go:406 +0x3d
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc/transport.(*http2Server).HandleStreams(0xc8211470e0, 0xc820802600)
Jun 13 22:13:53 ip-172-19-241-146 systemd[1]: docker.service: Main process exited, code=exited, status=2/INVALIDARGUMENT
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/http2_server.go:243 +0x646
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.(*Server).serveStreams(0xc821258b40, 0x7fdbd41e51e0, 0xc8211470e0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/server.go:350 +0x159
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.(*Server).serveNewHTTP2Transport(0xc821258b40, 0x7fdbd42362e0, 0xc82074a900, 0x7fdbd41e51b8, 0xc82117d080)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/server.go:337 +0x49d
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.(*Server).handleRawConn(0xc821258b40, 0x7fdbd4231d00, 0xc82001e5e8)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/server.go:314 +0x4ee
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by google.golang.org/grpc.(*Server).Serve
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/server.go:286 +0x372
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 187677 [runnable]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: golang.org/x/net/context.WithDeadline.func2()
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/golang.org/x/net/context/context.go:369
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by time.goFunc
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/time/sleep.go:129 +0x3a
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 158 [IO wait, 1 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.runtime_pollWait(0x7fdbd7bfc098, 0x72, 0xc821016000)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/netpoll.go:160 +0x60
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*pollDesc).Wait(0xc820892fb0, 0x72, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_poll_runtime.go:73 +0x3a
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*pollDesc).WaitRead(0xc820892fb0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_poll_runtime.go:78 +0x36
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*netFD).Read(0xc820892f50, 0xc821016000, 0x2000, 0x2000, 0x0, 0x7fdbd7bec168, 0xc82000e180)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_unix.go:250 +0x23a
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*conn).Read(0xc82001e5f8, 0xc821016000, 0x2000, 0x2000, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/net.go:172 +0xe4
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: crypto/tls.(*block).readFromUntil(0xc820889620, 0x7fdbd7bfe648, 0xc82001e5f8, 0x5, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/crypto/tls/conn.go:460 +0xcc
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: crypto/tls.(*Conn).readRecord(0xc82074a600, 0x2158717, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/crypto/tls/conn.go:562 +0x2d1
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: crypto/tls.(*Conn).Read(0xc82074a600, 0xc820ac8000, 0x8000, 0x8000, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/crypto/tls/conn.go:939 +0x167
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: bufio.(*Reader).fill(0xc821234b40)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/bufio/bufio.go:97 +0x1e9
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: bufio.(*Reader).Read(0xc821234b40, 0xc821246038, 0x9, 0x9, 0xc81ff8a333, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/bufio/bufio.go:207 +0x260
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: io.ReadAtLeast(0x7fdbd7bfe698, 0xc821234b40, 0xc821246038, 0x9, 0x9, 0x9, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/io/io.go:297 +0xe6
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: io.ReadFull(0x7fdbd7bfe698, 0xc821234b40, 0xc821246038, 0x9, 0x9, 0xc820eb8fc8, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/io/io.go:315 +0x62
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: golang.org/x/net/http2.readFrameHeader(0xc821246038, 0x9, 0x9, 0x7fdbd7bfe698, 0xc821234b40, 0x0, 0xc800000000, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/golang.org/x/net/http2/frame.go:236 +0xa5
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: golang.org/x/net/http2.(*Framer).ReadFrame(0xc821246000, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/golang.org/x/net/http2/frame.go:463 +0x106
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc/transport.(*framer).readFrame(0xc820859fb0, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/http_util.go:406 +0x3d
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc/transport.(*http2Client).reader(0xc82126ed20)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/http2_client.go:788 +0x109
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by google.golang.org/grpc/transport.newHTTP2Client
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/http2_client.go:174 +0xd21
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 163 [IO wait]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.runtime_pollWait(0x7fdbd7bfbe58, 0x72, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/netpoll.go:160 +0x60
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*pollDesc).Wait(0xc820880760, 0x72, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_poll_runtime.go:73 +0x3a
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*pollDesc).WaitRead(0xc820880760, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_poll_runtime.go:78 +0x36
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*netFD).readFrom(0xc820880700, 0xc821a2c000, 0x10000, 0x10000, 0x0, 0x0, 0x0, 0x7fdbd7bec168, 0xc82000e180)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_unix.go:277 +0x2a5
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*UDPConn).ReadFromUDP(0xc82001e6c0, 0xc821a2c000, 0x10000, 0x10000, 0x1701940, 0x10000, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/udpsock_posix.go:61 +0x117
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*UDPConn).ReadFrom(0xc82001e6c0, 0xc821a2c000, 0x10000, 0x10000, 0x10000, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/udpsock_posix.go:79 +0x116
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/hashicorp/memberlist.(*Memberlist).udpListen(0xc821314e00)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/hashicorp/memberlist/net.go:284 +0x301
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/hashicorp/memberlist.newMemberlist
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/hashicorp/memberlist/memberlist.go:140 +0xfcb
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 187667 [select]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc/transport.(*Stream).Header(0xc8214ba700, 0xc8214ba700, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/transport.go:221 +0x242
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.recvResponse(0x7fdbd7bfe370, 0x2ab67e0, 0x0, 0x0, 0x0, 0x0, 0x7fdbd7bfe3a8, 0xc8216ce0e0, 0x7fdbd7bfe3d0, 0xc8216ce140, ...)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/call.go:54 +0x4e
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc.Invoke(0x7fdbd41db108, 0xc822532b10, 0x1f8ee80, 0x2b, 0x1c43140, 0xc8223bc4c8, 0x1c96de0, 0x2ab67e0, 0xc82117da20, 0x0, ...)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/call.go:178 +0xae6
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/api.(*raftClient).ProcessRaftMessage(0xc82001e5d8, 0x7fdbd41db108, 0xc822532b10, 0xc8223bc4c8, 0x0, 0x0, 0x0, 0x14, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/api/raft.pb.go:794 +0xec
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: github.com/docker/swarmkit/manager/state/raft.(*Node).sendToMember(0xc820054000, 0xc822532ae0, 0x9, 0x7a5d54c1bed70eac, 0x84aa74d518c21de7, 0x2, 0x0, 0x0, 0x0, 0x0, ...)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/manager/state/raft/raft.go:824 +0x22c
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by github.com/docker/swarmkit/manager/state/raft.(*Node).send
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/github.com/docker/swarmkit/manager/state/raft/raft.go:764 +0x2b4
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 201 [IO wait, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.runtime_pollWait(0x7fdbd7bfc2d8, 0x72, 0xc82081e000)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/runtime/netpoll.go:160 +0x60
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*pollDesc).Wait(0xc820892530, 0x72, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_poll_runtime.go:73 +0x3a
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*pollDesc).WaitRead(0xc820892530, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_poll_runtime.go:78 +0x36
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*netFD).Read(0xc8208924d0, 0xc82081e000, 0x400, 0x400, 0x0, 0x7fdbd7bec168, 0xc82000e180)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/fd_unix.go:250 +0x23a
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: net.(*conn).Read(0xc82001e648, 0xc82081e000, 0x400, 0x400, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/net/net.go:172 +0xe4
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: crypto/tls.(*block).readFromUntil(0xc8208581b0, 0x7fdbd4231dd0, 0xc82001e648, 0x5, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/crypto/tls/conn.go:460 +0xcc
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: crypto/tls.(*Conn).readRecord(0xc82074b200, 0x2158717, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/crypto/tls/conn.go:562 +0x2d1
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: crypto/tls.(*Conn).Read(0xc82074b200, 0xc8214f6000, 0x8000, 0x8000, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/crypto/tls/conn.go:939 +0x167
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: bufio.(*Reader).fill(0xc8214d4e40)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/bufio/bufio.go:97 +0x1e9
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: bufio.(*Reader).Read(0xc8214d4e40, 0xc821338c38, 0x9, 0x9, 0xc81ff7bab7, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/bufio/bufio.go:207 +0x260
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: io.ReadAtLeast(0x7fdbd7bfe698, 0xc8214d4e40, 0xc821338c38, 0x9, 0x9, 0x9, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/io/io.go:297 +0xe6
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: io.ReadFull(0x7fdbd7bfe698, 0xc8214d4e40, 0xc821338c38, 0x9, 0x9, 0xc82101de38, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /usr/local/go/src/io/io.go:315 +0x62
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: golang.org/x/net/http2.readFrameHeader(0xc821338c38, 0x9, 0x9, 0x7fdbd7bfe698, 0xc8214d4e40, 0x0, 0xc800000000, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/golang.org/x/net/http2/frame.go:236 +0xa5
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: golang.org/x/net/http2.(*Framer).ReadFrame(0xc821338c00, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/golang.org/x/net/http2/frame.go:463 +0x106
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc/transport.(*framer).readFrame(0xc82164c060, 0x0, 0x0, 0x0, 0x0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/http_util.go:406 +0x3d
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc/transport.(*http2Client).reader(0xc820c660f0)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/http2_client.go:788 +0x109
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by google.golang.org/grpc/transport.newHTTP2Client
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/http2_client.go:174 +0xd21
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 157 [select, 249 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc/transport.(*http2Server).controller(0xc821259560)
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/http2_server.go:652 +0x5da
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: created by google.golang.org/grpc/transport.newHTTP2Server
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: /go/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport/http2_server.go:134 +0x84f
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: goroutine 159 [select, 65 minutes]:
Jun 13 22:13:53 ip-172-19-241-146 dockerd[23568]: google.golang.org/grpc/transport.(*http2Client).controller(0xc82126ed20)