-
Notifications
You must be signed in to change notification settings - Fork 0
/
gunicorn.log
3677 lines (3611 loc) · 274 KB
/
gunicorn.log
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
[2022-03-07 22:59:51 +0800] [32607] [INFO] Starting gunicorn 20.1.0
[2022-03-07 22:59:51 +0800] [32607] [INFO] Listening at: http://127.0.0.1:8000 (32607)
[2022-03-07 22:59:51 +0800] [32607] [INFO] Using worker: gevent
[2022-03-07 22:59:51 +0800] [32609] [INFO] Booting worker with pid: 32609
[2022-03-07 22:59:51 +0800] [32610] [INFO] Booting worker with pid: 32610
[2022-03-07 22:59:51 +0800] [32611] [INFO] Booting worker with pid: 32611
[2022-03-07 15:06:32 +0000] [32609] [INFO] Parent changed, shutting down: <Worker 32609>
[2022-03-07 15:06:32 +0000] [32609] [INFO] Worker exiting (pid: 32609)
[2022-03-07 15:06:32 +0000] [32611] [INFO] Parent changed, shutting down: <Worker 32611>
[2022-03-07 15:06:32 +0000] [32611] [INFO] Worker exiting (pid: 32611)
[2022-03-07 15:06:32 +0000] [32610] [INFO] Parent changed, shutting down: <Worker 32610>
[2022-03-07 15:06:32 +0000] [32610] [INFO] Worker exiting (pid: 32610)
[2022-03-07 23:07:11 +0800] [501] [INFO] Starting gunicorn 20.1.0
[2022-03-07 23:07:11 +0800] [501] [INFO] Listening at: http://127.0.0.1:8000 (501)
[2022-03-07 23:07:11 +0800] [501] [INFO] Using worker: gevent
[2022-03-07 23:07:11 +0800] [503] [INFO] Booting worker with pid: 503
[2022-03-07 23:07:11 +0800] [504] [INFO] Booting worker with pid: 504
[2022-03-07 23:07:12 +0800] [505] [INFO] Booting worker with pid: 505
[2022-03-07 15:09:49 +0000] [503] [INFO] Parent changed, shutting down: <Worker 503>
[2022-03-07 15:09:49 +0000] [503] [INFO] Worker exiting (pid: 503)
[2022-03-07 15:09:49 +0000] [504] [INFO] Parent changed, shutting down: <Worker 504>
[2022-03-07 15:09:49 +0000] [504] [INFO] Worker exiting (pid: 504)
[2022-03-07 15:09:49 +0000] [505] [INFO] Parent changed, shutting down: <Worker 505>
[2022-03-07 15:09:49 +0000] [505] [INFO] Worker exiting (pid: 505)
[2022-03-07 23:10:05 +0800] [872] [INFO] Starting gunicorn 20.1.0
[2022-03-07 23:10:05 +0800] [872] [INFO] Listening at: http://127.0.0.1:8000 (872)
[2022-03-07 23:10:05 +0800] [872] [INFO] Using worker: gevent
[2022-03-07 23:10:05 +0800] [878] [INFO] Booting worker with pid: 878
[2022-03-07 23:10:05 +0800] [882] [INFO] Booting worker with pid: 882
[2022-03-07 23:10:05 +0800] [883] [INFO] Booting worker with pid: 883
[2022-03-07 15:14:07 +0000] [878] [INFO] Parent changed, shutting down: <Worker 878>
[2022-03-07 15:14:07 +0000] [878] [INFO] Worker exiting (pid: 878)
[2022-03-07 15:14:07 +0000] [882] [INFO] Parent changed, shutting down: <Worker 882>
[2022-03-07 15:14:07 +0000] [882] [INFO] Worker exiting (pid: 882)
[2022-03-07 15:14:07 +0000] [883] [INFO] Parent changed, shutting down: <Worker 883>
[2022-03-07 15:14:07 +0000] [883] [INFO] Worker exiting (pid: 883)
[2022-03-08 08:31:49 +0800] [1400] [INFO] Starting gunicorn 20.1.0
[2022-03-08 08:31:49 +0800] [1400] [INFO] Listening at: http://127.0.0.1:8000 (1400)
[2022-03-08 08:31:49 +0800] [1400] [INFO] Using worker: gevent
[2022-03-08 08:31:49 +0800] [1402] [INFO] Booting worker with pid: 1402
[2022-03-08 08:31:49 +0800] [1403] [INFO] Booting worker with pid: 1403
[2022-03-08 08:31:49 +0800] [1404] [INFO] Booting worker with pid: 1404
[2022-03-08 08:38:07 +0800] [1400] [WARNING] Worker with pid 1402 was terminated due to signal 9
[2022-03-08 08:38:07 +0800] [1711] [INFO] Booting worker with pid: 1711
[2022-03-08 00:38:20 +0000] [1711] [INFO] Parent changed, shutting down: <Worker 1711>
[2022-03-08 00:38:20 +0000] [1711] [INFO] Worker exiting (pid: 1711)
[2022-03-08 00:38:20 +0000] [1404] [INFO] Parent changed, shutting down: <Worker 1404>
[2022-03-08 00:38:20 +0000] [1404] [INFO] Worker exiting (pid: 1404)
[2022-03-08 00:38:20 +0000] [1403] [INFO] Parent changed, shutting down: <Worker 1403>
[2022-03-08 00:38:20 +0000] [1403] [INFO] Worker exiting (pid: 1403)
[2022-03-08 10:25:25 +0800] [9590] [INFO] Starting gunicorn 20.1.0
[2022-03-08 10:25:25 +0800] [9590] [INFO] Listening at: http://127.0.0.1:8000 (9590)
[2022-03-08 10:25:25 +0800] [9590] [INFO] Using worker: gevent
[2022-03-08 10:25:25 +0800] [9592] [INFO] Booting worker with pid: 9592
[2022-03-08 10:25:25 +0800] [9593] [INFO] Booting worker with pid: 9593
[2022-03-08 10:25:25 +0800] [9594] [INFO] Booting worker with pid: 9594
[2022-03-08 12:58:56 +0000] [9594] [INFO] Parent changed, shutting down: <Worker 9594>
[2022-03-08 12:58:56 +0000] [9594] [INFO] Worker exiting (pid: 9594)
[2022-03-08 12:58:56 +0000] [9592] [INFO] Parent changed, shutting down: <Worker 9592>
[2022-03-08 12:58:56 +0000] [9592] [INFO] Worker exiting (pid: 9592)
[2022-03-08 12:58:57 +0000] [9593] [INFO] Parent changed, shutting down: <Worker 9593>
[2022-03-08 12:58:57 +0000] [9593] [INFO] Worker exiting (pid: 9593)
[2022-03-08 20:59:01 +0800] [13879] [INFO] Starting gunicorn 20.1.0
[2022-03-08 20:59:01 +0800] [13879] [INFO] Listening at: http://127.0.0.1:8000 (13879)
[2022-03-08 20:59:01 +0800] [13879] [INFO] Using worker: gevent
[2022-03-08 20:59:01 +0800] [13881] [INFO] Booting worker with pid: 13881
[2022-03-08 20:59:01 +0800] [13882] [INFO] Booting worker with pid: 13882
[2022-03-08 20:59:01 +0800] [13883] [INFO] Booting worker with pid: 13883
[2022-03-08 13:00:06 +0000] [13883] [INFO] Parent changed, shutting down: <Worker 13883>
[2022-03-08 13:00:06 +0000] [13883] [INFO] Worker exiting (pid: 13883)
[2022-03-08 13:00:07 +0000] [13881] [INFO] Parent changed, shutting down: <Worker 13881>
[2022-03-08 13:00:07 +0000] [13881] [INFO] Worker exiting (pid: 13881)
[2022-03-08 13:00:07 +0000] [13882] [INFO] Parent changed, shutting down: <Worker 13882>
[2022-03-08 13:00:07 +0000] [13882] [INFO] Worker exiting (pid: 13882)
[2022-03-08 21:06:56 +0800] [14965] [INFO] Starting gunicorn 20.1.0
[2022-03-08 21:06:56 +0800] [14965] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:06:56 +0800] [14965] [ERROR] Retrying in 1 second.
[2022-03-08 21:06:57 +0800] [14965] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:06:57 +0800] [14965] [ERROR] Retrying in 1 second.
[2022-03-08 21:06:58 +0800] [14965] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:06:58 +0800] [14965] [ERROR] Retrying in 1 second.
[2022-03-08 21:06:59 +0800] [14965] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:06:59 +0800] [14965] [ERROR] Retrying in 1 second.
[2022-03-08 21:07:00 +0800] [14965] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:07:00 +0800] [14965] [ERROR] Retrying in 1 second.
[2022-03-08 21:07:01 +0800] [14965] [ERROR] Can't connect to ('127.0.0.1', 8000)
[2022-03-08 21:08:10 +0800] [14980] [INFO] Starting gunicorn 20.1.0
[2022-03-08 21:08:10 +0800] [14980] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:08:10 +0800] [14980] [ERROR] Retrying in 1 second.
[2022-03-08 21:08:11 +0800] [14980] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:08:11 +0800] [14980] [ERROR] Retrying in 1 second.
[2022-03-08 21:08:12 +0800] [14980] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:08:12 +0800] [14980] [ERROR] Retrying in 1 second.
[2022-03-08 21:08:13 +0800] [14980] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:08:13 +0800] [14980] [ERROR] Retrying in 1 second.
[2022-03-08 21:08:14 +0800] [14980] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:08:14 +0800] [14980] [ERROR] Retrying in 1 second.
[2022-03-08 21:08:15 +0800] [14980] [ERROR] Can't connect to ('127.0.0.1', 8000)
[2022-03-08 21:08:32 +0800] [14992] [INFO] Starting gunicorn 20.1.0
[2022-03-08 21:08:32 +0800] [14992] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:08:32 +0800] [14992] [ERROR] Retrying in 1 second.
[2022-03-08 21:08:33 +0800] [14992] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:08:33 +0800] [14992] [ERROR] Retrying in 1 second.
[2022-03-08 21:08:34 +0800] [14992] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:08:34 +0800] [14992] [ERROR] Retrying in 1 second.
[2022-03-08 21:08:35 +0800] [14992] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:08:35 +0800] [14992] [ERROR] Retrying in 1 second.
[2022-03-08 21:08:36 +0800] [14992] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:08:36 +0800] [14992] [ERROR] Retrying in 1 second.
[2022-03-08 21:08:37 +0800] [14992] [ERROR] Can't connect to ('127.0.0.1', 8000)
[2022-03-08 21:09:36 +0800] [15010] [INFO] Starting gunicorn 20.1.0
[2022-03-08 21:09:36 +0800] [15010] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:09:36 +0800] [15010] [ERROR] Retrying in 1 second.
[2022-03-08 21:09:37 +0800] [15010] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:09:37 +0800] [15010] [ERROR] Retrying in 1 second.
[2022-03-08 21:09:38 +0800] [15010] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:09:38 +0800] [15010] [ERROR] Retrying in 1 second.
[2022-03-08 21:09:39 +0800] [15010] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:09:39 +0800] [15010] [ERROR] Retrying in 1 second.
[2022-03-08 21:09:40 +0800] [15010] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:09:40 +0800] [15010] [ERROR] Retrying in 1 second.
[2022-03-08 21:09:41 +0800] [15010] [ERROR] Can't connect to ('127.0.0.1', 8000)
[2022-03-08 21:17:24 +0800] [15175] [INFO] Starting gunicorn 20.1.0
[2022-03-08 21:17:24 +0800] [15175] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:17:24 +0800] [15175] [ERROR] Retrying in 1 second.
[2022-03-08 21:17:25 +0800] [15175] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:17:25 +0800] [15175] [ERROR] Retrying in 1 second.
[2022-03-08 21:17:26 +0800] [15175] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:17:26 +0800] [15175] [ERROR] Retrying in 1 second.
[2022-03-08 21:17:27 +0800] [15175] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:17:27 +0800] [15175] [ERROR] Retrying in 1 second.
[2022-03-08 21:17:28 +0800] [15175] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:17:28 +0800] [15175] [ERROR] Retrying in 1 second.
[2022-03-08 21:17:29 +0800] [15175] [ERROR] Can't connect to ('127.0.0.1', 8000)
[2022-03-08 21:19:15 +0800] [15311] [INFO] Starting gunicorn 20.1.0
[2022-03-08 21:19:15 +0800] [15311] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:19:15 +0800] [15311] [ERROR] Retrying in 1 second.
[2022-03-08 21:19:16 +0800] [15311] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:19:16 +0800] [15311] [ERROR] Retrying in 1 second.
[2022-03-08 21:19:17 +0800] [15311] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:19:17 +0800] [15311] [ERROR] Retrying in 1 second.
[2022-03-08 21:19:18 +0800] [15311] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:19:18 +0800] [15311] [ERROR] Retrying in 1 second.
[2022-03-08 21:19:19 +0800] [15311] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:19:19 +0800] [15311] [ERROR] Retrying in 1 second.
[2022-03-08 21:19:20 +0800] [15311] [ERROR] Can't connect to ('127.0.0.1', 8000)
[2022-03-08 21:20:32 +0800] [15387] [INFO] Starting gunicorn 20.1.0
[2022-03-08 21:20:32 +0800] [15387] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:20:32 +0800] [15387] [ERROR] Retrying in 1 second.
[2022-03-08 21:20:33 +0800] [15387] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:20:33 +0800] [15387] [ERROR] Retrying in 1 second.
[2022-03-08 21:20:34 +0800] [15387] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:20:34 +0800] [15387] [ERROR] Retrying in 1 second.
[2022-03-08 21:20:35 +0800] [15387] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:20:35 +0800] [15387] [ERROR] Retrying in 1 second.
[2022-03-08 21:20:36 +0800] [15387] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-08 21:20:36 +0800] [15387] [ERROR] Retrying in 1 second.
[2022-03-08 21:20:37 +0800] [15387] [ERROR] Can't connect to ('127.0.0.1', 8000)
[2022-03-08 21:24:01 +0800] [15587] [INFO] Starting gunicorn 20.1.0
[2022-03-08 21:24:01 +0800] [15587] [INFO] Listening at: http://127.0.0.1:8000 (15587)
[2022-03-08 21:24:01 +0800] [15587] [INFO] Using worker: gevent
[2022-03-08 21:24:01 +0800] [15589] [INFO] Booting worker with pid: 15589
[2022-03-08 21:24:01 +0800] [15590] [INFO] Booting worker with pid: 15590
[2022-03-08 21:24:01 +0800] [15591] [INFO] Booting worker with pid: 15591
[2022-03-08 13:34:30 +0000] [15590] [INFO] Parent changed, shutting down: <Worker 15590>
[2022-03-08 13:34:30 +0000] [15590] [INFO] Worker exiting (pid: 15590)
[2022-03-08 13:34:30 +0000] [15591] [INFO] Parent changed, shutting down: <Worker 15591>
[2022-03-08 13:34:30 +0000] [15591] [INFO] Worker exiting (pid: 15591)
[2022-03-08 13:34:30 +0000] [15589] [INFO] Parent changed, shutting down: <Worker 15589>
[2022-03-08 13:34:30 +0000] [15589] [INFO] Worker exiting (pid: 15589)
[2022-03-08 21:34:38 +0800] [15947] [INFO] Starting gunicorn 20.1.0
[2022-03-08 21:34:38 +0800] [15947] [INFO] Listening at: http://127.0.0.1:8000 (15947)
[2022-03-08 21:34:38 +0800] [15947] [INFO] Using worker: gevent
[2022-03-08 21:34:38 +0800] [15949] [INFO] Booting worker with pid: 15949
[2022-03-08 21:34:38 +0800] [15950] [INFO] Booting worker with pid: 15950
[2022-03-08 21:34:38 +0800] [15951] [INFO] Booting worker with pid: 15951
[2022-03-08 13:35:15 +0000] [15951] [INFO] Parent changed, shutting down: <Worker 15951>
[2022-03-08 13:35:15 +0000] [15951] [INFO] Worker exiting (pid: 15951)
[2022-03-08 13:35:15 +0000] [15949] [INFO] Parent changed, shutting down: <Worker 15949>
[2022-03-08 13:35:15 +0000] [15949] [INFO] Worker exiting (pid: 15949)
[2022-03-08 13:35:16 +0000] [15950] [INFO] Parent changed, shutting down: <Worker 15950>
[2022-03-08 13:35:16 +0000] [15950] [INFO] Worker exiting (pid: 15950)
[2022-03-08 21:35:17 +0800] [16075] [INFO] Starting gunicorn 20.1.0
[2022-03-08 21:35:17 +0800] [16075] [INFO] Listening at: http://127.0.0.1:8000 (16075)
[2022-03-08 21:35:17 +0800] [16075] [INFO] Using worker: gevent
[2022-03-08 21:35:17 +0800] [16077] [INFO] Booting worker with pid: 16077
[2022-03-08 21:35:17 +0800] [16078] [INFO] Booting worker with pid: 16078
[2022-03-08 21:35:17 +0800] [16079] [INFO] Booting worker with pid: 16079
[2022-03-08 13:37:31 +0000] [16079] [INFO] Parent changed, shutting down: <Worker 16079>
[2022-03-08 13:37:31 +0000] [16079] [INFO] Worker exiting (pid: 16079)
[2022-03-08 13:37:31 +0000] [16078] [INFO] Parent changed, shutting down: <Worker 16078>
[2022-03-08 13:37:31 +0000] [16078] [INFO] Worker exiting (pid: 16078)
[2022-03-08 13:37:32 +0000] [16077] [INFO] Parent changed, shutting down: <Worker 16077>
[2022-03-08 13:37:32 +0000] [16077] [INFO] Worker exiting (pid: 16077)
[2022-03-08 21:38:02 +0800] [16404] [INFO] Starting gunicorn 20.1.0
[2022-03-08 21:38:02 +0800] [16404] [INFO] Listening at: http://127.0.0.1:8000 (16404)
[2022-03-08 21:38:02 +0800] [16404] [INFO] Using worker: gevent
[2022-03-08 21:38:02 +0800] [16406] [INFO] Booting worker with pid: 16406
[2022-03-08 21:38:02 +0800] [16410] [INFO] Booting worker with pid: 16410
[2022-03-08 21:38:02 +0800] [16411] [INFO] Booting worker with pid: 16411
[2022-03-08 13:39:29 +0000] [16406] [INFO] Parent changed, shutting down: <Worker 16406>
[2022-03-08 13:39:29 +0000] [16406] [INFO] Worker exiting (pid: 16406)
[2022-03-08 13:39:29 +0000] [16410] [INFO] Parent changed, shutting down: <Worker 16410>
[2022-03-08 13:39:29 +0000] [16410] [INFO] Worker exiting (pid: 16410)
[2022-03-08 13:39:29 +0000] [16411] [INFO] Parent changed, shutting down: <Worker 16411>
[2022-03-08 13:39:29 +0000] [16411] [INFO] Worker exiting (pid: 16411)
[2022-03-08 21:41:33 +0800] [17327] [INFO] Starting gunicorn 20.1.0
[2022-03-08 21:41:33 +0800] [17327] [INFO] Listening at: http://127.0.0.1:8000 (17327)
[2022-03-08 21:41:33 +0800] [17327] [INFO] Using worker: gevent
[2022-03-08 21:41:33 +0800] [17329] [INFO] Booting worker with pid: 17329
[2022-03-08 21:41:33 +0800] [17330] [INFO] Booting worker with pid: 17330
[2022-03-08 21:41:33 +0800] [17331] [INFO] Booting worker with pid: 17331
[2022-03-08 21:43:14 +0800] [17327] [WARNING] Worker with pid 17329 was terminated due to signal 9
[2022-03-08 21:43:14 +0800] [17625] [INFO] Booting worker with pid: 17625
[2022-03-08 13:43:21 +0000] [17625] [INFO] Parent changed, shutting down: <Worker 17625>
[2022-03-08 13:43:21 +0000] [17625] [INFO] Worker exiting (pid: 17625)
[2022-03-08 13:43:22 +0000] [17330] [INFO] Parent changed, shutting down: <Worker 17330>
[2022-03-08 13:43:22 +0000] [17330] [INFO] Worker exiting (pid: 17330)
[2022-03-08 13:43:22 +0000] [17331] [INFO] Parent changed, shutting down: <Worker 17331>
[2022-03-08 13:43:22 +0000] [17331] [INFO] Worker exiting (pid: 17331)
[2022-03-08 21:44:16 +0800] [17646] [INFO] Starting gunicorn 20.1.0
[2022-03-08 21:44:16 +0800] [17646] [INFO] Listening at: http://127.0.0.1:8000 (17646)
[2022-03-08 21:44:16 +0800] [17646] [INFO] Using worker: gevent
[2022-03-08 21:44:16 +0800] [17648] [INFO] Booting worker with pid: 17648
[2022-03-08 21:44:16 +0800] [17649] [INFO] Booting worker with pid: 17649
[2022-03-08 21:44:16 +0800] [17650] [INFO] Booting worker with pid: 17650
[2022-03-08 21:47:20 +0800] [17646] [WARNING] Worker with pid 17648 was terminated due to signal 9
[2022-03-08 21:47:20 +0800] [17957] [INFO] Booting worker with pid: 17957
[2022-03-08 13:47:45 +0000] [17957] [INFO] Parent changed, shutting down: <Worker 17957>
[2022-03-08 13:47:45 +0000] [17957] [INFO] Worker exiting (pid: 17957)
[2022-03-08 13:47:45 +0000] [17649] [INFO] Parent changed, shutting down: <Worker 17649>
[2022-03-08 13:47:45 +0000] [17649] [INFO] Worker exiting (pid: 17649)
[2022-03-08 13:47:45 +0000] [17650] [INFO] Parent changed, shutting down: <Worker 17650>
[2022-03-08 13:47:45 +0000] [17650] [INFO] Worker exiting (pid: 17650)
[2022-03-09 15:54:10 +0800] [29176] [INFO] Starting gunicorn 20.1.0
[2022-03-09 15:54:10 +0800] [29176] [INFO] Listening at: http://127.0.0.1:8000 (29176)
[2022-03-09 15:54:10 +0800] [29176] [INFO] Using worker: gevent
[2022-03-09 15:54:10 +0800] [29184] [INFO] Booting worker with pid: 29184
[2022-03-09 15:54:10 +0800] [29185] [INFO] Booting worker with pid: 29185
[2022-03-09 15:54:10 +0800] [29186] [INFO] Booting worker with pid: 29186
[2022-03-09 08:03:48 +0000] [29184] [INFO] Parent changed, shutting down: <Worker 29184>
[2022-03-09 08:03:48 +0000] [29184] [INFO] Worker exiting (pid: 29184)
[2022-03-09 08:03:48 +0000] [29185] [INFO] Parent changed, shutting down: <Worker 29185>
[2022-03-09 08:03:48 +0000] [29185] [INFO] Worker exiting (pid: 29185)
[2022-03-09 08:03:48 +0000] [29186] [INFO] Parent changed, shutting down: <Worker 29186>
[2022-03-09 08:03:48 +0000] [29186] [INFO] Worker exiting (pid: 29186)
[2022-03-09 16:06:05 +0800] [2794] [INFO] Starting gunicorn 20.1.0
[2022-03-09 16:06:05 +0800] [2794] [INFO] Listening at: http://127.0.0.1:8000 (2794)
[2022-03-09 16:06:05 +0800] [2794] [INFO] Using worker: gevent
[2022-03-09 16:06:05 +0800] [2796] [INFO] Booting worker with pid: 2796
[2022-03-09 16:06:05 +0800] [2797] [INFO] Booting worker with pid: 2797
[2022-03-09 16:06:05 +0800] [2798] [INFO] Booting worker with pid: 2798
[2022-03-09 08:10:11 +0000] [2796] [INFO] Parent changed, shutting down: <Worker 2796>
[2022-03-09 08:10:11 +0000] [2796] [INFO] Worker exiting (pid: 2796)
[2022-03-09 08:10:11 +0000] [2797] [INFO] Parent changed, shutting down: <Worker 2797>
[2022-03-09 08:10:11 +0000] [2797] [INFO] Worker exiting (pid: 2797)
[2022-03-09 08:10:11 +0000] [2798] [INFO] Parent changed, shutting down: <Worker 2798>
[2022-03-09 08:10:11 +0000] [2798] [INFO] Worker exiting (pid: 2798)
[2022-03-09 16:14:05 +0800] [6702] [INFO] Starting gunicorn 20.1.0
[2022-03-09 16:14:05 +0800] [6702] [INFO] Listening at: http://127.0.0.1:8000 (6702)
[2022-03-09 16:14:05 +0800] [6702] [INFO] Using worker: gevent
[2022-03-09 16:14:05 +0800] [6704] [INFO] Booting worker with pid: 6704
[2022-03-09 16:14:05 +0800] [6705] [INFO] Booting worker with pid: 6705
[2022-03-09 16:14:05 +0800] [6706] [INFO] Booting worker with pid: 6706
[2022-03-09 16:19:59 +0800] [6702] [WARNING] Worker with pid 6706 was terminated due to signal 6
[2022-03-09 16:19:59 +0800] [10092] [INFO] Booting worker with pid: 10092
[2022-03-09 16:20:00 +0800] [6702] [WARNING] Worker with pid 6705 was terminated due to signal 6
[2022-03-09 16:20:00 +0800] [10224] [INFO] Booting worker with pid: 10224
[2022-03-09 16:20:17 +0800] [6702] [WARNING] Worker with pid 6704 was terminated due to signal 6
[2022-03-09 16:20:17 +0800] [10495] [INFO] Booting worker with pid: 10495
[2022-03-09 16:20:26 +0800] [6702] [WARNING] Worker with pid 10092 was terminated due to signal 6
[2022-03-09 16:20:26 +0800] [10568] [INFO] Booting worker with pid: 10568
[2022-03-09 16:20:36 +0800] [6702] [WARNING] Worker with pid 10224 was terminated due to signal 6
[2022-03-09 16:20:36 +0800] [10796] [INFO] Booting worker with pid: 10796
[2022-03-09 16:20:48 +0800] [6702] [WARNING] Worker with pid 10495 was terminated due to signal 6
[2022-03-09 16:20:48 +0800] [10960] [INFO] Booting worker with pid: 10960
[2022-03-09 16:21:16 +0800] [6702] [CRITICAL] WORKER TIMEOUT (pid:10796)
[2022-03-09 16:21:16 +0800] [6702] [WARNING] Worker with pid 10796 was terminated due to signal 6
[2022-03-09 16:21:16 +0800] [11232] [INFO] Booting worker with pid: 11232
[2022-03-09 16:21:35 +0800] [6702] [WARNING] Worker with pid 10568 was terminated due to signal 6
[2022-03-09 16:21:35 +0800] [11435] [INFO] Booting worker with pid: 11435
[2022-03-09 16:21:35 +0800] [6702] [WARNING] Worker with pid 10960 was terminated due to signal 6
[2022-03-09 16:21:35 +0800] [11465] [INFO] Booting worker with pid: 11465
[2022-03-09 16:21:54 +0800] [6702] [WARNING] Worker with pid 11232 was terminated due to signal 6
[2022-03-09 16:21:54 +0800] [11845] [INFO] Booting worker with pid: 11845
[2022-03-09 16:21:54 +0800] [6702] [WARNING] Worker with pid 11435 was terminated due to signal 6
[2022-03-09 16:21:54 +0800] [11875] [INFO] Booting worker with pid: 11875
[2022-03-09 16:22:33 +0800] [6702] [CRITICAL] WORKER TIMEOUT (pid:11845)
[2022-03-09 16:22:33 +0800] [6702] [CRITICAL] WORKER TIMEOUT (pid:11875)
[2022-03-09 16:22:34 +0800] [6702] [WARNING] Worker with pid 11875 was terminated due to signal 6
[2022-03-09 16:22:34 +0800] [12382] [INFO] Booting worker with pid: 12382
[2022-03-09 16:22:34 +0800] [6702] [WARNING] Worker with pid 11845 was terminated due to signal 6
[2022-03-09 16:22:34 +0800] [12383] [INFO] Booting worker with pid: 12383
[2022-03-09 16:23:08 +0800] [6702] [WARNING] Worker with pid 12382 was terminated due to signal 6
[2022-03-09 16:23:08 +0800] [12782] [INFO] Booting worker with pid: 12782
[2022-03-09 08:24:47 +0000] [12782] [INFO] Parent changed, shutting down: <Worker 12782>
[2022-03-09 08:24:47 +0000] [12782] [INFO] Worker exiting (pid: 12782)
[2022-03-09 08:24:47 +0000] [12383] [INFO] Parent changed, shutting down: <Worker 12383>
[2022-03-09 08:24:47 +0000] [12383] [INFO] Worker exiting (pid: 12383)
[2022-03-09 08:24:47 +0000] [11465] [INFO] Parent changed, shutting down: <Worker 11465>
[2022-03-09 08:24:47 +0000] [11465] [INFO] Worker exiting (pid: 11465)
[2022-03-12 15:54:07 +0800] [23958] [INFO] Starting gunicorn 20.1.0
[2022-03-12 15:54:07 +0800] [23958] [INFO] Listening at: http://127.0.0.1:8000 (23958)
[2022-03-12 15:54:07 +0800] [23958] [INFO] Using worker: gevent
[2022-03-12 15:54:07 +0800] [23960] [INFO] Booting worker with pid: 23960
[2022-03-12 15:54:07 +0800] [23961] [INFO] Booting worker with pid: 23961
[2022-03-12 15:54:07 +0800] [23962] [INFO] Booting worker with pid: 23962
[2022-03-12 07:55:21 +0000] [23960] [INFO] Parent changed, shutting down: <Worker 23960>
[2022-03-12 07:55:21 +0000] [23960] [INFO] Worker exiting (pid: 23960)
[2022-03-12 07:55:21 +0000] [23961] [INFO] Parent changed, shutting down: <Worker 23961>
[2022-03-12 07:55:21 +0000] [23961] [INFO] Worker exiting (pid: 23961)
[2022-03-12 07:55:21 +0000] [23962] [INFO] Parent changed, shutting down: <Worker 23962>
[2022-03-12 07:55:21 +0000] [23962] [INFO] Worker exiting (pid: 23962)
[2022-03-14 18:41:37 +0800] [7323] [INFO] Starting gunicorn 20.1.0
[2022-03-14 18:41:37 +0800] [7323] [INFO] Listening at: http://127.0.0.1:8000 (7323)
[2022-03-14 18:41:37 +0800] [7323] [INFO] Using worker: gevent
[2022-03-14 18:41:37 +0800] [7325] [INFO] Booting worker with pid: 7325
[2022-03-14 18:41:37 +0800] [7326] [INFO] Booting worker with pid: 7326
[2022-03-14 18:41:37 +0800] [7329] [INFO] Booting worker with pid: 7329
[2022-03-14 10:50:12 +0000] [7329] [INFO] Parent changed, shutting down: <Worker 7329>
[2022-03-14 10:50:12 +0000] [7329] [INFO] Worker exiting (pid: 7329)
[2022-03-14 10:50:13 +0000] [7325] [INFO] Parent changed, shutting down: <Worker 7325>
[2022-03-14 10:50:13 +0000] [7325] [INFO] Worker exiting (pid: 7325)
[2022-03-14 10:50:13 +0000] [7326] [INFO] Parent changed, shutting down: <Worker 7326>
[2022-03-14 10:50:13 +0000] [7326] [INFO] Worker exiting (pid: 7326)
[2022-03-14 18:51:27 +0800] [14999] [INFO] Starting gunicorn 20.1.0
[2022-03-14 18:51:27 +0800] [14999] [INFO] Listening at: http://127.0.0.1:8000 (14999)
[2022-03-14 18:51:27 +0800] [14999] [INFO] Using worker: gevent
[2022-03-14 18:51:27 +0800] [15001] [INFO] Booting worker with pid: 15001
[2022-03-14 18:51:27 +0800] [15002] [INFO] Booting worker with pid: 15002
[2022-03-14 18:51:27 +0800] [15003] [INFO] Booting worker with pid: 15003
[2022-03-14 11:00:41 +0000] [15003] [INFO] Parent changed, shutting down: <Worker 15003>
[2022-03-14 11:00:41 +0000] [15003] [INFO] Worker exiting (pid: 15003)
[2022-03-14 11:00:42 +0000] [15001] [INFO] Parent changed, shutting down: <Worker 15001>
[2022-03-14 11:00:42 +0000] [15001] [INFO] Worker exiting (pid: 15001)
[2022-03-14 11:00:42 +0000] [15002] [INFO] Parent changed, shutting down: <Worker 15002>
[2022-03-14 11:00:42 +0000] [15002] [INFO] Worker exiting (pid: 15002)
[2022-03-14 19:01:03 +0800] [22190] [INFO] Starting gunicorn 20.1.0
[2022-03-14 19:01:03 +0800] [22190] [INFO] Listening at: http://127.0.0.1:8000 (22190)
[2022-03-14 19:01:03 +0800] [22190] [INFO] Using worker: gevent
[2022-03-14 19:01:03 +0800] [22192] [INFO] Booting worker with pid: 22192
[2022-03-14 19:01:03 +0800] [22195] [INFO] Booting worker with pid: 22195
[2022-03-14 19:01:03 +0800] [22196] [INFO] Booting worker with pid: 22196
[2022-03-14 11:14:43 +0000] [22196] [INFO] Parent changed, shutting down: <Worker 22196>
[2022-03-14 11:14:43 +0000] [22196] [INFO] Worker exiting (pid: 22196)
[2022-03-14 11:14:44 +0000] [22195] [INFO] Parent changed, shutting down: <Worker 22195>
[2022-03-14 11:14:44 +0000] [22195] [INFO] Worker exiting (pid: 22195)
[2022-03-14 11:14:44 +0000] [22192] [INFO] Parent changed, shutting down: <Worker 22192>
[2022-03-14 11:14:44 +0000] [22192] [INFO] Worker exiting (pid: 22192)
[2022-03-14 19:22:26 +0800] [4112] [INFO] Starting gunicorn 20.1.0
[2022-03-14 19:22:26 +0800] [4112] [INFO] Listening at: http://127.0.0.1:8000 (4112)
[2022-03-14 19:22:26 +0800] [4112] [INFO] Using worker: gevent
[2022-03-14 19:22:26 +0800] [4114] [INFO] Booting worker with pid: 4114
[2022-03-14 19:22:27 +0800] [4115] [INFO] Booting worker with pid: 4115
[2022-03-14 19:22:27 +0800] [4118] [INFO] Booting worker with pid: 4118
[2022-03-14 11:37:35 +0000] [4118] [INFO] Parent changed, shutting down: <Worker 4118>
[2022-03-14 11:37:35 +0000] [4118] [INFO] Worker exiting (pid: 4118)
[2022-03-14 11:37:35 +0000] [4114] [INFO] Parent changed, shutting down: <Worker 4114>
[2022-03-14 11:37:35 +0000] [4114] [INFO] Worker exiting (pid: 4114)
[2022-03-14 11:37:35 +0000] [4115] [INFO] Parent changed, shutting down: <Worker 4115>
[2022-03-14 11:37:35 +0000] [4115] [INFO] Worker exiting (pid: 4115)
[2022-03-14 19:38:00 +0800] [10154] [INFO] Starting gunicorn 20.1.0
[2022-03-14 19:38:00 +0800] [10154] [INFO] Listening at: http://127.0.0.1:8000 (10154)
[2022-03-14 19:38:00 +0800] [10154] [INFO] Using worker: gevent
[2022-03-14 19:38:00 +0800] [10156] [INFO] Booting worker with pid: 10156
[2022-03-14 19:38:00 +0800] [10157] [INFO] Booting worker with pid: 10157
[2022-03-14 19:38:00 +0800] [10160] [INFO] Booting worker with pid: 10160
[2022-03-14 19:41:05 +0800] [10154] [WARNING] Worker with pid 10156 was terminated due to signal 9
[2022-03-14 19:41:05 +0800] [11609] [INFO] Booting worker with pid: 11609
[2022-03-14 11:41:12 +0000] [11609] [INFO] Parent changed, shutting down: <Worker 11609>
[2022-03-14 11:41:12 +0000] [11609] [INFO] Worker exiting (pid: 11609)
[2022-03-14 11:41:12 +0000] [10160] [INFO] Parent changed, shutting down: <Worker 10160>
[2022-03-14 11:41:12 +0000] [10160] [INFO] Worker exiting (pid: 10160)
[2022-03-14 11:41:13 +0000] [10157] [INFO] Parent changed, shutting down: <Worker 10157>
[2022-03-14 11:41:13 +0000] [10157] [INFO] Worker exiting (pid: 10157)
[2022-03-14 19:42:26 +0800] [12092] [INFO] Starting gunicorn 20.1.0
[2022-03-14 19:42:26 +0800] [12092] [INFO] Listening at: http://127.0.0.1:8000 (12092)
[2022-03-14 19:42:26 +0800] [12092] [INFO] Using worker: gevent
[2022-03-14 19:42:26 +0800] [12094] [INFO] Booting worker with pid: 12094
[2022-03-14 19:42:26 +0800] [12095] [INFO] Booting worker with pid: 12095
[2022-03-14 19:42:26 +0800] [12096] [INFO] Booting worker with pid: 12096
[2022-03-14 19:44:28 +0800] [12092] [WARNING] Worker with pid 12094 was terminated due to signal 9
[2022-03-14 19:44:28 +0800] [13165] [INFO] Booting worker with pid: 13165
[2022-03-14 19:44:43 +0800] [13271] [INFO] Starting gunicorn 20.1.0
[2022-03-14 19:44:43 +0800] [13271] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-14 19:44:43 +0800] [13271] [ERROR] Retrying in 1 second.
[2022-03-14 19:44:44 +0800] [13271] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-14 19:44:44 +0800] [13271] [ERROR] Retrying in 1 second.
[2022-03-14 19:44:45 +0800] [13271] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-14 19:44:45 +0800] [13271] [ERROR] Retrying in 1 second.
[2022-03-14 19:44:46 +0800] [13271] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-14 19:44:46 +0800] [13271] [ERROR] Retrying in 1 second.
[2022-03-14 19:44:47 +0800] [13271] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-14 19:44:47 +0800] [13271] [ERROR] Retrying in 1 second.
[2022-03-14 19:44:48 +0800] [13271] [ERROR] Can't connect to ('127.0.0.1', 8000)
[2022-03-14 19:46:07 +0800] [12092] [WARNING] Worker with pid 12095 was terminated due to signal 9
[2022-03-14 19:46:07 +0800] [14467] [INFO] Booting worker with pid: 14467
[2022-03-14 19:46:30 +0800] [14761] [INFO] Starting gunicorn 20.1.0
[2022-03-14 19:46:30 +0800] [14761] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-14 19:46:30 +0800] [14761] [ERROR] Retrying in 1 second.
[2022-03-14 19:46:31 +0800] [14761] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-14 19:46:31 +0800] [14761] [ERROR] Retrying in 1 second.
[2022-03-14 19:46:32 +0800] [14761] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-14 19:46:32 +0800] [14761] [ERROR] Retrying in 1 second.
[2022-03-14 19:46:33 +0800] [14761] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-14 19:46:33 +0800] [14761] [ERROR] Retrying in 1 second.
[2022-03-14 19:46:34 +0800] [14761] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-14 19:46:34 +0800] [14761] [ERROR] Retrying in 1 second.
[2022-03-14 19:46:35 +0800] [14761] [ERROR] Can't connect to ('127.0.0.1', 8000)
[2022-03-14 13:05:46 +0000] [12096] [INFO] Parent changed, shutting down: <Worker 12096>
[2022-03-14 13:05:46 +0000] [12096] [INFO] Worker exiting (pid: 12096)
[2022-03-14 13:05:47 +0000] [14467] [INFO] Parent changed, shutting down: <Worker 14467>
[2022-03-14 13:05:47 +0000] [14467] [INFO] Worker exiting (pid: 14467)
[2022-03-14 13:05:47 +0000] [13165] [INFO] Parent changed, shutting down: <Worker 13165>
[2022-03-14 13:05:47 +0000] [13165] [INFO] Worker exiting (pid: 13165)
[2022-03-14 21:07:32 +0800] [13683] [INFO] Starting gunicorn 20.1.0
[2022-03-14 21:07:32 +0800] [13683] [INFO] Listening at: http://127.0.0.1:8000 (13683)
[2022-03-14 21:07:32 +0800] [13683] [INFO] Using worker: gevent
[2022-03-14 21:07:32 +0800] [13685] [INFO] Booting worker with pid: 13685
[2022-03-14 21:07:32 +0800] [13692] [INFO] Booting worker with pid: 13692
[2022-03-14 21:07:32 +0800] [13693] [INFO] Booting worker with pid: 13693
[2022-03-14 21:11:30 +0800] [17308] [INFO] Starting gunicorn 20.1.0
[2022-03-14 21:11:30 +0800] [17308] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-14 21:11:30 +0800] [17308] [ERROR] Retrying in 1 second.
[2022-03-14 21:11:31 +0800] [17308] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-14 21:11:31 +0800] [17308] [ERROR] Retrying in 1 second.
[2022-03-14 21:11:32 +0800] [17308] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-14 21:11:32 +0800] [17308] [ERROR] Retrying in 1 second.
[2022-03-14 21:11:33 +0800] [17308] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-14 21:11:33 +0800] [17308] [ERROR] Retrying in 1 second.
[2022-03-14 21:11:34 +0800] [17308] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-14 21:11:34 +0800] [17308] [ERROR] Retrying in 1 second.
[2022-03-14 21:11:35 +0800] [17308] [ERROR] Can't connect to ('127.0.0.1', 8000)
[2022-03-14 21:12:39 +0800] [13683] [WARNING] Worker with pid 13685 was terminated due to signal 9
[2022-03-14 21:12:39 +0800] [18323] [INFO] Booting worker with pid: 18323
[2022-03-14 21:12:58 +0800] [13683] [WARNING] Worker with pid 13692 was terminated due to signal 9
[2022-03-14 21:12:58 +0800] [18524] [INFO] Booting worker with pid: 18524
[2022-03-14 21:13:07 +0800] [13683] [WARNING] Worker with pid 13693 was terminated due to signal 9
[2022-03-14 21:13:07 +0800] [18723] [INFO] Booting worker with pid: 18723
[2022-03-14 13:13:15 +0000] [18524] [INFO] Parent changed, shutting down: <Worker 18524>
[2022-03-14 13:13:15 +0000] [18524] [INFO] Worker exiting (pid: 18524)
[2022-03-14 13:13:16 +0000] [18723] [INFO] Parent changed, shutting down: <Worker 18723>
[2022-03-14 13:13:16 +0000] [18723] [INFO] Worker exiting (pid: 18723)
[2022-03-14 13:13:16 +0000] [18323] [INFO] Parent changed, shutting down: <Worker 18323>
[2022-03-14 13:13:16 +0000] [18323] [INFO] Worker exiting (pid: 18323)
[2022-03-14 21:13:20 +0800] [18856] [INFO] Starting gunicorn 20.1.0
[2022-03-14 21:13:20 +0800] [18856] [INFO] Listening at: http://127.0.0.1:8000 (18856)
[2022-03-14 21:13:20 +0800] [18856] [INFO] Using worker: gevent
[2022-03-14 21:13:20 +0800] [18864] [INFO] Booting worker with pid: 18864
[2022-03-14 21:13:20 +0800] [18865] [INFO] Booting worker with pid: 18865
[2022-03-14 21:13:20 +0800] [18866] [INFO] Booting worker with pid: 18866
[2022-03-14 13:14:39 +0000] [18864] [INFO] Parent changed, shutting down: <Worker 18864>
[2022-03-14 13:14:39 +0000] [18864] [INFO] Worker exiting (pid: 18864)
[2022-03-14 13:14:39 +0000] [18866] [INFO] Parent changed, shutting down: <Worker 18866>
[2022-03-14 13:14:39 +0000] [18866] [INFO] Worker exiting (pid: 18866)
[2022-03-14 13:14:39 +0000] [18865] [INFO] Parent changed, shutting down: <Worker 18865>
[2022-03-14 13:14:39 +0000] [18865] [INFO] Worker exiting (pid: 18865)
[2022-03-14 21:17:36 +0800] [22287] [INFO] Starting gunicorn 20.1.0
[2022-03-14 21:17:36 +0800] [22287] [INFO] Listening at: http://127.0.0.1:8000 (22287)
[2022-03-14 21:17:36 +0800] [22287] [INFO] Using worker: gevent
[2022-03-14 21:17:36 +0800] [22289] [INFO] Booting worker with pid: 22289
[2022-03-14 21:17:36 +0800] [22290] [INFO] Booting worker with pid: 22290
[2022-03-14 21:17:36 +0800] [22291] [INFO] Booting worker with pid: 22291
[2022-03-14 13:24:26 +0000] [22289] [INFO] Parent changed, shutting down: <Worker 22289>
[2022-03-14 13:24:26 +0000] [22289] [INFO] Worker exiting (pid: 22289)
[2022-03-14 13:24:26 +0000] [22291] [INFO] Parent changed, shutting down: <Worker 22291>
[2022-03-14 13:24:26 +0000] [22291] [INFO] Worker exiting (pid: 22291)
[2022-03-14 13:24:26 +0000] [22290] [INFO] Parent changed, shutting down: <Worker 22290>
[2022-03-14 13:24:26 +0000] [22290] [INFO] Worker exiting (pid: 22290)
[2022-03-14 21:38:00 +0800] [30345] [INFO] Starting gunicorn 20.1.0
[2022-03-14 21:38:00 +0800] [30345] [INFO] Listening at: http://127.0.0.1:8000 (30345)
[2022-03-14 21:38:00 +0800] [30345] [INFO] Using worker: gevent
[2022-03-14 21:38:00 +0800] [30347] [INFO] Booting worker with pid: 30347
[2022-03-14 21:38:00 +0800] [30348] [INFO] Booting worker with pid: 30348
[2022-03-14 21:38:00 +0800] [30349] [INFO] Booting worker with pid: 30349
[2022-03-14 13:57:33 +0000] [30349] [INFO] Parent changed, shutting down: <Worker 30349>
[2022-03-14 13:57:33 +0000] [30349] [INFO] Worker exiting (pid: 30349)
[2022-03-14 13:57:33 +0000] [30347] [INFO] Parent changed, shutting down: <Worker 30347>
[2022-03-14 13:57:33 +0000] [30347] [INFO] Worker exiting (pid: 30347)
[2022-03-14 13:57:34 +0000] [30348] [INFO] Parent changed, shutting down: <Worker 30348>
[2022-03-14 13:57:34 +0000] [30348] [INFO] Worker exiting (pid: 30348)
[2022-03-18 16:12:05 +0800] [18356] [INFO] Starting gunicorn 20.1.0
[2022-03-18 16:12:05 +0800] [18356] [INFO] Listening at: http://127.0.0.1:8000 (18356)
[2022-03-18 16:12:05 +0800] [18356] [INFO] Using worker: gevent
[2022-03-18 16:12:05 +0800] [18358] [INFO] Booting worker with pid: 18358
[2022-03-18 16:12:05 +0800] [18359] [INFO] Booting worker with pid: 18359
[2022-03-18 16:12:05 +0800] [18360] [INFO] Booting worker with pid: 18360
[2022-03-18 08:14:06 +0000] [18358] [INFO] Parent changed, shutting down: <Worker 18358>
[2022-03-18 08:14:06 +0000] [18358] [INFO] Worker exiting (pid: 18358)
[2022-03-18 08:14:06 +0000] [18359] [INFO] Parent changed, shutting down: <Worker 18359>
[2022-03-18 08:14:06 +0000] [18359] [INFO] Worker exiting (pid: 18359)
[2022-03-18 08:14:06 +0000] [18360] [INFO] Parent changed, shutting down: <Worker 18360>
[2022-03-18 08:14:06 +0000] [18360] [INFO] Worker exiting (pid: 18360)
[2022-03-18 16:21:33 +0800] [19215] [INFO] Starting gunicorn 20.1.0
[2022-03-18 16:21:33 +0800] [19215] [INFO] Listening at: http://127.0.0.1:8000 (19215)
[2022-03-18 16:21:33 +0800] [19215] [INFO] Using worker: gevent
[2022-03-18 16:21:33 +0800] [19217] [INFO] Booting worker with pid: 19217
[2022-03-18 16:21:33 +0800] [19218] [INFO] Booting worker with pid: 19218
[2022-03-18 16:21:34 +0800] [19219] [INFO] Booting worker with pid: 19219
[2022-03-18 16:23:10 +0800] [19896] [INFO] Starting gunicorn 20.1.0
[2022-03-18 16:23:10 +0800] [19896] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:23:10 +0800] [19896] [ERROR] Retrying in 1 second.
[2022-03-18 16:23:11 +0800] [19896] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:23:11 +0800] [19896] [ERROR] Retrying in 1 second.
[2022-03-18 16:23:12 +0800] [19896] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:23:12 +0800] [19896] [ERROR] Retrying in 1 second.
[2022-03-18 16:23:13 +0800] [19896] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:23:13 +0800] [19896] [ERROR] Retrying in 1 second.
[2022-03-18 16:23:14 +0800] [19896] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:23:14 +0800] [19896] [ERROR] Retrying in 1 second.
[2022-03-18 16:23:15 +0800] [19896] [ERROR] Can't connect to ('127.0.0.1', 8000)
[2022-03-18 08:24:18 +0000] [19217] [INFO] Parent changed, shutting down: <Worker 19217>
[2022-03-18 08:24:18 +0000] [19217] [INFO] Worker exiting (pid: 19217)
[2022-03-18 08:24:18 +0000] [19218] [INFO] Parent changed, shutting down: <Worker 19218>
[2022-03-18 08:24:18 +0000] [19218] [INFO] Worker exiting (pid: 19218)
[2022-03-18 08:24:18 +0000] [19219] [INFO] Parent changed, shutting down: <Worker 19219>
[2022-03-18 08:24:18 +0000] [19219] [INFO] Worker exiting (pid: 19219)
[2022-03-18 16:24:59 +0800] [20814] [INFO] Starting gunicorn 20.1.0
[2022-03-18 16:24:59 +0800] [20814] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:24:59 +0800] [20814] [ERROR] Retrying in 1 second.
[2022-03-18 16:25:00 +0800] [20814] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:25:00 +0800] [20814] [ERROR] Retrying in 1 second.
[2022-03-18 16:25:01 +0800] [20814] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:25:01 +0800] [20814] [ERROR] Retrying in 1 second.
[2022-03-18 16:25:02 +0800] [20814] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:25:02 +0800] [20814] [ERROR] Retrying in 1 second.
[2022-03-18 16:25:03 +0800] [20814] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:25:03 +0800] [20814] [ERROR] Retrying in 1 second.
[2022-03-18 16:25:04 +0800] [20814] [ERROR] Can't connect to ('127.0.0.1', 8000)
[2022-03-18 16:32:08 +0800] [29454] [INFO] Starting gunicorn 20.1.0
[2022-03-18 16:32:08 +0800] [29454] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:32:08 +0800] [29454] [ERROR] Retrying in 1 second.
[2022-03-18 16:32:09 +0800] [29454] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:32:09 +0800] [29454] [ERROR] Retrying in 1 second.
[2022-03-18 16:32:10 +0800] [29454] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:32:10 +0800] [29454] [ERROR] Retrying in 1 second.
[2022-03-18 16:32:11 +0800] [29454] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:32:11 +0800] [29454] [ERROR] Retrying in 1 second.
[2022-03-18 16:32:12 +0800] [29454] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:32:12 +0800] [29454] [ERROR] Retrying in 1 second.
[2022-03-18 16:32:13 +0800] [29454] [ERROR] Can't connect to ('127.0.0.1', 8000)
[2022-03-18 16:34:32 +0800] [30788] [INFO] Starting gunicorn 20.1.0
[2022-03-18 16:34:32 +0800] [30788] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:34:32 +0800] [30788] [ERROR] Retrying in 1 second.
[2022-03-18 16:34:33 +0800] [30788] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:34:33 +0800] [30788] [ERROR] Retrying in 1 second.
[2022-03-18 16:34:34 +0800] [30788] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:34:34 +0800] [30788] [ERROR] Retrying in 1 second.
[2022-03-18 16:34:35 +0800] [30788] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:34:35 +0800] [30788] [ERROR] Retrying in 1 second.
[2022-03-18 16:34:36 +0800] [30788] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:34:36 +0800] [30788] [ERROR] Retrying in 1 second.
[2022-03-18 16:34:37 +0800] [30788] [ERROR] Can't connect to ('127.0.0.1', 8000)
[2022-03-18 16:38:16 +0800] [425] [INFO] Starting gunicorn 20.1.0
[2022-03-18 16:38:16 +0800] [425] [INFO] Listening at: http://127.0.0.1:8000 (425)
[2022-03-18 16:38:16 +0800] [425] [INFO] Using worker: gevent
[2022-03-18 16:38:16 +0800] [427] [INFO] Booting worker with pid: 427
[2022-03-18 16:38:16 +0800] [435] [INFO] Booting worker with pid: 435
[2022-03-18 16:38:16 +0800] [438] [INFO] Booting worker with pid: 438
[2022-03-18 08:40:24 +0000] [427] [INFO] Parent changed, shutting down: <Worker 427>
[2022-03-18 08:40:24 +0000] [427] [INFO] Worker exiting (pid: 427)
[2022-03-18 08:40:24 +0000] [435] [INFO] Parent changed, shutting down: <Worker 435>
[2022-03-18 08:40:24 +0000] [435] [INFO] Worker exiting (pid: 435)
[2022-03-18 08:40:24 +0000] [438] [INFO] Parent changed, shutting down: <Worker 438>
[2022-03-18 08:40:24 +0000] [438] [INFO] Worker exiting (pid: 438)
[2022-03-18 16:40:50 +0800] [1708] [INFO] Starting gunicorn 20.1.0
[2022-03-18 16:40:50 +0800] [1708] [INFO] Listening at: http://127.0.0.1:8000 (1708)
[2022-03-18 16:40:50 +0800] [1708] [INFO] Using worker: gevent
[2022-03-18 16:40:50 +0800] [1710] [INFO] Booting worker with pid: 1710
[2022-03-18 16:40:50 +0800] [1711] [INFO] Booting worker with pid: 1711
[2022-03-18 16:40:50 +0800] [1712] [INFO] Booting worker with pid: 1712
[2022-03-18 08:47:30 +0000] [1712] [INFO] Parent changed, shutting down: <Worker 1712>
[2022-03-18 08:47:30 +0000] [1712] [INFO] Worker exiting (pid: 1712)
[2022-03-18 08:47:30 +0000] [1710] [INFO] Parent changed, shutting down: <Worker 1710>
[2022-03-18 08:47:30 +0000] [1710] [INFO] Worker exiting (pid: 1710)
[2022-03-18 08:47:30 +0000] [1711] [INFO] Parent changed, shutting down: <Worker 1711>
[2022-03-18 08:47:30 +0000] [1711] [INFO] Worker exiting (pid: 1711)
[2022-03-18 16:51:23 +0800] [6423] [INFO] Starting gunicorn 20.1.0
[2022-03-18 16:51:23 +0800] [6423] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:51:23 +0800] [6423] [ERROR] Retrying in 1 second.
[2022-03-18 16:51:24 +0800] [6423] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:51:24 +0800] [6423] [ERROR] Retrying in 1 second.
[2022-03-18 16:51:25 +0800] [6423] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:51:25 +0800] [6423] [ERROR] Retrying in 1 second.
[2022-03-18 16:51:26 +0800] [6423] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:51:26 +0800] [6423] [ERROR] Retrying in 1 second.
[2022-03-18 16:51:27 +0800] [6423] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:51:27 +0800] [6423] [ERROR] Retrying in 1 second.
[2022-03-18 16:51:28 +0800] [6423] [ERROR] Can't connect to ('127.0.0.1', 8000)
[2022-03-18 16:52:04 +0800] [6892] [INFO] Starting gunicorn 20.1.0
[2022-03-18 16:52:04 +0800] [6892] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:52:04 +0800] [6892] [ERROR] Retrying in 1 second.
[2022-03-18 16:52:05 +0800] [6892] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:52:05 +0800] [6892] [ERROR] Retrying in 1 second.
[2022-03-18 16:52:06 +0800] [6892] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:52:06 +0800] [6892] [ERROR] Retrying in 1 second.
[2022-03-18 16:52:07 +0800] [6892] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:52:07 +0800] [6892] [ERROR] Retrying in 1 second.
[2022-03-18 16:52:08 +0800] [6892] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:52:08 +0800] [6892] [ERROR] Retrying in 1 second.
[2022-03-18 16:52:09 +0800] [6892] [ERROR] Can't connect to ('127.0.0.1', 8000)
[2022-03-18 16:52:52 +0800] [7360] [INFO] Starting gunicorn 20.1.0
[2022-03-18 16:52:52 +0800] [7360] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:52:52 +0800] [7360] [ERROR] Retrying in 1 second.
[2022-03-18 16:52:53 +0800] [7360] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:52:53 +0800] [7360] [ERROR] Retrying in 1 second.
[2022-03-18 16:52:54 +0800] [7360] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:52:54 +0800] [7360] [ERROR] Retrying in 1 second.
[2022-03-18 16:52:55 +0800] [7360] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:52:55 +0800] [7360] [ERROR] Retrying in 1 second.
[2022-03-18 16:52:56 +0800] [7360] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:52:56 +0800] [7360] [ERROR] Retrying in 1 second.
[2022-03-18 16:52:57 +0800] [7360] [ERROR] Can't connect to ('127.0.0.1', 8000)
[2022-03-18 16:55:30 +0800] [9008] [INFO] Starting gunicorn 20.1.0
[2022-03-18 16:55:30 +0800] [9008] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:55:30 +0800] [9008] [ERROR] Retrying in 1 second.
[2022-03-18 16:55:31 +0800] [9008] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:55:31 +0800] [9008] [ERROR] Retrying in 1 second.
[2022-03-18 16:55:32 +0800] [9008] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:55:32 +0800] [9008] [ERROR] Retrying in 1 second.
[2022-03-18 16:55:33 +0800] [9008] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:55:33 +0800] [9008] [ERROR] Retrying in 1 second.
[2022-03-18 16:55:34 +0800] [9008] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 16:55:34 +0800] [9008] [ERROR] Retrying in 1 second.
[2022-03-18 16:55:35 +0800] [9008] [ERROR] Can't connect to ('127.0.0.1', 8000)
[2022-03-18 17:00:38 +0800] [12123] [INFO] Starting gunicorn 20.1.0
[2022-03-18 17:00:38 +0800] [12123] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:00:38 +0800] [12123] [ERROR] Retrying in 1 second.
[2022-03-18 17:00:39 +0800] [12123] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:00:39 +0800] [12123] [ERROR] Retrying in 1 second.
[2022-03-18 17:00:40 +0800] [12123] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:00:40 +0800] [12123] [ERROR] Retrying in 1 second.
[2022-03-18 17:00:41 +0800] [12123] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:00:41 +0800] [12123] [ERROR] Retrying in 1 second.
[2022-03-18 17:00:42 +0800] [12123] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:00:42 +0800] [12123] [ERROR] Retrying in 1 second.
[2022-03-18 17:00:43 +0800] [12123] [ERROR] Can't connect to ('127.0.0.1', 8000)
[2022-03-18 17:08:50 +0800] [15459] [INFO] Starting gunicorn 20.1.0
[2022-03-18 17:08:50 +0800] [15459] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:08:50 +0800] [15459] [ERROR] Retrying in 1 second.
[2022-03-18 17:08:51 +0800] [15459] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:08:51 +0800] [15459] [ERROR] Retrying in 1 second.
[2022-03-18 17:08:52 +0800] [15459] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:08:52 +0800] [15459] [ERROR] Retrying in 1 second.
[2022-03-18 17:08:53 +0800] [15459] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:08:53 +0800] [15459] [ERROR] Retrying in 1 second.
[2022-03-18 17:08:54 +0800] [15459] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:08:54 +0800] [15459] [ERROR] Retrying in 1 second.
[2022-03-18 17:08:55 +0800] [15459] [ERROR] Can't connect to ('127.0.0.1', 8000)
[2022-03-18 17:11:12 +0800] [16492] [INFO] Starting gunicorn 20.1.0
[2022-03-18 17:11:12 +0800] [16492] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:11:12 +0800] [16492] [ERROR] Retrying in 1 second.
[2022-03-18 17:11:13 +0800] [16492] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:11:13 +0800] [16492] [ERROR] Retrying in 1 second.
[2022-03-18 17:11:14 +0800] [16492] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:11:14 +0800] [16492] [ERROR] Retrying in 1 second.
[2022-03-18 17:11:15 +0800] [16492] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:11:15 +0800] [16492] [ERROR] Retrying in 1 second.
[2022-03-18 17:11:16 +0800] [16492] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:11:16 +0800] [16492] [ERROR] Retrying in 1 second.
[2022-03-18 17:11:17 +0800] [16492] [ERROR] Can't connect to ('127.0.0.1', 8000)
[2022-03-18 17:14:38 +0800] [17926] [INFO] Starting gunicorn 20.1.0
[2022-03-18 17:14:38 +0800] [17926] [INFO] Listening at: http://127.0.0.1:8000 (17926)
[2022-03-18 17:14:38 +0800] [17926] [INFO] Using worker: gevent
[2022-03-18 17:14:38 +0800] [17928] [INFO] Booting worker with pid: 17928
[2022-03-18 17:14:38 +0800] [17929] [INFO] Booting worker with pid: 17929
[2022-03-18 17:14:39 +0800] [17930] [INFO] Booting worker with pid: 17930
[2022-03-18 09:14:59 +0000] [17929] [INFO] Parent changed, shutting down: <Worker 17929>
[2022-03-18 09:14:59 +0000] [17929] [INFO] Worker exiting (pid: 17929)
[2022-03-18 09:14:59 +0000] [17930] [INFO] Parent changed, shutting down: <Worker 17930>
[2022-03-18 09:14:59 +0000] [17930] [INFO] Worker exiting (pid: 17930)
[2022-03-18 09:14:59 +0000] [17928] [INFO] Parent changed, shutting down: <Worker 17928>
[2022-03-18 09:14:59 +0000] [17928] [INFO] Worker exiting (pid: 17928)
[2022-03-18 17:15:03 +0800] [18552] [INFO] Starting gunicorn 20.1.0
[2022-03-18 17:15:03 +0800] [18552] [INFO] Listening at: http://127.0.0.1:8000 (18552)
[2022-03-18 17:15:03 +0800] [18552] [INFO] Using worker: gevent
[2022-03-18 17:15:03 +0800] [18554] [INFO] Booting worker with pid: 18554
[2022-03-18 17:15:03 +0800] [18555] [INFO] Booting worker with pid: 18555
[2022-03-18 17:15:03 +0800] [18556] [INFO] Booting worker with pid: 18556
[2022-03-18 09:16:16 +0000] [18556] [INFO] Parent changed, shutting down: <Worker 18556>
[2022-03-18 09:16:16 +0000] [18556] [INFO] Worker exiting (pid: 18556)
[2022-03-18 09:16:16 +0000] [18555] [INFO] Parent changed, shutting down: <Worker 18555>
[2022-03-18 09:16:16 +0000] [18555] [INFO] Worker exiting (pid: 18555)
[2022-03-18 09:16:16 +0000] [18554] [INFO] Parent changed, shutting down: <Worker 18554>
[2022-03-18 09:16:16 +0000] [18554] [INFO] Worker exiting (pid: 18554)
[2022-03-18 17:16:24 +0800] [19568] [INFO] Starting gunicorn 20.1.0
[2022-03-18 17:16:24 +0800] [19568] [INFO] Listening at: http://127.0.0.1:8000 (19568)
[2022-03-18 17:16:24 +0800] [19568] [INFO] Using worker: gevent
[2022-03-18 17:16:24 +0800] [19570] [INFO] Booting worker with pid: 19570
[2022-03-18 17:16:24 +0800] [19571] [INFO] Booting worker with pid: 19571
[2022-03-18 17:16:24 +0800] [19572] [INFO] Booting worker with pid: 19572
[2022-03-18 09:17:52 +0000] [19572] [INFO] Parent changed, shutting down: <Worker 19572>
[2022-03-18 09:17:52 +0000] [19572] [INFO] Worker exiting (pid: 19572)
[2022-03-18 09:17:52 +0000] [19570] [INFO] Parent changed, shutting down: <Worker 19570>
[2022-03-18 09:17:52 +0000] [19570] [INFO] Worker exiting (pid: 19570)
[2022-03-18 09:17:53 +0000] [19571] [INFO] Parent changed, shutting down: <Worker 19571>
[2022-03-18 09:17:53 +0000] [19571] [INFO] Worker exiting (pid: 19571)
[2022-03-18 17:17:59 +0800] [20556] [INFO] Starting gunicorn 20.1.0
[2022-03-18 17:17:59 +0800] [20556] [INFO] Listening at: http://127.0.0.1:8000 (20556)
[2022-03-18 17:17:59 +0800] [20556] [INFO] Using worker: gevent
[2022-03-18 17:17:59 +0800] [20558] [INFO] Booting worker with pid: 20558
[2022-03-18 17:17:59 +0800] [20559] [INFO] Booting worker with pid: 20559
[2022-03-18 17:17:59 +0800] [20560] [INFO] Booting worker with pid: 20560
[2022-03-18 09:18:52 +0000] [20558] [INFO] Parent changed, shutting down: <Worker 20558>
[2022-03-18 09:18:52 +0000] [20558] [INFO] Worker exiting (pid: 20558)
[2022-03-18 09:18:53 +0000] [20560] [INFO] Parent changed, shutting down: <Worker 20560>
[2022-03-18 09:18:53 +0000] [20560] [INFO] Worker exiting (pid: 20560)
[2022-03-18 09:18:53 +0000] [20559] [INFO] Parent changed, shutting down: <Worker 20559>
[2022-03-18 09:18:53 +0000] [20559] [INFO] Worker exiting (pid: 20559)
[2022-03-18 17:19:31 +0800] [21701] [INFO] Starting gunicorn 20.1.0
[2022-03-18 17:19:31 +0800] [21701] [INFO] Listening at: http://127.0.0.1:8000 (21701)
[2022-03-18 17:19:31 +0800] [21701] [INFO] Using worker: gevent
[2022-03-18 17:19:31 +0800] [21703] [INFO] Booting worker with pid: 21703
[2022-03-18 17:19:31 +0800] [21710] [INFO] Booting worker with pid: 21710
[2022-03-18 17:19:31 +0800] [21711] [INFO] Booting worker with pid: 21711
[2022-03-18 09:20:47 +0000] [21710] [INFO] Parent changed, shutting down: <Worker 21710>
[2022-03-18 09:20:47 +0000] [21710] [INFO] Worker exiting (pid: 21710)
[2022-03-18 09:20:47 +0000] [21711] [INFO] Parent changed, shutting down: <Worker 21711>
[2022-03-18 09:20:47 +0000] [21711] [INFO] Worker exiting (pid: 21711)
[2022-03-18 09:20:47 +0000] [21703] [INFO] Parent changed, shutting down: <Worker 21703>
[2022-03-18 09:20:47 +0000] [21703] [INFO] Worker exiting (pid: 21703)
[2022-03-18 17:23:22 +0800] [24039] [INFO] Starting gunicorn 20.1.0
[2022-03-18 17:23:22 +0800] [24039] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:23:22 +0800] [24039] [ERROR] Retrying in 1 second.
[2022-03-18 17:23:23 +0800] [24039] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:23:23 +0800] [24039] [ERROR] Retrying in 1 second.
[2022-03-18 17:23:24 +0800] [24039] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:23:24 +0800] [24039] [ERROR] Retrying in 1 second.
[2022-03-18 17:23:25 +0800] [24039] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:23:25 +0800] [24039] [ERROR] Retrying in 1 second.
[2022-03-18 17:23:26 +0800] [24039] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:23:26 +0800] [24039] [ERROR] Retrying in 1 second.
[2022-03-18 17:23:27 +0800] [24039] [ERROR] Can't connect to ('127.0.0.1', 8000)
[2022-03-18 17:23:52 +0800] [24349] [INFO] Starting gunicorn 20.1.0
[2022-03-18 17:23:52 +0800] [24349] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:23:52 +0800] [24349] [ERROR] Retrying in 1 second.
[2022-03-18 17:23:53 +0800] [24349] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:23:53 +0800] [24349] [ERROR] Retrying in 1 second.
[2022-03-18 17:23:54 +0800] [24349] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:23:54 +0800] [24349] [ERROR] Retrying in 1 second.
[2022-03-18 17:23:55 +0800] [24349] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:23:55 +0800] [24349] [ERROR] Retrying in 1 second.
[2022-03-18 17:23:56 +0800] [24349] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:23:56 +0800] [24349] [ERROR] Retrying in 1 second.
[2022-03-18 17:23:57 +0800] [24401] [INFO] Starting gunicorn 20.1.0
[2022-03-18 17:23:57 +0800] [24401] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:23:57 +0800] [24401] [ERROR] Retrying in 1 second.
[2022-03-18 17:23:57 +0800] [24349] [ERROR] Can't connect to ('127.0.0.1', 8000)
[2022-03-18 17:23:58 +0800] [24401] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:23:58 +0800] [24401] [ERROR] Retrying in 1 second.
[2022-03-18 17:23:59 +0800] [24401] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:23:59 +0800] [24401] [ERROR] Retrying in 1 second.
[2022-03-18 17:24:00 +0800] [24401] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:24:00 +0800] [24401] [ERROR] Retrying in 1 second.
[2022-03-18 17:24:01 +0800] [24401] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:24:01 +0800] [24401] [ERROR] Retrying in 1 second.
[2022-03-18 17:24:02 +0800] [24401] [ERROR] Can't connect to ('127.0.0.1', 8000)
[2022-03-18 17:28:18 +0800] [26463] [INFO] Starting gunicorn 20.1.0
[2022-03-18 17:28:18 +0800] [26463] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:28:18 +0800] [26463] [ERROR] Retrying in 1 second.
[2022-03-18 17:28:19 +0800] [26463] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:28:19 +0800] [26463] [ERROR] Retrying in 1 second.
[2022-03-18 17:28:20 +0800] [26463] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:28:20 +0800] [26463] [ERROR] Retrying in 1 second.
[2022-03-18 17:28:21 +0800] [26463] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:28:21 +0800] [26463] [ERROR] Retrying in 1 second.
[2022-03-18 17:28:22 +0800] [26463] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 17:28:22 +0800] [26463] [ERROR] Retrying in 1 second.
[2022-03-18 17:28:23 +0800] [26463] [ERROR] Can't connect to ('127.0.0.1', 8000)
[2022-03-18 19:06:04 +0800] [30426] [INFO] Starting gunicorn 20.1.0
[2022-03-18 19:06:04 +0800] [30426] [INFO] Listening at: http://127.0.0.1:8000 (30426)
[2022-03-18 19:06:04 +0800] [30426] [INFO] Using worker: gevent
[2022-03-18 19:06:04 +0800] [30428] [INFO] Booting worker with pid: 30428
[2022-03-18 19:06:04 +0800] [30429] [INFO] Booting worker with pid: 30429
[2022-03-18 19:06:04 +0800] [30430] [INFO] Booting worker with pid: 30430
[2022-03-18 19:10:46 +0800] [30612] [INFO] Starting gunicorn 20.1.0
[2022-03-18 19:10:46 +0800] [30612] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 19:10:46 +0800] [30612] [ERROR] Retrying in 1 second.
[2022-03-18 19:10:47 +0800] [30612] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 19:10:47 +0800] [30612] [ERROR] Retrying in 1 second.
[2022-03-18 19:10:48 +0800] [30612] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 19:10:48 +0800] [30612] [ERROR] Retrying in 1 second.
[2022-03-18 19:10:49 +0800] [30612] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 19:10:49 +0800] [30612] [ERROR] Retrying in 1 second.
[2022-03-18 19:10:50 +0800] [30612] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 19:10:50 +0800] [30612] [ERROR] Retrying in 1 second.
[2022-03-18 19:10:51 +0800] [30612] [ERROR] Can't connect to ('127.0.0.1', 8000)
[2022-03-18 11:11:31 +0000] [30428] [INFO] Parent changed, shutting down: <Worker 30428>
[2022-03-18 11:11:31 +0000] [30428] [INFO] Worker exiting (pid: 30428)
[2022-03-18 11:11:31 +0000] [30429] [INFO] Parent changed, shutting down: <Worker 30429>
[2022-03-18 11:11:31 +0000] [30429] [INFO] Worker exiting (pid: 30429)
[2022-03-18 11:11:31 +0000] [30430] [INFO] Parent changed, shutting down: <Worker 30430>
[2022-03-18 11:11:31 +0000] [30430] [INFO] Worker exiting (pid: 30430)
[2022-03-18 19:11:36 +0800] [30715] [INFO] Starting gunicorn 20.1.0
[2022-03-18 19:11:36 +0800] [30715] [INFO] Listening at: http://127.0.0.1:8000 (30715)
[2022-03-18 19:11:36 +0800] [30715] [INFO] Using worker: gevent
[2022-03-18 19:11:36 +0800] [30717] [INFO] Booting worker with pid: 30717
[2022-03-18 19:11:36 +0800] [30721] [INFO] Booting worker with pid: 30721
[2022-03-18 19:11:36 +0800] [30722] [INFO] Booting worker with pid: 30722
[2022-03-18 19:12:25 +0800] [30913] [INFO] Starting gunicorn 20.1.0
[2022-03-18 19:12:25 +0800] [30913] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 19:12:25 +0800] [30913] [ERROR] Retrying in 1 second.
[2022-03-18 19:12:26 +0800] [30913] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 19:12:26 +0800] [30913] [ERROR] Retrying in 1 second.
[2022-03-18 19:12:27 +0800] [30913] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 19:12:27 +0800] [30913] [ERROR] Retrying in 1 second.
[2022-03-18 19:12:28 +0800] [30913] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 19:12:28 +0800] [30913] [ERROR] Retrying in 1 second.
[2022-03-18 19:12:29 +0800] [30913] [ERROR] Connection in use: ('127.0.0.1', 8000)
[2022-03-18 19:12:29 +0800] [30913] [ERROR] Retrying in 1 second.
[2022-03-18 19:12:30 +0800] [30913] [ERROR] Can't connect to ('127.0.0.1', 8000)
[2022-03-18 11:13:02 +0000] [30722] [ERROR] Error handling request /api/others/getuserinfo
Traceback (most recent call last):
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/utils/deprecation.py", line 133, in __call__
response = self.process_request(request)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/middleware/common.py", line 53, in process_request
if self.should_redirect_with_slash(request):
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/middleware/common.py", line 70, in should_redirect_with_slash
if not is_valid_path(request.path_info, urlconf):
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/urls/base.py", line 155, in is_valid_path
return resolve(path, urlconf)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/urls/base.py", line 24, in resolve
return get_resolver(urlconf).resolve(path)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/urls/resolvers.py", line 649, in resolve
for pattern in self.url_patterns:
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/utils/functional.py", line 49, in __get__
res = instance.__dict__[self.name] = self.func(instance)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/urls/resolvers.py", line 696, in url_patterns
patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/utils/functional.py", line 49, in __get__
res = instance.__dict__[self.name] = self.func(instance)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/urls/resolvers.py", line 689, in urlconf_module
return import_module(self.urlconf_name)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/importlib/__init__.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1014, in _gcd_import
File "<frozen importlib._bootstrap>", line 991, in _find_and_load
File "<frozen importlib._bootstrap>", line 975, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 671, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 843, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/home/cjailab/wx/project/pp-reader-kernel-master/pp-reader-kernel-master/HelloWorld/urls.py", line 24, in <module>
path('api/others/', include("api.urls")),
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/urls/conf.py", line 38, in include
urlconf_module = import_module(urlconf_module)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/importlib/__init__.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1014, in _gcd_import
File "<frozen importlib._bootstrap>", line 991, in _find_and_load
File "<frozen importlib._bootstrap>", line 975, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 671, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 843, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/home/cjailab/wx/project/pp-reader-kernel-master/pp-reader-kernel-master/api/urls.py", line 18, in <module>
from . import views
File "/home/cjailab/wx/project/pp-reader-kernel-master/pp-reader-kernel-master/api/views.py", line 4, in <module>
from .models import User
File "/home/cjailab/wx/project/pp-reader-kernel-master/pp-reader-kernel-master/api/models.py", line 5, in <module>
class User(models.Model):
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/db/models/base.py", line 132, in __new__
raise RuntimeError(
RuntimeError: Model class api.models.User doesn't declare an explicit app_label and isn't in an application in INSTALLED_APPS.
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/utils/deprecation.py", line 134, in __call__
response = response or self.get_response(request)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/core/handlers/exception.py", line 57, in inner
response = response_for_exception(request, exc)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/core/handlers/exception.py", line 139, in response_for_exception
response = handle_uncaught_exception(
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/core/handlers/exception.py", line 183, in handle_uncaught_exception
callback = resolver.resolve_error_handler(500)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/urls/resolvers.py", line 710, in resolve_error_handler
callback = getattr(self.urlconf_module, "handler%s" % view_type, None)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/utils/functional.py", line 49, in __get__
res = instance.__dict__[self.name] = self.func(instance)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/urls/resolvers.py", line 689, in urlconf_module
return import_module(self.urlconf_name)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/importlib/__init__.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1014, in _gcd_import
File "<frozen importlib._bootstrap>", line 991, in _find_and_load
File "<frozen importlib._bootstrap>", line 975, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 671, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 843, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/home/cjailab/wx/project/pp-reader-kernel-master/pp-reader-kernel-master/HelloWorld/urls.py", line 24, in <module>
path('api/others/', include("api.urls")),
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/urls/conf.py", line 38, in include
urlconf_module = import_module(urlconf_module)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/importlib/__init__.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1014, in _gcd_import
File "<frozen importlib._bootstrap>", line 991, in _find_and_load
File "<frozen importlib._bootstrap>", line 975, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 671, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 843, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/home/cjailab/wx/project/pp-reader-kernel-master/pp-reader-kernel-master/api/urls.py", line 18, in <module>
from . import views
File "/home/cjailab/wx/project/pp-reader-kernel-master/pp-reader-kernel-master/api/views.py", line 4, in <module>
from .models import User
File "/home/cjailab/wx/project/pp-reader-kernel-master/pp-reader-kernel-master/api/models.py", line 5, in <module>
class User(models.Model):
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/db/models/base.py", line 132, in __new__
raise RuntimeError(
RuntimeError: Model class api.models.User doesn't declare an explicit app_label and isn't in an application in INSTALLED_APPS.
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/utils/deprecation.py", line 134, in __call__
response = response or self.get_response(request)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/core/handlers/exception.py", line 57, in inner
response = response_for_exception(request, exc)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/core/handlers/exception.py", line 139, in response_for_exception
response = handle_uncaught_exception(
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/core/handlers/exception.py", line 183, in handle_uncaught_exception
callback = resolver.resolve_error_handler(500)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/urls/resolvers.py", line 710, in resolve_error_handler
callback = getattr(self.urlconf_module, "handler%s" % view_type, None)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/utils/functional.py", line 49, in __get__
res = instance.__dict__[self.name] = self.func(instance)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/urls/resolvers.py", line 689, in urlconf_module
return import_module(self.urlconf_name)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/importlib/__init__.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1014, in _gcd_import
File "<frozen importlib._bootstrap>", line 991, in _find_and_load
File "<frozen importlib._bootstrap>", line 975, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 671, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 843, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/home/cjailab/wx/project/pp-reader-kernel-master/pp-reader-kernel-master/HelloWorld/urls.py", line 24, in <module>
path('api/others/', include("api.urls")),
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/urls/conf.py", line 38, in include
urlconf_module = import_module(urlconf_module)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/importlib/__init__.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1014, in _gcd_import
File "<frozen importlib._bootstrap>", line 991, in _find_and_load
File "<frozen importlib._bootstrap>", line 975, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 671, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 843, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/home/cjailab/wx/project/pp-reader-kernel-master/pp-reader-kernel-master/api/urls.py", line 18, in <module>
from . import views
File "/home/cjailab/wx/project/pp-reader-kernel-master/pp-reader-kernel-master/api/views.py", line 4, in <module>
from .models import User
File "/home/cjailab/wx/project/pp-reader-kernel-master/pp-reader-kernel-master/api/models.py", line 5, in <module>
class User(models.Model):
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/db/models/base.py", line 132, in __new__
raise RuntimeError(
RuntimeError: Model class api.models.User doesn't declare an explicit app_label and isn't in an application in INSTALLED_APPS.
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/gunicorn/workers/base_async.py", line 55, in handle
self.handle_request(listener_name, req, client, addr)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/gunicorn/workers/ggevent.py", line 127, in handle_request
super().handle_request(listener_name, req, sock, addr)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/gunicorn/workers/base_async.py", line 108, in handle_request
respiter = self.wsgi(environ, resp.start_response)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/core/handlers/wsgi.py", line 132, in __call__
response = self.get_response(request)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/core/handlers/base.py", line 140, in get_response
response = self._middleware_chain(request)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/core/handlers/exception.py", line 57, in inner
response = response_for_exception(request, exc)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/core/handlers/exception.py", line 139, in response_for_exception
response = handle_uncaught_exception(
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/core/handlers/exception.py", line 183, in handle_uncaught_exception
callback = resolver.resolve_error_handler(500)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/urls/resolvers.py", line 710, in resolve_error_handler
callback = getattr(self.urlconf_module, "handler%s" % view_type, None)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/utils/functional.py", line 49, in __get__
res = instance.__dict__[self.name] = self.func(instance)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/urls/resolvers.py", line 689, in urlconf_module
return import_module(self.urlconf_name)
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/importlib/__init__.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1014, in _gcd_import
File "<frozen importlib._bootstrap>", line 991, in _find_and_load
File "<frozen importlib._bootstrap>", line 975, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 671, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 843, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/home/cjailab/wx/project/pp-reader-kernel-master/pp-reader-kernel-master/HelloWorld/urls.py", line 24, in <module>
path('api/others/', include("api.urls")),
File "/home/cjailab/anaconda3/envs/ppreader/lib/python3.8/site-packages/django/urls/conf.py", line 38, in include
urlconf_module = import_module(urlconf_module)