-
Notifications
You must be signed in to change notification settings - Fork 0
/
errlog
1084 lines (1084 loc) · 85 KB
/
errlog
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
*** Starting uWSGI 2.0.17.1 (64bit) on [Sat Sep 1 13:42:43 2018] ***
compiled with version: 4.8.4 on 01 September 2018 11:40:32
os: Linux-3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014
nodename: karamba
machine: x86_64
clock source: unix
detected number of CPU cores: 1
current working directory: /opt/ineedtp
detected binary path: /opt/ineedtp/venv/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
your processes number limit is 7771
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address ineedtp.sock fd 3
Python version: 3.4.3 (default, Nov 28 2017, 16:44:58) [GCC 4.8.4]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x989b60
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 145808 bytes (142 KB) for 1 cores
*** Operational MODE: single process ***
/opt/ineedtp/venv/lib/python3.4/site-packages/flask_sqlalchemy/__init__.py:794: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning.
'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and '
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x989b60 pid: 26378 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 26378)
spawned uWSGI worker 1 (pid: 26381, cores: 1)
[pid: 26381|app: 0|req: 1/1] 62.163.105.195 () {40 vars in 742 bytes} [Sat Sep 1 13:43:12 2018] GET /ineedtpapi => generated 730 bytes in 125 msecs (HTTP/1.1 404) 2 headers in 87 bytes (1 switches on core 0)
[pid: 26381|app: 0|req: 2/2] 62.163.105.195 () {40 vars in 758 bytes} [Sat Sep 1 13:43:18 2018] GET /ineedtpapi/install => generated 90 bytes in 1 msecs (HTTP/1.1 401) 3 headers in 137 bytes (1 switches on core 0)
[pid: 26381|app: 0|req: 3/3] 62.163.105.195 () {42 vars in 806 bytes} [Sat Sep 1 13:43:22 2018] GET /ineedtpapi/install => generated 2 bytes in 62 msecs (HTTP/1.1 200) 2 headers in 78 bytes (1 switches on core 0)
[pid: 26381|app: 0|req: 4/4] 35.174.5.108 () {40 vars in 575 bytes} [Sat Sep 1 13:45:22 2018] GET /ineedtpapi => generated 730 bytes in 2 msecs (HTTP/1.1 404) 2 headers in 87 bytes (1 switches on core 0)
[pid: 26381|app: 0|req: 5/5] 62.163.105.195 () {36 vars in 508 bytes} [Sat Sep 1 13:46:41 2018] GET /ineedtpapi/getDetail?id=3 => generated 17 bytes in 14 msecs (HTTP/1.1 200) 2 headers in 71 bytes (1 switches on core 0)
[pid: 26381|app: 0|req: 6/6] 62.163.105.195 () {36 vars in 528 bytes} [Sat Sep 1 13:46:56 2018] GET /ineedtpapi/getTPRequests?fulfilled= => generated 16 bytes in 5 msecs (HTTP/1.1 200) 2 headers in 71 bytes (1 switches on core 0)
[pid: 26381|app: 0|req: 7/7] 62.163.105.195 () {40 vars in 624 bytes} [Sat Sep 1 13:47:14 2018] POST /ineedtpapi/createTPRequest => generated 192 bytes in 14 msecs (HTTP/1.1 400) 2 headers in 74 bytes (1 switches on core 0)
[pid: 26381|app: 0|req: 8/8] 62.163.105.195 () {50 vars in 877 bytes} [Sat Sep 1 13:47:32 2018] OPTIONS /ineedtpapi/createTPRequest => generated 0 bytes in 1 msecs (HTTP/1.1 200) 3 headers in 100 bytes (0 switches on core 0)
[pid: 26381|app: 0|req: 9/9] 62.163.105.195 () {40 vars in 624 bytes} [Sat Sep 1 13:49:08 2018] POST /ineedtpapi/createTPRequest => generated 192 bytes in 2 msecs (HTTP/1.1 400) 2 headers in 74 bytes (1 switches on core 0)
SIGINT/SIGQUIT received...killing workers...
worker 1 buried after 1 seconds
goodbye to uWSGI.
VACUUM: unix socket ineedtp.sock removed.
*** Starting uWSGI 2.0.17.1 (64bit) on [Sat Sep 1 13:50:10 2018] ***
compiled with version: 4.8.4 on 01 September 2018 11:40:32
os: Linux-3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014
nodename: karamba
machine: x86_64
clock source: unix
detected number of CPU cores: 1
current working directory: /opt/ineedtp
detected binary path: /opt/ineedtp/venv/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
your processes number limit is 7771
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address ineedtp.sock fd 3
Python version: 3.4.3 (default, Nov 28 2017, 16:44:58) [GCC 4.8.4]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x26f8b60
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 145808 bytes (142 KB) for 1 cores
*** Operational MODE: single process ***
/opt/ineedtp/venv/lib/python3.4/site-packages/flask_sqlalchemy/__init__.py:794: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning.
'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and '
WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x26f8b60 pid: 26515 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 26515)
spawned uWSGI worker 1 (pid: 26518, cores: 1)
[pid: 26518|app: 0|req: 1/1] 62.163.105.195 () {40 vars in 626 bytes} [Sat Sep 1 13:50:24 2018] POST /ineedtpapi/createTPRequest => generated 149 bytes in 65 msecs (HTTP/1.1 200) 3 headers in 104 bytes (1 switches on core 0)
[pid: 26518|app: 0|req: 2/2] 62.163.105.195 () {36 vars in 528 bytes} [Sat Sep 1 13:50:29 2018] GET /ineedtpapi/getTPRequests?fulfilled= => generated 152 bytes in 6 msecs (HTTP/1.1 200) 3 headers in 104 bytes (1 switches on core 0)
[pid: 26518|app: 0|req: 3/3] 62.163.105.195 () {50 vars in 877 bytes} [Sat Sep 1 13:51:07 2018] OPTIONS /ineedtpapi/createTPRequest => generated 0 bytes in 1 msecs (HTTP/1.1 200) 4 headers in 132 bytes (0 switches on core 0)
[pid: 26518|app: 0|req: 4/4] 62.163.105.195 () {44 vars in 791 bytes} [Sat Sep 1 13:54:25 2018] GET /ineedtpapi/getTPRequests => generated 152 bytes in 7 msecs (HTTP/1.1 200) 3 headers in 104 bytes (1 switches on core 0)
[pid: 26518|app: 0|req: 5/5] 62.163.105.195 () {46 vars in 824 bytes} [Sat Sep 1 13:54:29 2018] OPTIONS /ineedtpapi/createTPRequest => generated 0 bytes in 1 msecs (HTTP/1.1 200) 4 headers in 132 bytes (0 switches on core 0)
[pid: 26518|app: 0|req: 6/6] 62.163.105.195 () {50 vars in 885 bytes} [Sat Sep 1 13:56:18 2018] OPTIONS /ineedtpapi/createTPRequest => generated 0 bytes in 1 msecs (HTTP/1.1 200) 4 headers in 132 bytes (0 switches on core 0)
[pid: 26518|app: 0|req: 7/7] 62.163.105.195 () {36 vars in 508 bytes} [Sat Sep 1 13:57:45 2018] GET /ineedtpapi/getDetail?id=1 => generated 149 bytes in 12 msecs (HTTP/1.1 200) 3 headers in 104 bytes (1 switches on core 0)
[pid: 26518|app: 0|req: 8/8] 62.163.105.195 () {40 vars in 672 bytes} [Sat Sep 1 13:57:53 2018] POST /ineedtpapi/upload => generated 205 bytes in 12 msecs (HTTP/1.1 200) 3 headers in 104 bytes (2 switches on core 0)
[pid: 26518|app: 0|req: 9/9] 62.163.105.195 () {36 vars in 508 bytes} [Sat Sep 1 13:57:55 2018] GET /ineedtpapi/getDetail?id=1 => generated 205 bytes in 3 msecs (HTTP/1.1 200) 3 headers in 104 bytes (1 switches on core 0)
[pid: 26518|app: 0|req: 10/10] 62.163.105.195 () {50 vars in 885 bytes} [Sat Sep 1 14:01:21 2018] OPTIONS /ineedtpapi/createTPRequest => generated 0 bytes in 2 msecs (HTTP/1.1 200) 4 headers in 132 bytes (0 switches on core 0)
[pid: 26518|app: 0|req: 11/11] 62.163.105.195 () {50 vars in 885 bytes} [Sat Sep 1 14:01:34 2018] OPTIONS /ineedtpapi/createTPRequest => generated 0 bytes in 1 msecs (HTTP/1.1 200) 4 headers in 132 bytes (0 switches on core 0)
[pid: 26518|app: 0|req: 12/12] 62.163.105.195 () {50 vars in 885 bytes} [Sat Sep 1 14:02:41 2018] OPTIONS /ineedtpapi/createTPRequest => generated 0 bytes in 1 msecs (HTTP/1.1 200) 4 headers in 132 bytes (0 switches on core 0)
SIGINT/SIGQUIT received...killing workers...
worker 1 buried after 1 seconds
goodbye to uWSGI.
VACUUM: unix socket ineedtp.sock removed.
*** Starting uWSGI 2.0.17.1 (64bit) on [Sat Sep 1 14:04:20 2018] ***
compiled with version: 4.8.4 on 01 September 2018 11:40:32
os: Linux-3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014
nodename: karamba
machine: x86_64
clock source: unix
detected number of CPU cores: 1
current working directory: /opt/ineedtp
detected binary path: /opt/ineedtp/venv/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
your processes number limit is 7771
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address ineedtp.sock fd 3
Python version: 3.4.3 (default, Nov 28 2017, 16:44:58) [GCC 4.8.4]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x1662b60
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 145808 bytes (142 KB) for 1 cores
*** Operational MODE: single process ***
/opt/ineedtp/venv/lib/python3.4/site-packages/flask_sqlalchemy/__init__.py:794: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning.
'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and '
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x1662b60 pid: 26745 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 26745)
spawned uWSGI worker 1 (pid: 26748, cores: 1)
[pid: 26748|app: 0|req: 1/1] 62.163.105.195 () {50 vars in 885 bytes} [Sat Sep 1 14:04:42 2018] OPTIONS /ineedtpapi/createTPRequest => generated 0 bytes in 6 msecs (HTTP/1.1 200) 4 headers in 132 bytes (0 switches on core 0)
SIGINT/SIGQUIT received...killing workers...
worker 1 buried after 1 seconds
goodbye to uWSGI.
VACUUM: unix socket ineedtp.sock removed.
*** Starting uWSGI 2.0.17.1 (64bit) on [Sat Sep 1 14:06:24 2018] ***
compiled with version: 4.8.4 on 01 September 2018 11:40:32
os: Linux-3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014
nodename: karamba
machine: x86_64
clock source: unix
detected number of CPU cores: 1
current working directory: /opt/ineedtp
detected binary path: /opt/ineedtp/venv/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
your processes number limit is 7771
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address ineedtp.sock fd 3
Python version: 3.4.3 (default, Nov 28 2017, 16:44:58) [GCC 4.8.4]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x1c9bb60
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 145808 bytes (142 KB) for 1 cores
*** Operational MODE: single process ***
/opt/ineedtp/venv/lib/python3.4/site-packages/flask_sqlalchemy/__init__.py:794: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning.
'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and '
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x1c9bb60 pid: 26787 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 26787)
spawned uWSGI worker 1 (pid: 26790, cores: 1)
[pid: 26790|app: 0|req: 1/1] 62.163.105.195 () {50 vars in 885 bytes} [Sat Sep 1 14:06:26 2018] OPTIONS /ineedtpapi/createTPRequest => generated 0 bytes in 5 msecs (HTTP/1.1 200) 4 headers in 132 bytes (0 switches on core 0)
[pid: 26790|app: 0|req: 2/2] 62.163.105.195 () {52 vars in 979 bytes} [Sat Sep 1 14:08:40 2018] POST /ineedtpapi/createTPRequest => generated 192 bytes in 20 msecs (HTTP/1.1 400) 3 headers in 106 bytes (1 switches on core 0)
[pid: 26790|app: 0|req: 3/3] 62.163.105.195 () {52 vars in 979 bytes} [Sat Sep 1 14:09:25 2018] POST /ineedtpapi/createTPRequest => generated 192 bytes in 1 msecs (HTTP/1.1 400) 3 headers in 106 bytes (1 switches on core 0)
[pid: 26790|app: 0|req: 4/4] 62.163.105.195 () {50 vars in 877 bytes} [Sat Sep 1 14:10:28 2018] OPTIONS /ineedtpapi/createTPRequest => generated 0 bytes in 1 msecs (HTTP/1.1 200) 4 headers in 132 bytes (0 switches on core 0)
[pid: 26790|app: 0|req: 5/5] 62.163.105.195 () {50 vars in 877 bytes} [Sat Sep 1 14:10:44 2018] OPTIONS /ineedtpapi/createTPRequest => generated 0 bytes in 1 msecs (HTTP/1.1 200) 4 headers in 132 bytes (0 switches on core 0)
[pid: 26790|app: 0|req: 6/6] 62.163.105.195 () {50 vars in 877 bytes} [Sat Sep 1 14:11:21 2018] OPTIONS /ineedtpapi/createTPRequest => generated 0 bytes in 1 msecs (HTTP/1.1 200) 4 headers in 132 bytes (0 switches on core 0)
SIGINT/SIGQUIT received...killing workers...
worker 1 buried after 1 seconds
goodbye to uWSGI.
VACUUM: unix socket ineedtp.sock removed.
*** Starting uWSGI 2.0.17.1 (64bit) on [Sat Sep 1 14:11:31 2018] ***
compiled with version: 4.8.4 on 01 September 2018 11:40:32
os: Linux-3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014
nodename: karamba
machine: x86_64
clock source: unix
detected number of CPU cores: 1
current working directory: /opt/ineedtp
detected binary path: /opt/ineedtp/venv/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
your processes number limit is 7771
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address ineedtp.sock fd 3
Python version: 3.4.3 (default, Nov 28 2017, 16:44:58) [GCC 4.8.4]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x13ecb60
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 145808 bytes (142 KB) for 1 cores
*** Operational MODE: single process ***
/opt/ineedtp/venv/lib/python3.4/site-packages/flask_sqlalchemy/__init__.py:794: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning.
'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and '
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x13ecb60 pid: 26884 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 26884)
spawned uWSGI worker 1 (pid: 26887, cores: 1)
[pid: 26887|app: 0|req: 1/1] 62.163.105.195 () {50 vars in 877 bytes} [Sat Sep 1 14:11:40 2018] OPTIONS /ineedtpapi/createTPRequest => generated 0 bytes in 4 msecs (HTTP/1.1 200) 4 headers in 132 bytes (0 switches on core 0)
SIGINT/SIGQUIT received...killing workers...
worker 1 buried after 1 seconds
goodbye to uWSGI.
VACUUM: unix socket ineedtp.sock removed.
*** Starting uWSGI 2.0.17.1 (64bit) on [Sat Sep 1 14:12:56 2018] ***
compiled with version: 4.8.4 on 01 September 2018 11:40:32
os: Linux-3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014
nodename: karamba
machine: x86_64
clock source: unix
detected number of CPU cores: 1
current working directory: /opt/ineedtp
detected binary path: /opt/ineedtp/venv/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
your processes number limit is 7771
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address ineedtp.sock fd 3
Python version: 3.4.3 (default, Nov 28 2017, 16:44:58) [GCC 4.8.4]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x2360b60
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 145808 bytes (142 KB) for 1 cores
*** Operational MODE: single process ***
/opt/ineedtp/venv/lib/python3.4/site-packages/flask_sqlalchemy/__init__.py:794: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning.
'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and '
WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x2360b60 pid: 26951 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 26951)
spawned uWSGI worker 1 (pid: 26954, cores: 1)
[pid: 26954|app: 0|req: 1/1] 62.163.105.195 () {52 vars in 951 bytes} [Sat Sep 1 14:13:01 2018] POST /ineedtpapi/createTPRequest => generated 192 bytes in 20 msecs (HTTP/1.1 400) 6 headers in 284 bytes (1 switches on core 0)
[pid: 26954|app: 0|req: 2/2] 62.163.105.195 () {50 vars in 877 bytes} [Sat Sep 1 14:15:12 2018] OPTIONS /ineedtpapi/createTPRequest => generated 0 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 310 bytes (0 switches on core 0)
[pid: 26954|app: 0|req: 3/3] 62.163.105.195 () {52 vars in 945 bytes} [Sat Sep 1 14:15:12 2018] POST /ineedtpapi/createTPRequest => generated 192 bytes in 1 msecs (HTTP/1.1 400) 6 headers in 284 bytes (1 switches on core 0)
SIGINT/SIGQUIT received...killing workers...
worker 1 buried after 1 seconds
goodbye to uWSGI.
VACUUM: unix socket ineedtp.sock removed.
*** Starting uWSGI 2.0.17.1 (64bit) on [Sat Sep 1 14:15:59 2018] ***
compiled with version: 4.8.4 on 01 September 2018 11:40:32
os: Linux-3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014
nodename: karamba
machine: x86_64
clock source: unix
detected number of CPU cores: 1
current working directory: /opt/ineedtp
detected binary path: /opt/ineedtp/venv/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
your processes number limit is 7771
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address ineedtp.sock fd 3
Python version: 3.4.3 (default, Nov 28 2017, 16:44:58) [GCC 4.8.4]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x1bebb60
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 145808 bytes (142 KB) for 1 cores
*** Operational MODE: single process ***
/opt/ineedtp/venv/lib/python3.4/site-packages/flask_sqlalchemy/__init__.py:794: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning.
'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and '
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x1bebb60 pid: 27038 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 27038)
spawned uWSGI worker 1 (pid: 27042, cores: 1)
[pid: 27042|app: 0|req: 1/1] 62.163.105.195 () {50 vars in 877 bytes} [Sat Sep 1 14:16:05 2018] OPTIONS /ineedtpapi/createTPRequest => generated 0 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 310 bytes (0 switches on core 0)
[pid: 27042|app: 0|req: 2/2] 62.163.105.195 () {52 vars in 945 bytes} [Sat Sep 1 14:16:05 2018] POST /ineedtpapi/createTPRequest => generated 171 bytes in 52 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 27042|app: 0|req: 3/3] 62.163.105.195 () {48 vars in 844 bytes} [Sat Sep 1 14:16:16 2018] GET /ineedtpapi/getTPRequests => generated 174 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 27042|app: 0|req: 4/4] 62.163.105.195 () {36 vars in 528 bytes} [Sat Sep 1 14:16:19 2018] GET /ineedtpapi/getTPRequests?fulfilled= => generated 174 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 27042|app: 0|req: 5/5] 62.163.105.195 () {36 vars in 530 bytes} [Sat Sep 1 14:16:27 2018] GET /ineedtpapi/getTPRequests?fulfilled=1 => generated 208 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 27042|app: 0|req: 6/6] 62.163.105.195 () {36 vars in 528 bytes} [Sat Sep 1 14:16:31 2018] GET /ineedtpapi/getTPRequests?fulfilled= => generated 174 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 27042|app: 0|req: 7/7] 62.163.105.195 () {48 vars in 844 bytes} [Sat Sep 1 14:16:39 2018] GET /ineedtpapi/getTPRequests => generated 174 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
SIGINT/SIGQUIT received...killing workers...
worker 1 buried after 1 seconds
goodbye to uWSGI.
VACUUM: unix socket ineedtp.sock removed.
*** Starting uWSGI 2.0.17.1 (64bit) on [Sat Sep 1 14:18:10 2018] ***
compiled with version: 4.8.4 on 01 September 2018 11:40:32
os: Linux-3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014
nodename: karamba
machine: x86_64
clock source: unix
detected number of CPU cores: 1
current working directory: /opt/ineedtp
detected binary path: /opt/ineedtp/venv/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
your processes number limit is 7771
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address ineedtp.sock fd 3
Python version: 3.4.3 (default, Nov 28 2017, 16:44:58) [GCC 4.8.4]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0xd59b60
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 145808 bytes (142 KB) for 1 cores
*** Operational MODE: single process ***
/opt/ineedtp/venv/lib/python3.4/site-packages/flask_sqlalchemy/__init__.py:794: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning.
'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and '
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0xd59b60 pid: 27147 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 27147)
spawned uWSGI worker 1 (pid: 27150, cores: 1)
[pid: 27150|app: 0|req: 1/1] 62.163.105.195 () {48 vars in 844 bytes} [Sat Sep 1 14:18:11 2018] GET /ineedtpapi/getTPRequests => generated 174 bytes in 40 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 27150|app: 0|req: 2/2] 62.163.105.195 () {50 vars in 877 bytes} [Sat Sep 1 14:18:23 2018] OPTIONS /ineedtpapi/createTPRequest => generated 0 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 310 bytes (0 switches on core 0)
[pid: 27150|app: 0|req: 3/3] 62.163.105.195 () {52 vars in 945 bytes} [Sat Sep 1 14:18:23 2018] POST /ineedtpapi/createTPRequest => generated 155 bytes in 11 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 27150|app: 0|req: 4/4] 62.163.105.195 () {48 vars in 844 bytes} [Sat Sep 1 14:18:23 2018] GET /ineedtpapi/getTPRequests => generated 316 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 27150|app: 0|req: 5/5] 62.163.105.195 () {48 vars in 844 bytes} [Sat Sep 1 14:20:00 2018] GET /ineedtpapi/getTPRequests => generated 316 bytes in 11 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
SIGINT/SIGQUIT received...killing workers...
worker 1 buried after 1 seconds
goodbye to uWSGI.
VACUUM: unix socket ineedtp.sock removed.
*** Starting uWSGI 2.0.17.1 (64bit) on [Sat Sep 1 14:21:08 2018] ***
compiled with version: 4.8.4 on 01 September 2018 11:40:32
os: Linux-3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014
nodename: karamba
machine: x86_64
clock source: unix
detected number of CPU cores: 1
current working directory: /opt/ineedtp
detected binary path: /opt/ineedtp/venv/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
your processes number limit is 7771
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address ineedtp.sock fd 3
Python version: 3.4.3 (default, Nov 28 2017, 16:44:58) [GCC 4.8.4]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x2049b60
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 145808 bytes (142 KB) for 1 cores
*** Operational MODE: single process ***
/opt/ineedtp/venv/lib/python3.4/site-packages/flask_sqlalchemy/__init__.py:794: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning.
'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and '
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x2049b60 pid: 27224 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 27224)
spawned uWSGI worker 1 (pid: 27227, cores: 1)
SIGINT/SIGQUIT received...killing workers...
worker 1 buried after 1 seconds
goodbye to uWSGI.
VACUUM: unix socket ineedtp.sock removed.
*** Starting uWSGI 2.0.17.1 (64bit) on [Sat Sep 1 14:22:24 2018] ***
compiled with version: 4.8.4 on 01 September 2018 11:40:32
os: Linux-3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014
nodename: karamba
machine: x86_64
clock source: unix
detected number of CPU cores: 1
current working directory: /opt/ineedtp
detected binary path: /opt/ineedtp/venv/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
your processes number limit is 7771
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address ineedtp.sock fd 3
Python version: 3.4.3 (default, Nov 28 2017, 16:44:58) [GCC 4.8.4]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x160fb60
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 145808 bytes (142 KB) for 1 cores
*** Operational MODE: single process ***
/opt/ineedtp/venv/lib/python3.4/site-packages/flask_sqlalchemy/__init__.py:794: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning.
'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and '
WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x160fb60 pid: 27291 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 27291)
spawned uWSGI worker 1 (pid: 27294, cores: 1)
[pid: 27294|app: 0|req: 1/1] 62.163.105.195 () {48 vars in 844 bytes} [Sat Sep 1 14:24:08 2018] GET /ineedtpapi/getTPRequests => generated 316 bytes in 48 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 27294|app: 0|req: 2/2] 62.163.105.195 () {48 vars in 844 bytes} [Sat Sep 1 14:24:20 2018] GET /ineedtpapi/getTPRequests => generated 316 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 27294|app: 0|req: 3/3] 62.163.105.195 () {48 vars in 844 bytes} [Sat Sep 1 14:24:20 2018] GET /ineedtpapi/getTPRequests => generated 316 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 27294|app: 0|req: 4/4] 62.163.105.195 () {48 vars in 844 bytes} [Sat Sep 1 14:24:23 2018] GET /ineedtpapi/getTPRequests => generated 316 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 27294|app: 0|req: 5/5] 62.163.105.195 () {48 vars in 867 bytes} [Sat Sep 1 14:27:55 2018] GET /ineedtpapi/getDetails?id=undefined => generated 730 bytes in 127 msecs (HTTP/1.1 404) 2 headers in 87 bytes (1 switches on core 0)
[pid: 27294|app: 0|req: 6/6] 62.163.105.195 () {36 vars in 508 bytes} [Sat Sep 1 14:29:58 2018] GET /ineedtpapi/getRandom?id=1 => generated 730 bytes in 2 msecs (HTTP/1.1 404) 2 headers in 87 bytes (1 switches on core 0)
[pid: 27294|app: 0|req: 7/7] 62.163.105.195 () {36 vars in 508 bytes} [Sat Sep 1 14:30:01 2018] GET /ineedtpapi/getRandom?id=1 => generated 730 bytes in 2 msecs (HTTP/1.1 404) 2 headers in 87 bytes (1 switches on core 0)
[pid: 27294|app: 0|req: 8/8] 62.163.105.195 () {48 vars in 867 bytes} [Sat Sep 1 14:30:41 2018] GET /ineedtpapi/getDetails?id=undefined => generated 730 bytes in 2 msecs (HTTP/1.1 404) 2 headers in 87 bytes (1 switches on core 0)
[pid: 27294|app: 0|req: 9/9] 62.163.105.195 () {48 vars in 867 bytes} [Sat Sep 1 14:31:12 2018] GET /ineedtpapi/getDetails?id=undefined => generated 730 bytes in 2 msecs (HTTP/1.1 404) 2 headers in 87 bytes (1 switches on core 0)
[pid: 27294|app: 0|req: 10/10] 62.163.105.195 () {48 vars in 851 bytes} [Sat Sep 1 14:31:22 2018] GET /ineedtpapi/getDetails?id=3 => generated 730 bytes in 1 msecs (HTTP/1.1 404) 2 headers in 87 bytes (1 switches on core 0)
[pid: 27294|app: 0|req: 11/11] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 14:31:45 2018] GET /ineedtpapi/getDetail?id=3 => generated 155 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 27294|app: 0|req: 12/12] 62.163.105.195 () {48 vars in 844 bytes} [Sat Sep 1 14:31:48 2018] GET /ineedtpapi/getTPRequests => generated 316 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 27294|app: 0|req: 13/13] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 14:31:50 2018] GET /ineedtpapi/getDetail?id=2 => generated 172 bytes in 7 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 27294|app: 0|req: 14/14] 62.163.105.195 () {50 vars in 877 bytes} [Sat Sep 1 14:33:14 2018] OPTIONS /ineedtpapi/createTPRequest => generated 0 bytes in 2 msecs (HTTP/1.1 200) 7 headers in 310 bytes (0 switches on core 0)
[pid: 27294|app: 0|req: 15/15] 62.163.105.195 () {52 vars in 933 bytes} [Sat Sep 1 14:33:15 2018] POST /ineedtpapi/createTPRequest => generated 156 bytes in 20 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 27294|app: 0|req: 16/16] 62.163.105.195 () {48 vars in 844 bytes} [Sat Sep 1 14:33:15 2018] GET /ineedtpapi/getTPRequests => generated 459 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 27294|app: 0|req: 17/17] 18.206.206.28 () {40 vars in 596 bytes} [Sat Sep 1 14:39:32 2018] GET /ineedtpapi/getRandom => generated 730 bytes in 4 msecs (HTTP/1.1 404) 2 headers in 87 bytes (1 switches on core 0)
SIGINT/SIGQUIT received...killing workers...
worker 1 buried after 1 seconds
goodbye to uWSGI.
VACUUM: unix socket ineedtp.sock removed.
*** Starting uWSGI 2.0.17.1 (64bit) on [Sat Sep 1 14:40:25 2018] ***
compiled with version: 4.8.4 on 01 September 2018 11:40:32
os: Linux-3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014
nodename: karamba
machine: x86_64
clock source: unix
detected number of CPU cores: 1
current working directory: /opt/ineedtp
detected binary path: /opt/ineedtp/venv/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
your processes number limit is 7771
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address ineedtp.sock fd 3
Python version: 3.4.3 (default, Nov 28 2017, 16:44:58) [GCC 4.8.4]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x148cb60
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 145808 bytes (142 KB) for 1 cores
*** Operational MODE: single process ***
/opt/ineedtp/venv/lib/python3.4/site-packages/flask_sqlalchemy/__init__.py:794: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning.
'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and '
WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x148cb60 pid: 27617 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 27617)
spawned uWSGI worker 1 (pid: 27620, cores: 1)
[pid: 27620|app: 0|req: 1/1] 62.163.105.195 () {42 vars in 810 bytes} [Sat Sep 1 14:40:40 2018] GET /ineedtpapi/getRandom => generated 11152 bytes in 12 msecs via sendfile() (HTTP/1.1 200) 10 headers in 447 bytes (0 switches on core 0)
[pid: 27620|app: 0|req: 2/2] 62.163.105.195 () {48 vars in 955 bytes} [Sat Sep 1 14:40:42 2018] GET /ineedtpapi/getRandom => generated 11152 bytes in 1 msecs via sendfile() (HTTP/1.1 200) 10 headers in 447 bytes (0 switches on core 0)
[pid: 27620|app: 0|req: 3/3] 62.163.105.195 () {44 vars in 791 bytes} [Sat Sep 1 14:42:32 2018] GET /ineedtpapi/getTPRequests => generated 459 bytes in 41 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 27620|app: 0|req: 4/4] 62.163.105.195 () {44 vars in 796 bytes} [Sat Sep 1 14:42:34 2018] GET /ineedtpapi/getDetail?id=2 => generated 172 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
Traceback (most recent call last):
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 2309, in __call__
return self.wsgi_app(environ, start_response)
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 2295, in wsgi_app
response = self.handle_exception(e)
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 1741, in handle_exception
reraise(exc_type, exc_value, tb)
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/_compat.py", line 35, in reraise
raise value
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 2292, in wsgi_app
response = self.full_dispatch_request()
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 1815, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 1718, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/_compat.py", line 35, in reraise
raise value
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 1813, in full_dispatch_request
rv = self.dispatch_request()
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 1799, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "./app/main/views.py", line 41, in create_request
req = TPRequest(name=request_json['name'],
TypeError: 'NoneType' object is not subscriptable
[pid: 27620|app: 0|req: 5/5] 62.163.105.195 () {52 vars in 1037 bytes} [Sat Sep 1 14:42:45 2018] POST /ineedtpapi/createTPRequest => generated 0 bytes in 11 msecs (HTTP/1.1 500) 0 headers in 0 bytes (0 switches on core 0)
[pid: 27620|app: 0|req: 6/6] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 14:43:25 2018] GET /ineedtpapi/getDetail?id=2 => generated 172 bytes in 8 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 27620|app: 0|req: 7/7] 62.163.105.195 () {52 vars in 1019 bytes} [Sat Sep 1 14:43:32 2018] POST /ineedtpapi/upload => generated 28 bytes in 2 msecs (HTTP/1.1 400) 6 headers in 290 bytes (1 switches on core 0)
[pid: 27620|app: 0|req: 8/8] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 14:44:55 2018] GET /ineedtpapi/getDetail?id=2 => generated 172 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 27620|app: 0|req: 9/9] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 14:45:52 2018] GET /ineedtpapi/getDetail?id=2 => generated 172 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 27620|app: 0|req: 10/10] 62.163.105.195 () {50 vars in 859 bytes} [Sat Sep 1 14:45:59 2018] OPTIONS /ineedtpapi/upload => generated 0 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 310 bytes (0 switches on core 0)
[pid: 27620|app: 0|req: 11/11] 62.163.105.195 () {52 vars in 943 bytes} [Sat Sep 1 14:45:59 2018] POST /ineedtpapi/upload => generated 28 bytes in 1 msecs (HTTP/1.1 400) 6 headers in 290 bytes (1 switches on core 0)
[pid: 27620|app: 0|req: 12/12] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 14:46:25 2018] GET /ineedtpapi/getDetail?id=2 => generated 172 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 27620|app: 0|req: 13/13] 62.163.105.195 () {50 vars in 859 bytes} [Sat Sep 1 14:46:30 2018] OPTIONS /ineedtpapi/upload => generated 0 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 310 bytes (0 switches on core 0)
[pid: 27620|app: 0|req: 14/14] 62.163.105.195 () {52 vars in 943 bytes} [Sat Sep 1 14:46:30 2018] POST /ineedtpapi/upload => generated 28 bytes in 1 msecs (HTTP/1.1 400) 6 headers in 290 bytes (1 switches on core 0)
[pid: 27620|app: 0|req: 15/15] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 14:47:20 2018] GET /ineedtpapi/getDetail?id=2 => generated 172 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 27620|app: 0|req: 16/16] 62.163.105.195 () {50 vars in 859 bytes} [Sat Sep 1 14:47:27 2018] OPTIONS /ineedtpapi/upload => generated 0 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 310 bytes (0 switches on core 0)
[pid: 27620|app: 0|req: 17/17] 62.163.105.195 () {52 vars in 943 bytes} [Sat Sep 1 14:47:27 2018] POST /ineedtpapi/upload => generated 28 bytes in 1 msecs (HTTP/1.1 400) 6 headers in 290 bytes (1 switches on core 0)
[pid: 27620|app: 0|req: 18/18] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 14:47:53 2018] GET /ineedtpapi/getDetail?id=2 => generated 172 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 27620|app: 0|req: 19/19] 62.163.105.195 () {50 vars in 859 bytes} [Sat Sep 1 14:47:58 2018] OPTIONS /ineedtpapi/upload => generated 0 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 310 bytes (0 switches on core 0)
[pid: 27620|app: 0|req: 20/20] 62.163.105.195 () {52 vars in 943 bytes} [Sat Sep 1 14:47:58 2018] POST /ineedtpapi/upload => generated 28 bytes in 1 msecs (HTTP/1.1 400) 6 headers in 290 bytes (1 switches on core 0)
[pid: 27620|app: 0|req: 21/21] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 14:50:12 2018] GET /ineedtpapi/getDetail?id=2 => generated 172 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
Traceback (most recent call last):
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 2309, in __call__
return self.wsgi_app(environ, start_response)
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 2295, in wsgi_app
response = self.handle_exception(e)
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 1741, in handle_exception
reraise(exc_type, exc_value, tb)
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/_compat.py", line 35, in reraise
raise value
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 2292, in wsgi_app
response = self.full_dispatch_request()
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 1815, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 1718, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/_compat.py", line 35, in reraise
raise value
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 1813, in full_dispatch_request
rv = self.dispatch_request()
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 1799, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "./app/main/views.py", line 86, in upload_responce
request_id = request_json['id']
TypeError: 'NoneType' object is not subscriptable
[pid: 27620|app: 0|req: 22/22] 62.163.105.195 () {52 vars in 1025 bytes} [Sat Sep 1 14:50:17 2018] POST /ineedtpapi/upload => generated 0 bytes in 15 msecs (HTTP/1.1 500) 0 headers in 0 bytes (0 switches on core 0)
SIGINT/SIGQUIT received...killing workers...
worker 1 buried after 1 seconds
goodbye to uWSGI.
VACUUM: unix socket ineedtp.sock removed.
*** Starting uWSGI 2.0.17.1 (64bit) on [Sat Sep 1 14:51:33 2018] ***
compiled with version: 4.8.4 on 01 September 2018 11:40:32
os: Linux-3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014
nodename: karamba
machine: x86_64
clock source: unix
detected number of CPU cores: 1
current working directory: /opt/ineedtp
detected binary path: /opt/ineedtp/venv/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
your processes number limit is 7771
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address ineedtp.sock fd 3
Python version: 3.4.3 (default, Nov 28 2017, 16:44:58) [GCC 4.8.4]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x1295b60
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 145808 bytes (142 KB) for 1 cores
*** Operational MODE: single process ***
/opt/ineedtp/venv/lib/python3.4/site-packages/flask_sqlalchemy/__init__.py:794: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning.
'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and '
WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x1295b60 pid: 27778 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 27778)
spawned uWSGI worker 1 (pid: 27781, cores: 1)
[pid: 27781|app: 0|req: 1/1] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 14:51:40 2018] GET /ineedtpapi/getDetail?id=2 => generated 172 bytes in 39 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
Traceback (most recent call last):
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 2309, in __call__
return self.wsgi_app(environ, start_response)
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 2295, in wsgi_app
response = self.handle_exception(e)
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 1741, in handle_exception
reraise(exc_type, exc_value, tb)
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/_compat.py", line 35, in reraise
raise value
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 2292, in wsgi_app
response = self.full_dispatch_request()
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 1815, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 1718, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/_compat.py", line 35, in reraise
raise value
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 1813, in full_dispatch_request
rv = self.dispatch_request()
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 1799, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "./app/main/views.py", line 85, in upload_responce
request_id = request.data['id']
TypeError: byte indices must be integers, not str
[pid: 27781|app: 0|req: 2/2] 62.163.105.195 () {52 vars in 1025 bytes} [Sat Sep 1 14:51:47 2018] POST /ineedtpapi/upload => generated 0 bytes in 24 msecs (HTTP/1.1 500) 0 headers in 0 bytes (0 switches on core 0)
[pid: 27781|app: 0|req: 3/3] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 14:52:28 2018] GET /ineedtpapi/getDetail?id=2 => generated 172 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
Traceback (most recent call last):
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 2309, in __call__
return self.wsgi_app(environ, start_response)
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 2295, in wsgi_app
response = self.handle_exception(e)
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 1741, in handle_exception
reraise(exc_type, exc_value, tb)
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/_compat.py", line 35, in reraise
raise value
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 2292, in wsgi_app
response = self.full_dispatch_request()
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 1815, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 1718, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/_compat.py", line 35, in reraise
raise value
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 1813, in full_dispatch_request
rv = self.dispatch_request()
File "/opt/ineedtp/venv/lib/python3.4/site-packages/flask/app.py", line 1799, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "./app/main/views.py", line 85, in upload_responce
request_id = request.data['id']
TypeError: byte indices must be integers, not str
[pid: 27781|app: 0|req: 4/4] 62.163.105.195 () {52 vars in 1025 bytes} [Sat Sep 1 14:52:34 2018] POST /ineedtpapi/upload => generated 0 bytes in 22 msecs (HTTP/1.1 500) 0 headers in 0 bytes (2 switches on core 0)
SIGINT/SIGQUIT received...killing workers...
worker 1 buried after 1 seconds
goodbye to uWSGI.
VACUUM: unix socket ineedtp.sock removed.
*** Starting uWSGI 2.0.17.1 (64bit) on [Sat Sep 1 14:54:03 2018] ***
compiled with version: 4.8.4 on 01 September 2018 11:40:32
os: Linux-3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014
nodename: karamba
machine: x86_64
clock source: unix
detected number of CPU cores: 1
current working directory: /opt/ineedtp
detected binary path: /opt/ineedtp/venv/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
your processes number limit is 7771
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address ineedtp.sock fd 3
Python version: 3.4.3 (default, Nov 28 2017, 16:44:58) [GCC 4.8.4]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x23bdb60
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 145808 bytes (142 KB) for 1 cores
*** Operational MODE: single process ***
/opt/ineedtp/venv/lib/python3.4/site-packages/flask_sqlalchemy/__init__.py:794: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning.
'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and '
WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x23bdb60 pid: 27895 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 27895)
spawned uWSGI worker 1 (pid: 27898, cores: 1)
[pid: 27898|app: 0|req: 1/1] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 14:54:11 2018] GET /ineedtpapi/getDetail?id=2 => generated 172 bytes in 44 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 27898|app: 0|req: 2/2] 62.163.105.195 () {52 vars in 1025 bytes} [Sat Sep 1 14:54:16 2018] POST /ineedtpapi/upload => generated 192 bytes in 19 msecs (HTTP/1.1 400) 6 headers in 284 bytes (1 switches on core 0)
SIGINT/SIGQUIT received...killing workers...
worker 1 buried after 1 seconds
goodbye to uWSGI.
VACUUM: unix socket ineedtp.sock removed.
*** Starting uWSGI 2.0.17.1 (64bit) on [Sat Sep 1 14:55:34 2018] ***
compiled with version: 4.8.4 on 01 September 2018 11:40:32
os: Linux-3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014
nodename: karamba
machine: x86_64
clock source: unix
detected number of CPU cores: 1
current working directory: /opt/ineedtp
detected binary path: /opt/ineedtp/venv/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
your processes number limit is 7771
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address ineedtp.sock fd 3
Python version: 3.4.3 (default, Nov 28 2017, 16:44:58) [GCC 4.8.4]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x1b6eb60
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 145808 bytes (142 KB) for 1 cores
*** Operational MODE: single process ***
/opt/ineedtp/venv/lib/python3.4/site-packages/flask_sqlalchemy/__init__.py:794: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning.
'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and '
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x1b6eb60 pid: 27985 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 27985)
spawned uWSGI worker 1 (pid: 27988, cores: 1)
[pid: 27988|app: 0|req: 1/1] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 14:55:38 2018] GET /ineedtpapi/getDetail?id=2 => generated 172 bytes in 49 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
b''
[pid: 27988|app: 0|req: 2/2] 62.163.105.195 () {52 vars in 1025 bytes} [Sat Sep 1 14:55:43 2018] POST /ineedtpapi/upload => generated 192 bytes in 18 msecs (HTTP/1.1 400) 6 headers in 284 bytes (3 switches on core 0)
[pid: 27988|app: 0|req: 3/3] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 14:57:03 2018] GET /ineedtpapi/getDetail?id=2 => generated 172 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
SIGINT/SIGQUIT received...killing workers...
worker 1 buried after 1 seconds
goodbye to uWSGI.
VACUUM: unix socket ineedtp.sock removed.
*** Starting uWSGI 2.0.17.1 (64bit) on [Sat Sep 1 14:57:21 2018] ***
compiled with version: 4.8.4 on 01 September 2018 11:40:32
os: Linux-3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014
nodename: karamba
machine: x86_64
clock source: unix
detected number of CPU cores: 1
current working directory: /opt/ineedtp
detected binary path: /opt/ineedtp/venv/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
your processes number limit is 7771
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address ineedtp.sock fd 3
Python version: 3.4.3 (default, Nov 28 2017, 16:44:58) [GCC 4.8.4]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x1550b60
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 145808 bytes (142 KB) for 1 cores
*** Operational MODE: single process ***
/opt/ineedtp/venv/lib/python3.4/site-packages/flask_sqlalchemy/__init__.py:794: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning.
'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and '
WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x1550b60 pid: 28019 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 28019)
spawned uWSGI worker 1 (pid: 28022, cores: 1)
[pid: 28022|app: 0|req: 1/1] 62.163.105.195 () {48 vars in 807 bytes} [Sat Sep 1 14:57:27 2018] OPTIONS /ineedtpapi/upload => generated 0 bytes in 5 msecs (HTTP/1.1 200) 7 headers in 309 bytes (0 switches on core 0)
b''
[pid: 28022|app: 0|req: 2/2] 62.163.105.195 () {52 vars in 1024 bytes} [Sat Sep 1 14:57:28 2018] PUT /ineedtpapi/upload => generated 192 bytes in 19 msecs (HTTP/1.1 400) 6 headers in 284 bytes (1 switches on core 0)
[pid: 28022|app: 0|req: 3/3] 62.163.105.195 () {42 vars in 782 bytes} [Sat Sep 1 15:02:36 2018] GET /ineedtpapi/getTPRequests => generated 459 bytes in 48 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 28022|app: 0|req: 4/4] 62.163.105.195 () {42 vars in 787 bytes} [Sat Sep 1 15:02:44 2018] GET /ineedtpapi/getDetail?id=2 => generated 172 bytes in 8 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 28022|app: 0|req: 5/5] 62.163.105.195 () {42 vars in 782 bytes} [Sat Sep 1 15:02:46 2018] GET /ineedtpapi/getTPRequests => generated 459 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 28022|app: 0|req: 6/6] 62.163.105.195 () {42 vars in 787 bytes} [Sat Sep 1 15:02:50 2018] GET /ineedtpapi/getDetail?id=2 => generated 172 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
b''
[pid: 28022|app: 0|req: 7/7] 62.163.105.195 () {48 vars in 1011 bytes} [Sat Sep 1 15:03:04 2018] PUT /ineedtpapi/upload => generated 192 bytes in 3 msecs (HTTP/1.1 400) 6 headers in 284 bytes (1 switches on core 0)
[pid: 28022|app: 0|req: 8/8] 62.163.105.195 () {42 vars in 727 bytes} [Sat Sep 1 15:04:32 2018] GET /ineedtpapi/getTPRequests => generated 459 bytes in 14 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 28022|app: 0|req: 9/9] 62.163.105.195 () {42 vars in 732 bytes} [Sat Sep 1 15:04:36 2018] GET /ineedtpapi/getDetail?id=2 => generated 172 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 28022|app: 0|req: 10/10] 62.163.105.195 () {42 vars in 727 bytes} [Sat Sep 1 15:04:39 2018] GET /ineedtpapi/getTPRequests => generated 459 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 28022|app: 0|req: 11/11] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 15:07:07 2018] GET /ineedtpapi/getDetail?id=2 => generated 172 bytes in 8 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 28022|app: 0|req: 12/12] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 15:07:19 2018] GET /ineedtpapi/getDetail?id=2 => generated 172 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 28022|app: 0|req: 13/13] 62.163.105.195 () {48 vars in 956 bytes} [Sat Sep 1 15:07:26 2018] GET /ineedtpapi/upload?name=asd&message=asd&file=aaaaa.jpg => generated 178 bytes in 1 msecs (HTTP/1.1 405) 3 headers in 102 bytes (1 switches on core 0)
SIGINT/SIGQUIT received...killing workers...
worker 1 buried after 1 seconds
goodbye to uWSGI.
VACUUM: unix socket ineedtp.sock removed.
*** Starting uWSGI 2.0.17.1 (64bit) on [Sat Sep 1 15:08:24 2018] ***
compiled with version: 4.8.4 on 01 September 2018 11:40:32
os: Linux-3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014
nodename: karamba
machine: x86_64
clock source: unix
detected number of CPU cores: 1
current working directory: /opt/ineedtp
detected binary path: /opt/ineedtp/venv/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
your processes number limit is 7771
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address ineedtp.sock fd 3
Python version: 3.4.3 (default, Nov 28 2017, 16:44:58) [GCC 4.8.4]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x141db60
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 145808 bytes (142 KB) for 1 cores
*** Operational MODE: single process ***
/opt/ineedtp/venv/lib/python3.4/site-packages/flask_sqlalchemy/__init__.py:794: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning.
'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and '
WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x141db60 pid: 28203 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 28203)
spawned uWSGI worker 1 (pid: 28206, cores: 1)
[pid: 28206|app: 0|req: 1/1] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 15:08:29 2018] GET /ineedtpapi/getDetail?id=2 => generated 172 bytes in 49 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
b''
[pid: 28206|app: 0|req: 2/2] 62.163.105.195 () {54 vars in 1036 bytes} [Sat Sep 1 15:08:37 2018] POST /ineedtpapi/upload => generated 28 bytes in 2 msecs (HTTP/1.1 400) 6 headers in 290 bytes (1 switches on core 0)
[pid: 28206|app: 0|req: 3/3] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 15:08:58 2018] GET /ineedtpapi/getDetail?id=2 => generated 172 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 28206|app: 0|req: 4/4] 62.163.105.195 () {36 vars in 528 bytes} [Sat Sep 1 15:09:09 2018] GET /ineedtpapi/getTPRequests?fulfilled= => generated 459 bytes in 8 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
b''
[pid: 28206|app: 0|req: 5/5] 62.163.105.195 () {40 vars in 672 bytes} [Sat Sep 1 15:09:19 2018] POST /ineedtpapi/upload => generated 211 bytes in 15 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 28206|app: 0|req: 6/6] 62.163.105.195 () {36 vars in 528 bytes} [Sat Sep 1 15:09:25 2018] GET /ineedtpapi/getTPRequests?fulfilled= => generated 316 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 28206|app: 0|req: 7/7] 62.163.105.195 () {36 vars in 508 bytes} [Sat Sep 1 15:10:23 2018] GET /ineedtpapi/getDetail?id=4 => generated 211 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 28206|app: 0|req: 8/8] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 15:10:59 2018] GET /ineedtpapi/getDetail?id=2 => generated 172 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
b''
[pid: 28206|app: 0|req: 9/9] 62.163.105.195 () {54 vars in 1112 bytes} [Sat Sep 1 15:11:05 2018] POST /ineedtpapi/upload => generated 192 bytes in 17 msecs (HTTP/1.1 400) 6 headers in 284 bytes (3 switches on core 0)
[pid: 28206|app: 0|req: 10/10] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 15:11:32 2018] GET /ineedtpapi/getDetail?id=2 => generated 172 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 28206|app: 0|req: 11/11] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 15:11:33 2018] GET /ineedtpapi/getDetail?id=2 => generated 172 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
b''
[pid: 28206|app: 0|req: 12/12] 62.163.105.195 () {54 vars in 1112 bytes} [Sat Sep 1 15:11:39 2018] POST /ineedtpapi/upload => generated 192 bytes in 5 msecs (HTTP/1.1 400) 6 headers in 284 bytes (3 switches on core 0)
b''
[pid: 28206|app: 0|req: 13/13] 62.163.105.195 () {54 vars in 1112 bytes} [Sat Sep 1 15:12:51 2018] POST /ineedtpapi/upload => generated 192 bytes in 6 msecs (HTTP/1.1 400) 6 headers in 284 bytes (1 switches on core 0)
b''
[pid: 28206|app: 0|req: 14/14] 62.163.105.195 () {54 vars in 1125 bytes} [Sat Sep 1 15:12:52 2018] POST /ineedtpapi/upload => generated 192 bytes in 5 msecs (HTTP/1.1 400) 6 headers in 284 bytes (1 switches on core 0)
[pid: 28206|app: 0|req: 15/15] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 15:12:55 2018] GET /ineedtpapi/getDetail?id=2 => generated 172 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
b''
[pid: 28206|app: 0|req: 16/16] 62.163.105.195 () {40 vars in 672 bytes} [Sat Sep 1 15:13:05 2018] POST /ineedtpapi/upload => generated 218 bytes in 12 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
SIGINT/SIGQUIT received...killing workers...
worker 1 buried after 1 seconds
goodbye to uWSGI.
VACUUM: unix socket ineedtp.sock removed.
*** Starting uWSGI 2.0.17.1 (64bit) on [Sat Sep 1 15:13:58 2018] ***
compiled with version: 4.8.4 on 01 September 2018 11:40:32
os: Linux-3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014
nodename: karamba
machine: x86_64
clock source: unix
detected number of CPU cores: 1
current working directory: /opt/ineedtp
detected binary path: /opt/ineedtp/venv/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
your processes number limit is 7771
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address ineedtp.sock fd 3
Python version: 3.4.3 (default, Nov 28 2017, 16:44:58) [GCC 4.8.4]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x23b9b60
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 145808 bytes (142 KB) for 1 cores
*** Operational MODE: single process ***
/opt/ineedtp/venv/lib/python3.4/site-packages/flask_sqlalchemy/__init__.py:794: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning.
'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and '
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x23b9b60 pid: 28297 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 28297)
spawned uWSGI worker 1 (pid: 28300, cores: 1)
[pid: 28300|app: 0|req: 1/1] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 15:14:05 2018] GET /ineedtpapi/getDetail?id=2 => generated 218 bytes in 50 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 28300|app: 0|req: 2/2] 62.163.105.195 () {48 vars in 807 bytes} [Sat Sep 1 15:14:10 2018] OPTIONS /ineedtpapi/upload => generated 0 bytes in 1 msecs (HTTP/1.1 200) 7 headers in 310 bytes (0 switches on core 0)
[pid: 28300|app: 0|req: 3/3] 62.163.105.195 () {52 vars in 1024 bytes} [Sat Sep 1 15:14:10 2018] PUT /ineedtpapi/upload => generated 178 bytes in 13 msecs (HTTP/1.1 405) 3 headers in 103 bytes (1 switches on core 0)
[pid: 28300|app: 0|req: 4/4] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 15:14:27 2018] GET /ineedtpapi/getDetail?id=2 => generated 218 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
ImmutableMultiDict([('message', 'I urgently need this !'), ('name', 'Philipp Beau')])
[pid: 28300|app: 0|req: 5/5] 62.163.105.195 () {52 vars in 1025 bytes} [Sat Sep 1 15:14:32 2018] POST /ineedtpapi/upload => generated 192 bytes in 6 msecs (HTTP/1.1 400) 6 headers in 284 bytes (3 switches on core 0)
ImmutableMultiDict([('message', 'I urgently need this !'), ('name', 'Philipp Beau')])
[pid: 28300|app: 0|req: 6/6] 62.163.105.195 () {54 vars in 1112 bytes} [Sat Sep 1 15:15:02 2018] POST /ineedtpapi/upload => generated 192 bytes in 7 msecs (HTTP/1.1 400) 6 headers in 284 bytes (3 switches on core 0)
SIGINT/SIGQUIT received...killing workers...
worker 1 buried after 1 seconds
goodbye to uWSGI.
VACUUM: unix socket ineedtp.sock removed.
*** Starting uWSGI 2.0.17.1 (64bit) on [Sat Sep 1 15:15:28 2018] ***
compiled with version: 4.8.4 on 01 September 2018 11:40:32
os: Linux-3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014
nodename: karamba
machine: x86_64
clock source: unix
detected number of CPU cores: 1
current working directory: /opt/ineedtp
detected binary path: /opt/ineedtp/venv/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
your processes number limit is 7771
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address ineedtp.sock fd 3
Python version: 3.4.3 (default, Nov 28 2017, 16:44:58) [GCC 4.8.4]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x19d2b60
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 145808 bytes (142 KB) for 1 cores
*** Operational MODE: single process ***
/opt/ineedtp/venv/lib/python3.4/site-packages/flask_sqlalchemy/__init__.py:794: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning.
'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and '
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x19d2b60 pid: 28321 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 28321)
spawned uWSGI worker 1 (pid: 28324, cores: 1)
[pid: 28324|app: 0|req: 1/1] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 15:15:33 2018] GET /ineedtpapi/getDetail?id=2 => generated 218 bytes in 42 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
ImmutableMultiDict([('file', <FileStorage: 'aaaaa.jpg' ('image/jpeg')>)])
[pid: 28324|app: 0|req: 2/2] 62.163.105.195 () {54 vars in 1112 bytes} [Sat Sep 1 15:15:38 2018] POST /ineedtpapi/upload => generated 192 bytes in 23 msecs (HTTP/1.1 400) 6 headers in 284 bytes (1 switches on core 0)
[pid: 28324|app: 0|req: 3/3] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 15:16:14 2018] GET /ineedtpapi/getDetail?id=2 => generated 218 bytes in 6 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 28324|app: 0|req: 4/4] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 15:16:15 2018] GET /ineedtpapi/getDetail?id=2 => generated 218 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
SIGINT/SIGQUIT received...killing workers...
worker 1 buried after 1 seconds
goodbye to uWSGI.
VACUUM: unix socket ineedtp.sock removed.
*** Starting uWSGI 2.0.17.1 (64bit) on [Sat Sep 1 15:16:56 2018] ***
compiled with version: 4.8.4 on 01 September 2018 11:40:32
os: Linux-3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014
nodename: karamba
machine: x86_64
clock source: unix
detected number of CPU cores: 1
current working directory: /opt/ineedtp
detected binary path: /opt/ineedtp/venv/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
your processes number limit is 7771
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address ineedtp.sock fd 3
Python version: 3.4.3 (default, Nov 28 2017, 16:44:58) [GCC 4.8.4]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x211ab60
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 145808 bytes (142 KB) for 1 cores
*** Operational MODE: single process ***
/opt/ineedtp/venv/lib/python3.4/site-packages/flask_sqlalchemy/__init__.py:794: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning.
'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and '
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x211ab60 pid: 28372 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 28372)
spawned uWSGI worker 1 (pid: 28375, cores: 1)
ImmutableMultiDict([('file', <FileStorage: 'aaaaa.jpg' ('image/jpeg')>)])
aaaaa.jpg
[pid: 28375|app: 0|req: 1/1] 62.163.105.195 () {54 vars in 1112 bytes} [Sat Sep 1 15:17:05 2018] POST /ineedtpapi/upload => generated 192 bytes in 36 msecs (HTTP/1.1 400) 6 headers in 284 bytes (1 switches on core 0)
[pid: 28375|app: 0|req: 2/2] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 15:17:08 2018] GET /ineedtpapi/getDetail?id=2 => generated 218 bytes in 43 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 28375|app: 0|req: 3/3] 62.163.105.195 () {44 vars in 727 bytes} [Sat Sep 1 15:17:50 2018] GET /ineedtpapi/getDetail?id=2 => generated 218 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
ImmutableMultiDict([('file', <FileStorage: 'aaaaa.jpg' ('image/jpeg')>)])
aaaaa.jpg
[pid: 28375|app: 0|req: 4/4] 62.163.105.195 () {48 vars in 970 bytes} [Sat Sep 1 15:17:56 2018] POST /ineedtpapi/upload => generated 192 bytes in 6 msecs (HTTP/1.1 400) 6 headers in 284 bytes (3 switches on core 0)
SIGINT/SIGQUIT received...killing workers...
worker 1 buried after 1 seconds
goodbye to uWSGI.
VACUUM: unix socket ineedtp.sock removed.
*** Starting uWSGI 2.0.17.1 (64bit) on [Sat Sep 1 15:18:32 2018] ***
compiled with version: 4.8.4 on 01 September 2018 11:40:32
os: Linux-3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014
nodename: karamba
machine: x86_64
clock source: unix
detected number of CPU cores: 1
current working directory: /opt/ineedtp
detected binary path: /opt/ineedtp/venv/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
your processes number limit is 7771
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address ineedtp.sock fd 3
Python version: 3.4.3 (default, Nov 28 2017, 16:44:58) [GCC 4.8.4]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x1e91b60
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 145808 bytes (142 KB) for 1 cores
*** Operational MODE: single process ***
/opt/ineedtp/venv/lib/python3.4/site-packages/flask_sqlalchemy/__init__.py:794: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning.
'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and '
WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x1e91b60 pid: 28408 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 28408)
spawned uWSGI worker 1 (pid: 28411, cores: 1)
[pid: 28411|app: 0|req: 1/1] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 15:18:36 2018] GET /ineedtpapi/getDetail?id=2 => generated 218 bytes in 49 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
ImmutableMultiDict([('file', <FileStorage: 'aaaaa.jpg' ('image/jpeg')>)])
aaaaa.jpg
[pid: 28411|app: 0|req: 2/2] 62.163.105.195 () {54 vars in 1112 bytes} [Sat Sep 1 15:18:43 2018] POST /ineedtpapi/upload => generated 192 bytes in 27 msecs (HTTP/1.1 400) 6 headers in 284 bytes (3 switches on core 0)
[pid: 28411|app: 0|req: 3/3] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 15:18:50 2018] GET /ineedtpapi/getDetail?id=2 => generated 218 bytes in 4 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
SIGINT/SIGQUIT received...killing workers...
worker 1 buried after 1 seconds
goodbye to uWSGI.
VACUUM: unix socket ineedtp.sock removed.
*** Starting uWSGI 2.0.17.1 (64bit) on [Sat Sep 1 15:19:25 2018] ***
compiled with version: 4.8.4 on 01 September 2018 11:40:32
os: Linux-3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014
nodename: karamba
machine: x86_64
clock source: unix
detected number of CPU cores: 1
current working directory: /opt/ineedtp
detected binary path: /opt/ineedtp/venv/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
your processes number limit is 7771
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address ineedtp.sock fd 3
Python version: 3.4.3 (default, Nov 28 2017, 16:44:58) [GCC 4.8.4]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x1e6db60
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 145808 bytes (142 KB) for 1 cores
*** Operational MODE: single process ***
/opt/ineedtp/venv/lib/python3.4/site-packages/flask_sqlalchemy/__init__.py:794: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning.
'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and '
WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x1e6db60 pid: 28427 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 28427)
spawned uWSGI worker 1 (pid: 28430, cores: 1)
[pid: 28430|app: 0|req: 1/1] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 15:19:30 2018] GET /ineedtpapi/getDetail?id=2 => generated 218 bytes in 35 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
ImmutableMultiDict([('file', <FileStorage: 'aaaaa.jpg' ('image/jpeg')>)])
aaaaa.jpg
/opt/ineedtp/app/static/img/aaaaa.jpg
[pid: 28430|app: 0|req: 2/2] 62.163.105.195 () {54 vars in 1112 bytes} [Sat Sep 1 15:19:36 2018] POST /ineedtpapi/upload => generated 192 bytes in 20 msecs (HTTP/1.1 400) 6 headers in 284 bytes (3 switches on core 0)
[pid: 28430|app: 0|req: 3/3] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 15:19:53 2018] GET /ineedtpapi/getDetail?id=2 => generated 218 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
ImmutableMultiDict([('file', <FileStorage: 'aaaaa.jpg' ('image/jpeg')>)])
aaaaa.jpg
/opt/ineedtp/app/static/img/aaaaa.jpg
[pid: 28430|app: 0|req: 4/4] 62.163.105.195 () {52 vars in 1025 bytes} [Sat Sep 1 15:20:01 2018] POST /ineedtpapi/upload => generated 192 bytes in 5 msecs (HTTP/1.1 400) 6 headers in 284 bytes (1 switches on core 0)
[pid: 28430|app: 0|req: 5/5] 62.163.105.195 () {48 vars in 844 bytes} [Sat Sep 1 15:20:09 2018] GET /ineedtpapi/getTPRequests => generated 157 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 28430|app: 0|req: 6/6] 62.163.105.195 () {48 vars in 844 bytes} [Sat Sep 1 15:20:24 2018] GET /ineedtpapi/getTPRequests => generated 157 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
[pid: 28430|app: 0|req: 7/7] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 15:20:26 2018] GET /ineedtpapi/getDetail?id=3 => generated 155 bytes in 3 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
ImmutableMultiDict([('file', <FileStorage: 'aaaaa.jpg' ('image/jpeg')>)])
aaaaa.jpg
/opt/ineedtp/app/static/img/aaaaa.jpg
[pid: 28430|app: 0|req: 8/8] 62.163.105.195 () {52 vars in 1025 bytes} [Sat Sep 1 15:20:33 2018] POST /ineedtpapi/upload => generated 192 bytes in 6 msecs (HTTP/1.1 400) 6 headers in 284 bytes (3 switches on core 0)
[pid: 28430|app: 0|req: 9/9] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 15:20:38 2018] GET /ineedtpapi/getDetail?id=3 => generated 155 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
ImmutableMultiDict([('file', <FileStorage: 'aaaaa.jpg' ('image/jpeg')>)])
aaaaa.jpg
/opt/ineedtp/app/static/img/aaaaa.jpg
[pid: 28430|app: 0|req: 10/10] 62.163.105.195 () {52 vars in 1025 bytes} [Sat Sep 1 15:20:45 2018] POST /ineedtpapi/upload => generated 192 bytes in 6 msecs (HTTP/1.1 400) 6 headers in 284 bytes (3 switches on core 0)
[pid: 28430|app: 0|req: 11/11] 62.163.105.195 () {48 vars in 844 bytes} [Sat Sep 1 15:21:16 2018] GET /ineedtpapi/getTPRequests => generated 157 bytes in 5 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
SIGINT/SIGQUIT received...killing workers...
worker 1 buried after 1 seconds
goodbye to uWSGI.
VACUUM: unix socket ineedtp.sock removed.
*** Starting uWSGI 2.0.17.1 (64bit) on [Sat Sep 1 15:21:19 2018] ***
compiled with version: 4.8.4 on 01 September 2018 11:40:32
os: Linux-3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014
nodename: karamba
machine: x86_64
clock source: unix
detected number of CPU cores: 1
current working directory: /opt/ineedtp
detected binary path: /opt/ineedtp/venv/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
your processes number limit is 7771
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to UNIX address ineedtp.sock fd 3
Python version: 3.4.3 (default, Nov 28 2017, 16:44:58) [GCC 4.8.4]
*** Python threads support is disabled. You can enable it with --enable-threads ***
Python main interpreter initialized at 0x1a97b60
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 145808 bytes (142 KB) for 1 cores
*** Operational MODE: single process ***
/opt/ineedtp/venv/lib/python3.4/site-packages/flask_sqlalchemy/__init__.py:794: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning.
'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and '
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x1a97b60 pid: 28481 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 28481)
spawned uWSGI worker 1 (pid: 28485, cores: 1)
[pid: 28485|app: 0|req: 1/1] 62.163.105.195 () {48 vars in 849 bytes} [Sat Sep 1 15:21:21 2018] GET /ineedtpapi/getDetail?id=3 => generated 155 bytes in 43 msecs (HTTP/1.1 200) 6 headers in 282 bytes (1 switches on core 0)
ImmutableMultiDict([('file', <FileStorage: 'aaaaa.jpg' ('image/jpeg')>)])