smart.log
526.6 KB
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
2022-01-20 13:13:37,384 : ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2022-01-20 13:13:39,402 : 开机自启动
2022-01-20 13:13:39,443 : 启动成功
2022-01-20 13:13:40,254 : * Running on all addresses.
WARNING: This is a development server. Do not use it in a production deployment.
2022-01-20 13:13:40,255 : * Running on http://192.168.1.86:5000/ (Press CTRL+C to quit)
2022-01-20 13:13:40,447 : --------------状态灯[3, 6]打开
2022-01-20 13:13:41,461 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FDEE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:13:43,990 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D4A9D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:13:54,594 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565370>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:13:54,719 : 控制界面
2022-01-20 13:13:54,736 : 192.168.1.86 - - [20/Jan/2022 13:13:54] "GET / HTTP/1.1" 200 -
2022-01-20 13:13:55,629 : 192.168.1.86 - - [20/Jan/2022 13:13:55] "GET /static/css/bootstrap.min.css HTTP/1.1" 200 -
2022-01-20 13:13:55,629 : 192.168.1.86 - - [20/Jan/2022 13:13:55] "GET /static/js/jquery.min.js HTTP/1.1" 200 -
2022-01-20 13:13:55,633 : 192.168.1.86 - - [20/Jan/2022 13:13:55] "GET /static/js/bootstrap.min.js HTTP/1.1" 200 -
2022-01-20 13:13:55,694 : 192.168.1.86 - - [20/Jan/2022 13:13:55] "POST /getauto HTTP/1.1" 200 -
2022-01-20 13:13:55,696 : 192.168.1.86 - - [20/Jan/2022 13:13:55] "POST /getstate HTTP/1.1" 200 -
2022-01-20 13:13:55,719 : 192.168.1.86 - - [20/Jan/2022 13:13:55] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
2022-01-20 13:13:57,125 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95C40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:13:58,683 : 192.168.1.86 - - [20/Jan/2022 13:13:58] "POST /getauto HTTP/1.1" 200 -
2022-01-20 13:13:59,651 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95970>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:14:01,698 : 192.168.1.86 - - [20/Jan/2022 13:14:01] "POST /getauto HTTP/1.1" 200 -
2022-01-20 13:14:02,178 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82280>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:14:02,694 : 测试界面
2022-01-20 13:14:02,713 : 192.168.1.86 - - [20/Jan/2022 13:14:02] "GET /induction_test HTTP/1.1" 200 -
2022-01-20 13:14:02,827 : 192.168.1.86 - - [20/Jan/2022 13:14:02] "POST /getstate HTTP/1.1" 200 -
2022-01-20 13:14:04,549 : 控制界面
2022-01-20 13:14:04,552 : 192.168.1.86 - - [20/Jan/2022 13:14:04] "GET /induction_control HTTP/1.1" 200 -
2022-01-20 13:14:04,643 : 192.168.1.86 - - [20/Jan/2022 13:14:04] "POST /getauto HTTP/1.1" 200 -
2022-01-20 13:14:04,647 : 192.168.1.86 - - [20/Jan/2022 13:14:04] "POST /getstate HTTP/1.1" 200 -
2022-01-20 13:14:04,693 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82BB0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:14:05,372 : 控制界面
2022-01-20 13:14:05,374 : 192.168.1.86 - - [20/Jan/2022 13:14:05] "GET /induction_control HTTP/1.1" 200 -
2022-01-20 13:14:05,459 : 192.168.1.86 - - [20/Jan/2022 13:14:05] "POST /getauto HTTP/1.1" 200 -
2022-01-20 13:14:05,468 : 192.168.1.86 - - [20/Jan/2022 13:14:05] "POST /getstate HTTP/1.1" 200 -
2022-01-20 13:14:05,676 : 测试界面
2022-01-20 13:14:05,683 : 192.168.1.86 - - [20/Jan/2022 13:14:05] "GET /induction_test HTTP/1.1" 200 -
2022-01-20 13:14:05,801 : 192.168.1.86 - - [20/Jan/2022 13:14:05] "POST /getstate HTTP/1.1" 200 -
2022-01-20 13:14:06,007 : 配置界面
2022-01-20 13:14:06,018 : 192.168.1.86 - - [20/Jan/2022 13:14:06] "GET /induction_config HTTP/1.1" 200 -
2022-01-20 13:14:06,113 : 192.168.1.86 - - [20/Jan/2022 13:14:06] "POST /getstate HTTP/1.1" 200 -
2022-01-20 13:14:07,227 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572310>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:14:07,475 : 测试界面
2022-01-20 13:14:07,482 : 192.168.1.86 - - [20/Jan/2022 13:14:07] "GET /induction_test HTTP/1.1" 200 -
2022-01-20 13:14:07,589 : 192.168.1.86 - - [20/Jan/2022 13:14:07] "POST /getstate HTTP/1.1" 200 -
2022-01-20 13:14:08,854 : 控制界面
2022-01-20 13:14:08,855 : 192.168.1.86 - - [20/Jan/2022 13:14:08] "GET /induction_control HTTP/1.1" 200 -
2022-01-20 13:14:08,940 : 192.168.1.86 - - [20/Jan/2022 13:14:08] "POST /getstate HTTP/1.1" 200 -
2022-01-20 13:14:08,943 : 192.168.1.86 - - [20/Jan/2022 13:14:08] "POST /getauto HTTP/1.1" 200 -
2022-01-20 13:14:09,754 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572A60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:14:10,758 : 控制界面
2022-01-20 13:14:10,760 : 192.168.1.86 - - [20/Jan/2022 13:14:10] "GET /induction_control HTTP/1.1" 200 -
2022-01-20 13:14:10,844 : 192.168.1.86 - - [20/Jan/2022 13:14:10] "POST /getauto HTTP/1.1" 200 -
2022-01-20 13:14:10,847 : 192.168.1.86 - - [20/Jan/2022 13:14:10] "POST /getstate HTTP/1.1" 200 -
2022-01-20 13:14:12,277 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82F70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:14:12,601 : 控制界面
2022-01-20 13:14:12,602 : 192.168.1.86 - - [20/Jan/2022 13:14:12] "GET /induction_control HTTP/1.1" 200 -
2022-01-20 13:14:12,698 : 192.168.1.86 - - [20/Jan/2022 13:14:12] "POST /getauto HTTP/1.1" 200 -
2022-01-20 13:14:12,702 : 192.168.1.86 - - [20/Jan/2022 13:14:12] "POST /getstate HTTP/1.1" 200 -
2022-01-20 13:14:12,965 : 测试界面
2022-01-20 13:14:12,971 : 192.168.1.86 - - [20/Jan/2022 13:14:12] "GET /induction_test HTTP/1.1" 200 -
2022-01-20 13:14:13,067 : 192.168.1.86 - - [20/Jan/2022 13:14:13] "POST /getstate HTTP/1.1" 200 -
2022-01-20 13:14:14,358 : 配置界面
2022-01-20 13:14:14,360 : 192.168.1.86 - - [20/Jan/2022 13:14:14] "GET /induction_config HTTP/1.1" 200 -
2022-01-20 13:14:14,448 : 192.168.1.86 - - [20/Jan/2022 13:14:14] "POST /getstate HTTP/1.1" 200 -
2022-01-20 13:14:14,802 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD400>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:14:15,625 : 测试界面
2022-01-20 13:14:15,632 : 192.168.1.86 - - [20/Jan/2022 13:14:15] "GET /induction_test HTTP/1.1" 200 -
2022-01-20 13:14:15,732 : 192.168.1.86 - - [20/Jan/2022 13:14:15] "POST /getstate HTTP/1.1" 200 -
2022-01-20 13:14:15,944 : 控制界面
2022-01-20 13:14:15,946 : 192.168.1.86 - - [20/Jan/2022 13:14:15] "GET /induction_control HTTP/1.1" 200 -
2022-01-20 13:14:16,029 : 192.168.1.86 - - [20/Jan/2022 13:14:16] "POST /getauto HTTP/1.1" 200 -
2022-01-20 13:14:16,031 : 192.168.1.86 - - [20/Jan/2022 13:14:16] "POST /getstate HTTP/1.1" 200 -
2022-01-20 13:14:17,308 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82A60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:14:19,012 : 192.168.1.86 - - [20/Jan/2022 13:14:19] "POST /getauto HTTP/1.1" 200 -
2022-01-20 13:14:19,831 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D829A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:14:22,018 : 192.168.1.86 - - [20/Jan/2022 13:14:22] "POST /getauto HTTP/1.1" 200 -
2022-01-20 13:14:22,359 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35728E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:14:24,445 : 测试界面
2022-01-20 13:14:24,451 : 192.168.1.86 - - [20/Jan/2022 13:14:24] "GET /induction_test HTTP/1.1" 200 -
2022-01-20 13:14:24,554 : 192.168.1.86 - - [20/Jan/2022 13:14:24] "POST /getstate HTTP/1.1" 200 -
2022-01-20 13:14:24,866 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95430>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:14:26,137 : 配置界面
2022-01-20 13:14:26,139 : 192.168.1.86 - - [20/Jan/2022 13:14:26] "GET /induction_config HTTP/1.1" 200 -
2022-01-20 13:14:26,230 : 192.168.1.86 - - [20/Jan/2022 13:14:26] "POST /getstate HTTP/1.1" 200 -
2022-01-20 13:14:26,662 : 测试界面
2022-01-20 13:14:26,668 : 192.168.1.86 - - [20/Jan/2022 13:14:26] "GET /induction_test HTTP/1.1" 200 -
2022-01-20 13:14:26,783 : 192.168.1.86 - - [20/Jan/2022 13:14:26] "POST /getstate HTTP/1.1" 200 -
2022-01-20 13:14:26,981 : 控制界面
2022-01-20 13:14:26,983 : 192.168.1.86 - - [20/Jan/2022 13:14:26] "GET /induction_control HTTP/1.1" 200 -
2022-01-20 13:14:27,068 : 192.168.1.86 - - [20/Jan/2022 13:14:27] "POST /getauto HTTP/1.1" 200 -
2022-01-20 13:14:27,071 : 192.168.1.86 - - [20/Jan/2022 13:14:27] "POST /getstate HTTP/1.1" 200 -
2022-01-20 13:14:27,385 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572760>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:14:27,438 : 测试界面
2022-01-20 13:14:27,445 : 192.168.1.86 - - [20/Jan/2022 13:14:27] "GET /induction_test HTTP/1.1" 200 -
2022-01-20 13:14:27,558 : 192.168.1.86 - - [20/Jan/2022 13:14:27] "POST /getstate HTTP/1.1" 200 -
2022-01-20 13:14:27,668 : 配置界面
2022-01-20 13:14:27,671 : 192.168.1.86 - - [20/Jan/2022 13:14:27] "GET /induction_config HTTP/1.1" 200 -
2022-01-20 13:14:27,766 : 192.168.1.86 - - [20/Jan/2022 13:14:27] "POST /getstate HTTP/1.1" 200 -
2022-01-20 13:14:29,909 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572610>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:14:32,428 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572F10>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:14:34,954 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95580>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:14:37,471 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D820D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:14:38,283 : 控制界面
2022-01-20 13:14:38,285 : 192.168.1.86 - - [20/Jan/2022 13:14:38] "GET /induction_control HTTP/1.1" 200 -
2022-01-20 13:14:38,376 : 192.168.1.86 - - [20/Jan/2022 13:14:38] "POST /getstate HTTP/1.1" 200 -
2022-01-20 13:14:38,380 : 192.168.1.86 - - [20/Jan/2022 13:14:38] "POST /getauto HTTP/1.1" 200 -
2022-01-20 13:14:39,992 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82AC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:14:41,356 : 192.168.1.86 - - [20/Jan/2022 13:14:41] "POST /getauto HTTP/1.1" 200 -
2022-01-20 13:14:42,343 : 测试界面
2022-01-20 13:14:42,351 : 192.168.1.86 - - [20/Jan/2022 13:14:42] "GET /induction_test HTTP/1.1" 200 -
2022-01-20 13:14:42,455 : 192.168.1.86 - - [20/Jan/2022 13:14:42] "POST /getstate HTTP/1.1" 200 -
2022-01-20 13:14:42,517 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5220>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:14:45,038 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D954C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:14:47,555 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95DC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:14:50,069 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572CA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:14:52,592 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3CE7F70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:14:55,113 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD2E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:14:57,636 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB56D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:15:00,154 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD2B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:15:02,674 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3CE7F70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:15:05,201 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35725B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:15:07,718 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95B20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:15:08,169 : 配置界面
2022-01-20 13:15:08,172 : 192.168.1.86 - - [20/Jan/2022 13:15:08] "GET /induction_config HTTP/1.1" 200 -
2022-01-20 13:15:08,277 : 192.168.1.86 - - [20/Jan/2022 13:15:08] "POST /getstate HTTP/1.1" 200 -
2022-01-20 13:15:10,241 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82670>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:15:12,763 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D824C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:15:15,267 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5970>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:15:17,778 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82E50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:15:20,299 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82670>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:15:22,826 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95E20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:15:25,346 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572850>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:15:27,869 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572E50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:15:30,398 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB53D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:15:32,925 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD250>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:15:35,441 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565C40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:15:37,963 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572220>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:15:40,485 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:15:43,011 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95100>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:15:45,536 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:15:48,055 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB51F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:15:50,573 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82FA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:15:53,104 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82730>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:15:55,631 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95B50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:15:58,145 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35721F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:16:00,673 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572E50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:16:03,185 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D41850>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:16:05,710 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5310>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:16:08,233 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FDE20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:16:10,757 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565CD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:16:13,281 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5E20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:16:15,803 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3CE7C70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:16:18,324 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572C40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:16:20,845 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35726A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:16:23,350 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95DC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:16:25,875 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82B20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:16:28,108 : 测试界面
2022-01-20 13:16:28,116 : 192.168.1.86 - - [20/Jan/2022 13:16:28] "GET /induction_test HTTP/1.1" 200 -
2022-01-20 13:16:28,227 : 192.168.1.86 - - [20/Jan/2022 13:16:28] "POST /getstate HTTP/1.1" 200 -
2022-01-20 13:16:28,392 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D4ABE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:16:28,631 : 控制界面
2022-01-20 13:16:28,633 : 192.168.1.86 - - [20/Jan/2022 13:16:28] "GET /induction_control HTTP/1.1" 200 -
2022-01-20 13:16:28,721 : 192.168.1.86 - - [20/Jan/2022 13:16:28] "POST /getauto HTTP/1.1" 200 -
2022-01-20 13:16:28,724 : 192.168.1.86 - - [20/Jan/2022 13:16:28] "POST /getstate HTTP/1.1" 200 -
2022-01-20 13:16:29,859 : 测试界面
2022-01-20 13:16:29,866 : 192.168.1.86 - - [20/Jan/2022 13:16:29] "GET /induction_test HTTP/1.1" 200 -
2022-01-20 13:16:29,970 : 192.168.1.86 - - [20/Jan/2022 13:16:29] "POST /getstate HTTP/1.1" 200 -
2022-01-20 13:16:30,919 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82B50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:16:33,441 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82190>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:16:35,963 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572070>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:16:38,488 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572220>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:16:41,014 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D41940>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:16:43,539 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB56A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:16:46,061 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD070>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:16:48,586 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D4ABB0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:16:51,102 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5B20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:16:53,627 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3CE7FA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:16:56,147 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35729D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:16:58,670 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572760>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:17:01,185 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565DF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:17:03,708 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:17:06,232 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82400>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:17:08,751 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D957F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:17:11,272 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572400>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:17:13,797 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3CE7C70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:17:16,325 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5400>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:17:18,847 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FDD90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:17:21,360 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D826A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:17:23,887 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D4A220>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:17:26,415 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5FD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:17:28,928 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB55E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:17:31,445 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35720A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:17:33,974 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572310>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:17:36,503 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95430>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:17:39,024 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D4A850>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:17:41,553 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DE35E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:17:44,070 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572D90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:17:46,588 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35721C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:17:49,108 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D41F40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:17:51,627 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:17:54,148 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD910>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:17:56,665 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D4A850>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:17:59,186 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DE3490>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:18:01,706 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5F70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:18:04,240 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5400>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:18:06,761 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572730>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:18:09,277 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572AF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:18:11,798 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D952E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:18:14,329 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D4A760>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:18:16,853 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DE3610>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:18:19,371 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572D90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:18:21,896 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572D00>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:18:24,412 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5C40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:18:26,931 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5640>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:18:29,441 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D820D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:18:31,957 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D4AA30>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:18:34,479 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DE33D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:18:36,999 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD220>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:18:39,521 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5220>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:18:42,039 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D41E80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:18:44,547 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572160>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:18:47,074 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572190>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:18:49,598 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DE3190>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:18:52,117 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DE3D90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:18:54,649 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572D90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:18:57,170 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35720D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:18:59,694 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5E20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:19:02,214 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5C70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:19:04,738 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82070>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:19:07,262 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DE3EB0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:19:09,783 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC95B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:19:12,295 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD160>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:19:14,814 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5610>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:19:17,331 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3CE7C70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:19:19,856 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572AC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:19:22,381 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572DC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:19:24,903 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DE3490>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:19:27,423 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9370>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:19:29,949 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572EB0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:19:32,473 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D41F70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:19:34,994 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DE33A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:19:37,509 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82070>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:19:40,025 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82400>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:19:42,544 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D4A190>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:19:45,085 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D4ABB0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:19:47,602 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82790>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:19:50,125 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:19:52,648 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572700>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:19:55,172 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572D60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:19:57,696 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82640>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:20:00,215 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D824F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:20:02,739 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565910>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:20:05,264 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572070>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:20:07,790 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D4AE80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:20:10,315 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FDEE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:20:12,844 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5C10>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:20:15,362 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565FA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:20:17,885 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572AC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:20:20,398 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572910>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:20:22,916 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82B20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:20:25,442 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82EE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:20:27,961 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5D30>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:20:30,481 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5580>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:20:33,003 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82CD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:20:35,525 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82430>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:20:38,048 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572E50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:20:40,569 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35723A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:20:43,095 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565CD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:20:45,617 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FDFA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:20:48,131 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD160>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:20:50,652 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D4A190>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:20:53,173 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35727F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:20:55,693 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572430>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:20:58,214 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82CA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:21:00,730 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82820>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:21:03,251 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5DC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:21:05,774 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D956A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:21:08,287 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D820D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:21:10,792 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82AF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:21:13,313 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572DF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:21:15,839 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35723A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:21:18,366 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D4A3D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:21:20,891 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD5E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:21:23,414 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D953A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:21:25,944 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D4A3D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:21:28,471 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572E80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:21:30,996 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35728E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:21:33,512 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D829D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:21:36,038 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82F10>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:21:38,552 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5910>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:21:41,076 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D959D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:21:43,596 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82A90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:21:46,125 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82280>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:21:48,645 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572340>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:21:51,158 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572DC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:21:53,685 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D4A370>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:21:56,211 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FDEB0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:21:58,728 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95B20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:22:01,258 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D4A880>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:22:03,787 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572C40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:22:06,313 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35724F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:22:08,832 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82E20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:22:11,361 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82C10>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:22:13,889 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95190>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:22:16,399 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9130>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:22:18,915 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82D90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:22:21,428 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D827C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:22:23,944 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572850>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:22:26,466 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572700>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:22:28,976 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D4A880>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:22:31,491 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9460>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:22:34,008 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284B62FFB80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:22:36,537 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572220>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:22:39,064 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572490>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:22:41,579 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D823D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:22:44,102 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82FD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:22:46,626 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5DC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:22:49,157 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95430>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:22:51,682 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9AC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:22:54,197 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3CE75B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:22:56,720 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82430>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:22:59,243 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35724F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:23:01,759 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572760>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:23:04,269 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D4AEE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:23:06,789 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565EB0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:23:09,317 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC97C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:23:11,839 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572970>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:23:14,360 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572FD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:23:16,879 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82AF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:23:19,402 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82EB0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:23:21,928 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95C40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:23:24,453 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95CA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:23:26,976 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5B20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:23:29,501 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3CE7FD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:23:32,023 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82580>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:23:34,542 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82370>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:23:37,071 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572AF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:23:39,580 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572040>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:23:42,107 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D4ACA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:23:44,631 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB53A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:23:47,147 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35728E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:23:49,668 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572FD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:23:52,192 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82CD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:23:54,714 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82B50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:23:57,234 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95100>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:23:59,758 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5610>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:24:02,287 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD1F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:24:04,808 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3CE7FA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:24:07,328 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82AC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:24:09,843 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82F10>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:24:12,365 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572880>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:24:14,875 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572DF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:24:17,401 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD160>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:24:19,925 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC99A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:24:22,441 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572D60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:24:24,962 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572820>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:24:27,484 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:24:30,008 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82700>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:24:32,527 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95AC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:24:35,057 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9160>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:24:37,575 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9100>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:24:40,104 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3CE7E80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:24:42,628 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82700>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:24:45,147 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572C40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:24:47,677 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572640>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:24:50,204 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D41F70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:24:52,732 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:24:55,253 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589310>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:24:57,779 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35727C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:25:00,302 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572B80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:25:02,828 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D821C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:25:05,363 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82430>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:25:07,882 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3CE7CD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:25:10,404 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589100>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:25:12,924 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95370>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:25:15,446 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D826A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:25:17,966 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D822E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:25:20,493 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:25:23,014 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572940>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:25:25,540 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565BE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:25:28,061 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9F70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:25:30,589 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589AF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:25:33,118 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565C40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:25:35,637 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35727F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:25:38,157 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572A30>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:25:40,675 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82580>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:25:43,186 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D829A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:25:45,706 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95CD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:25:48,226 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35897F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:25:50,739 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D821F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:25:53,263 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D823A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:25:55,782 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35725E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:25:58,301 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572B20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:26:00,820 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565BE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:26:03,343 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9E20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:26:05,865 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589A60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:26:08,381 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3751A00>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:26:10,909 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572370>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:26:13,425 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572C40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:26:15,948 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82310>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:26:18,466 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82F70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:26:20,986 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95C40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:26:23,510 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35897C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:26:26,017 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82700>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:26:28,539 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82C70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:26:31,054 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572760>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:26:33,574 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572640>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:26:36,091 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565BE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:26:38,622 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589280>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:26:41,139 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8310>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:26:43,666 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572AC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:26:46,194 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D820A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:26:48,709 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82490>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:26:51,237 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3CE75B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:26:53,758 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35893A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:26:56,284 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9850>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:26:58,806 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC98E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:27:01,327 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:27:03,857 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82310>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:27:06,377 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572910>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:27:08,907 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572B20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:27:11,437 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589970>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:27:13,966 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3751A00>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:27:16,486 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9580>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:27:19,007 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589CA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:27:21,528 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35724F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:27:24,058 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572E20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:27:26,579 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82580>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:27:29,101 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82940>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:27:31,617 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3CE7F10>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:27:34,133 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD400>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:27:36,663 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D829D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:27:39,197 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D827C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:27:41,718 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572880>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:27:44,244 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572FD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:27:46,771 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589C40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:27:49,302 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9760>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:27:51,827 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565DF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:27:54,358 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589A90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:27:56,872 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572460>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:27:59,401 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572C70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:28:01,918 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82F70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:28:04,443 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82CA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:28:06,963 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565C40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:28:09,483 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5100>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:28:12,000 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82370>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:28:14,524 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572BB0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:28:17,047 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35729D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:28:19,564 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C375F850>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:28:22,084 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589D60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:28:24,609 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5460>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:28:27,126 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95310>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:28:29,647 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589040>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:28:32,175 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35722B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:28:34,693 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572D90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:28:37,223 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C364B070>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:28:39,751 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D827F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:28:42,276 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565EE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:28:44,806 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D954F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:28:47,333 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D829D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:28:49,860 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572040>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:28:52,377 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35721F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:28:54,901 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589760>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:28:57,427 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589040>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:28:59,948 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D955B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:29:02,472 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC81C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:29:04,984 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589910>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:29:07,508 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589670>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:29:10,033 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35726A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:29:12,553 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284B62FFB80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:29:15,079 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82CD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:29:17,608 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8250>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:29:20,132 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8AF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:29:22,661 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82370>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:29:25,170 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572EB0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:29:27,696 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572550>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:29:30,219 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35897C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:29:32,738 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589B20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:29:35,262 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95400>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:29:37,781 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8100>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:29:40,293 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589F10>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:29:42,814 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35891F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:29:45,334 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35721F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:29:47,857 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572EB0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:29:50,388 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82640>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:29:52,899 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565880>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:29:55,424 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8A30>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:29:57,945 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82A60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:30:00,470 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35720A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:30:02,982 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572760>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:30:05,506 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589DF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:30:08,026 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589F10>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:30:10,535 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95430>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:30:13,054 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC80A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:30:15,582 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572940>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:30:18,101 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95130>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:30:20,627 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95D90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:30:23,146 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:30:25,665 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565880>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:30:28,185 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D41F70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:30:30,703 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82DC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:30:33,232 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5A00>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:30:35,755 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5B20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:30:38,273 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D954C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:30:40,784 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572070>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:30:43,304 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572C70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:30:45,822 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D829D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:30:48,340 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3CE7490>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:30:50,861 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:30:53,391 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35726A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:30:55,908 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D957F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:30:58,427 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5400>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:31:00,955 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5610>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:31:03,474 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D41940>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:31:05,994 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD430>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:31:08,512 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB51F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:31:11,031 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5580>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:31:13,554 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95CA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:31:16,077 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35728E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:31:18,597 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35727C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:31:21,121 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD880>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:31:23,645 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589D30>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:31:26,162 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35721F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:31:28,676 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572C10>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:31:31,197 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D950A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:31:33,719 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5730>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:31:36,238 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5970>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:31:38,755 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589A00>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:31:41,269 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589FA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:31:43,789 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB55B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:31:46,314 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5070>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:31:48,831 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95850>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:31:51,351 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572AF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:31:53,879 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35723D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:31:56,405 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35891C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:31:58,927 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9850>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:32:01,453 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572D60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:32:03,975 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572AF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:32:06,496 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D958B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:32:09,019 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5EB0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:32:11,542 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5B20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:32:14,062 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9E50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:32:16,582 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9D90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:32:19,111 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5A00>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:32:21,631 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95C70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:32:24,160 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95130>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:32:26,682 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572FD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:32:29,205 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D826D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:32:31,726 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC93A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:32:34,247 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8850>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:32:36,757 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35721F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:32:39,263 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572220>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:32:41,793 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95B50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:32:44,324 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB56A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:32:46,855 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5190>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:32:49,367 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8280>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:32:51,887 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC1370>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:32:54,412 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB55B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:32:56,932 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D952E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:32:59,466 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35725E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:33:01,993 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572DC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:33:04,511 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD1F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:33:07,038 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8610>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:33:09,567 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC1160>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:33:12,085 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572340>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:33:14,605 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572C70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:33:17,128 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D956D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:33:19,649 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565E20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:33:22,176 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5850>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:33:24,700 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8CA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:33:27,222 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC12E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:33:29,747 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:33:32,269 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95A30>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:33:34,779 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572820>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:33:37,290 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572280>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:33:39,823 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD460>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:33:42,346 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8040>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:33:44,875 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC1250>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:33:47,393 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D952B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:33:49,916 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC81C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:33:52,437 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB54C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:33:54,958 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9640>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:33:57,478 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9E20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:33:59,992 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589A00>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:34:02,512 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589B50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:34:05,044 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9400>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:34:07,563 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB58B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:34:10,083 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5970>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:34:12,603 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8F10>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:34:15,122 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95B50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:34:17,645 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589BE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:34:20,161 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD2E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:34:22,677 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95250>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:34:25,187 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8B80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:34:27,703 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB53A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:34:30,231 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5550>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:34:32,747 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9970>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:34:35,271 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD880>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:34:37,792 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3CE7BE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:34:40,311 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9550>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:34:42,839 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5EE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:34:45,354 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB58E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:34:47,874 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8D00>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:34:50,397 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95280>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:34:52,917 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35892E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:34:55,429 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35720D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:34:57,949 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95B50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:35:00,472 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8D00>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:35:02,996 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB54C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:35:05,517 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5700>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:35:08,035 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9EE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:35:10,564 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572880>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:35:13,087 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572D90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:35:15,611 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC98B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:35:18,138 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB50D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:35:20,661 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5640>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:35:23,176 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8EB0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:35:25,688 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:35:28,201 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3CE75B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:35:30,721 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82130>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:35:33,237 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95340>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:35:35,748 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8C70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:35:38,268 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5310>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:35:40,790 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5490>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:35:43,316 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9100>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:35:45,838 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82C10>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:35:48,360 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82970>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:35:50,886 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9790>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:35:53,405 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5B20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:35:55,934 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5340>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:35:58,451 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8220>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:36:00,980 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95D00>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:36:03,505 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82490>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:36:06,028 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC1190>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:36:08,554 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D958B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:36:11,070 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8AC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:36:13,586 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5070>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:36:16,104 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5490>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:36:18,632 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9400>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:36:21,152 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC1280>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:36:23,678 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC1BE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:36:26,194 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9CA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:36:28,712 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5BE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:36:31,235 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5670>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:36:33,761 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D41E80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:36:36,278 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D958B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:36:38,798 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D4A5B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:36:41,322 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC13A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:36:43,837 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95130>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:36:46,354 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8FA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:36:48,870 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5F70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:36:51,395 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5490>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:36:53,919 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC93D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:36:56,445 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9430>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:36:58,969 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC1B50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:37:01,495 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD220>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:37:04,018 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5100>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:37:06,545 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5460>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:37:09,053 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D41E80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:37:11,575 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95490>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:37:14,098 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D4A190>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:37:16,628 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC12E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:37:19,146 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5760>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:37:21,670 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB53A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:37:24,188 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82B50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:37:26,707 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82E20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:37:29,227 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572A30>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:37:31,751 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572460>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:37:34,277 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3CE7490>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:37:36,807 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572C10>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:37:39,329 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D827C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:37:41,844 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82CA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:37:44,362 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5FA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:37:46,889 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8DC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:37:49,410 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D4A220>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:37:51,932 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD2E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:37:54,454 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:37:56,976 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5B80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:37:59,499 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82BE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:38:02,018 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82760>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:38:04,534 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572880>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:38:07,056 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD550>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:38:09,561 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95A60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:38:12,080 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572640>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:38:14,606 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82B20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:38:17,123 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82DF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:38:19,651 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5F40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:38:22,183 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8E80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:38:24,705 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95790>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:38:27,210 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35899A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:38:29,724 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5700>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:38:32,248 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5310>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:38:34,766 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82430>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:38:37,280 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D824F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:38:39,802 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572FD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:38:42,332 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35895B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:38:44,856 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589E50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:38:47,379 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565E20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:38:49,904 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82940>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:38:52,427 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5DF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:38:54,944 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB51F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:38:57,471 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8DF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:38:59,996 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589460>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:39:02,512 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9640>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:39:05,030 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D4A5E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:39:07,539 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5F70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:39:10,062 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D826D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:39:12,582 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82250>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:39:15,107 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572C40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:39:17,635 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9CD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:39:20,159 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9460>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:39:22,679 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565FD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:39:25,196 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82A60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:39:27,718 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5490>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:39:30,242 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5F40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:39:32,760 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8EE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:39:35,286 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC92B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:39:37,811 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC1C70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:39:40,332 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8D30>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:39:42,848 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5EB0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:39:45,371 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82430>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:39:47,897 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82940>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:39:50,423 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572730>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:39:52,948 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC18E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:39:55,470 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3400>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:39:57,992 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82A90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:40:00,513 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82D00>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:40:03,037 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5E20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:40:05,548 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5250>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:40:08,073 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D952B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:40:10,591 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC17F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:40:13,110 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC31F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:40:15,621 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8580>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:40:18,143 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5A60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:40:20,667 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D4A5E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:40:23,188 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82F10>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:40:25,701 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565CD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:40:28,224 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC1AF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:40:30,757 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3370>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:40:33,278 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82310>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:40:35,787 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82CD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:40:38,309 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5EE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:40:40,833 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5D00>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:40:43,358 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95280>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:40:45,881 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC1850>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:40:48,402 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC32E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:40:50,922 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB55E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:40:53,442 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D820D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:40:55,966 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D820A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:40:58,489 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC1EE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:41:00,997 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9D60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:41:03,528 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9550>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:41:06,052 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35895E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:41:08,578 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9A60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:41:11,097 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC1AF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:41:13,621 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D824F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:41:16,145 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82AF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:41:18,664 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB58E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:41:21,195 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589700>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:41:23,727 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35890A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:41:26,249 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB55B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:41:28,762 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82FD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:41:31,293 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D821C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:41:33,809 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC1D60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:41:36,329 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC92B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:41:38,842 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9CA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:41:41,356 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D956D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:41:43,884 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9850>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:41:46,408 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565C40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:41:48,929 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D826A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:41:51,452 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5FA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:41:53,977 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB51C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:41:56,502 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95EE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:41:59,024 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8C70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:42:01,549 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5B50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:42:04,074 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82DC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:42:06,590 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D820A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:42:09,104 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC1700>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:42:11,625 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9460>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:42:14,153 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8F70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:42:16,674 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FDF10>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:42:19,201 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C375F850>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:42:21,732 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565C40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:42:24,250 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82280>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:42:26,780 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5EE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:42:29,310 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5D90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:42:31,825 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD400>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:42:34,358 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572C40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:42:36,885 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5CD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:42:39,407 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5F70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:42:41,916 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D825E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:42:44,436 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565FD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:42:46,957 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9AC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:42:49,479 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572BB0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:42:51,991 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35721F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:42:54,512 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC17F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:42:57,035 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565FA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:42:59,558 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D825E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:43:02,080 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5F40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:43:04,607 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5370>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:43:07,128 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572CA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:43:09,648 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3340>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:43:12,168 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5100>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:43:14,697 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5E20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:43:17,217 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82D90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:43:19,740 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565910>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:43:22,262 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC1850>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:43:24,788 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3250>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:43:27,301 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3BE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:43:29,825 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC1850>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:43:32,351 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82940>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:43:34,866 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82B80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:43:37,386 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5730>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:43:39,904 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5280>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:43:42,431 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572B50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:43:44,953 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3370>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:43:47,477 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5B50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:43:50,009 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5190>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:43:52,532 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82340>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:43:55,049 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565FA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:43:57,578 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC1850>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:44:00,100 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9970>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:44:02,624 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3B50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:44:05,146 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC17F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:44:07,669 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82610>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:44:10,192 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82730>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:44:12,716 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5AF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:44:15,242 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589B80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:44:17,762 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35728B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:44:20,280 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3460>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:44:22,800 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82640>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:44:25,318 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC19D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:44:27,843 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572B80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:44:30,373 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35726D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:44:32,895 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD100>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:44:35,416 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8250>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:44:37,932 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95850>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:44:40,452 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD160>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:44:42,973 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572EB0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:44:45,498 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572DC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:44:48,017 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565E80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:44:50,537 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D821C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:44:53,055 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D957F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:44:55,574 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5160>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:44:58,092 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82940>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:45:00,617 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:45:03,142 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35728E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:45:05,649 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572040>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:45:08,176 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD490>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:45:10,699 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5850>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:45:13,225 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5C10>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:45:15,752 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FDFA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:45:18,273 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572040>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:45:20,795 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC19A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:45:23,318 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565E20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:45:25,837 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82700>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:45:28,363 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5B80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:45:30,884 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589A30>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:45:33,408 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82AC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:45:35,941 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565C40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:45:38,458 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35725B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:45:40,977 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572DC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:45:43,506 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD850>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:45:46,013 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589CD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:45:48,530 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589E50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:45:51,047 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3CE7CD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:45:53,567 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572730>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:45:56,074 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC19D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:45:58,604 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82220>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:46:01,124 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82B50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:46:03,647 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589CD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:46:06,153 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC95E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:46:08,677 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82160>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:46:11,185 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565C40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:46:13,708 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC1CA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:46:16,228 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572DC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:46:18,745 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD040>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:46:21,267 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9970>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:46:23,786 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9580>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:46:26,308 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572970>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:46:28,834 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572160>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:46:31,353 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC17F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:46:33,880 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82A90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:46:36,405 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:46:38,930 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9CD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:46:41,457 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3C70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:46:43,977 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82A00>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:46:46,495 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D820A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:46:49,011 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC1670>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:46:51,539 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572DC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:46:54,061 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3CE7490>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:46:56,578 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC38E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:46:59,103 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DCF400>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:47:01,624 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572610>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:47:04,146 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35728B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:47:06,668 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565C40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:47:09,194 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D827F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:47:11,711 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5220>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:47:14,234 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC37F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:47:16,752 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DCF1F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:47:19,271 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82730>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:47:21,785 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82280>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:47:24,313 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC1E50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:47:26,830 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572E20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:47:29,336 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3CE75B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:47:31,847 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3AF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:47:34,367 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DCF370>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:47:36,889 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35726D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:47:39,417 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572220>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:47:41,939 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565FA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:47:44,461 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82340>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:47:46,966 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5370>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:47:49,485 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3850>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:47:52,009 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DCF2E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:47:54,534 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC1BE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:47:57,047 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572D60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:47:59,572 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:48:02,082 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9970>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:48:04,607 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC93A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:48:07,129 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589790>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:48:09,645 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5190>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:48:12,170 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9B20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:48:14,696 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9400>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:48:17,214 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3AF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:48:19,740 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572910>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:48:22,265 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC1E50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:48:24,792 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565DF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:48:27,309 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5F40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:48:29,824 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35725E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:48:32,339 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:48:34,860 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3AF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:48:37,382 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9100>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:48:39,903 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589310>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:48:42,432 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB54C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:48:44,950 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82730>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:48:47,475 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9340>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:48:49,993 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC93D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:48:52,513 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3700>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:48:55,024 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572370>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:48:57,555 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35725E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:49:00,066 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3565CD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:49:02,582 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82220>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:49:05,113 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35725B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:49:07,631 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572250>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:49:10,139 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3BB0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:49:12,661 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9640>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:49:15,181 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589E50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:49:17,706 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82760>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:49:20,226 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD040>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:49:22,744 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589550>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:49:25,269 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC99A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:49:27,788 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3700>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:49:30,308 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572D60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:49:32,828 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35728E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:49:35,351 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD5E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:49:37,867 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D958B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:49:40,393 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572730>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:49:42,919 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35720A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:49:45,436 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3A90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:49:47,954 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC90D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:49:50,479 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35892B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:49:53,005 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95DC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:49:55,526 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8F70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:49:58,044 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589460>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:50:00,570 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9700>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:50:03,098 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3E50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:50:05,615 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:50:08,136 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35722E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:50:10,655 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FDF40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:50:13,179 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DCF340>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:50:15,709 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572E20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:50:18,235 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3CE7C70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:50:20,758 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3AF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:50:23,274 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9B50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:50:25,796 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589F70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:50:28,315 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DCF250>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:50:30,838 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DCFBE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:50:33,363 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9610>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:50:35,879 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC93D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:50:38,398 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3670>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:50:40,919 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572D60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:50:43,440 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572970>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:50:45,959 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8DC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:50:48,475 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DCF370>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:50:50,998 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572670>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:50:53,526 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3751A00>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:50:56,042 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:50:58,561 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9910>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:51:01,072 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589E50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:51:03,594 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95B80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:51:06,103 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DCFB50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:51:08,620 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9820>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:51:11,145 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9670>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:51:13,665 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3B50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:51:16,182 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35721C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:51:18,698 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572E20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:51:21,213 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8E80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:51:23,732 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DCF460>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:51:26,242 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35726D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:51:28,766 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3EB0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:51:31,283 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9430>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:51:33,800 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC95B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:51:36,318 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95280>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:51:38,839 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35FD520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:51:41,359 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82B50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:51:43,884 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95C10>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:51:46,407 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9B20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:51:48,929 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9DF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:51:51,447 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3E50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:51:53,971 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572160>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:51:56,494 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82E20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:51:59,016 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82F40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:52:01,528 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35728E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:52:04,040 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3F70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:52:06,564 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9430>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:52:09,081 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8D60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:52:11,606 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D950D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:52:14,129 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4D82E20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:52:16,661 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC1D60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:52:19,184 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D954F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:52:21,706 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8D60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:52:24,223 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:52:26,743 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3F10>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:52:29,273 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C35721C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:52:31,799 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC1700>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:52:34,326 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5AC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:52:36,843 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3CE7BE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:52:39,369 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3D00>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:52:41,896 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9370>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:52:44,416 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8AF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:52:46,942 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D952E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:52:49,474 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5D30>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:52:51,999 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5730>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:52:54,524 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D955E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:52:57,043 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9250>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:52:59,559 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9AC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:53:02,081 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3AF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:53:04,605 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572700>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:53:07,130 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DB5D30>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:53:09,651 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589F70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:53:12,180 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3572610>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:53:14,710 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3DC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:53:17,233 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC9CA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:53:19,756 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8970>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:53:22,279 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95DC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:53:24,805 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589E80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:53:27,333 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3589700>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:53:29,842 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C3D95EE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:53:32,367 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC8220>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:53:34,889 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC95E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 13:53:37,413 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x00000284C4DC3D60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:10:44,723 : ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2022-01-20 15:10:46,741 : 开机自启动
2022-01-20 15:10:50,820 : 启动成功
2022-01-20 15:10:50,997 : * Running on all addresses.
WARNING: This is a development server. Do not use it in a production deployment.
2022-01-20 15:10:50,999 : * Running on http://192.168.1.86:5000/ (Press CTRL+C to quit)
2022-01-20 15:10:51,833 : --------------状态灯[3, 6]打开
2022-01-20 15:10:52,826 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10DF10>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:10:55,339 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87AB20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:10:57,864 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF88E310>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:11:00,387 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF88EAC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:11:02,903 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF89A2B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:11:05,429 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF88E310>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:11:07,954 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87AAC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:11:10,477 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:11:13,007 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF89A0A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:11:15,529 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF89AA60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:11:18,053 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A1250>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:11:20,571 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF89AFD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:11:23,087 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF89A580>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:11:25,610 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D130>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:11:28,129 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87A880>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:11:30,651 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87AFA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:11:33,167 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF88E760>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:11:35,686 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A1A00>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:11:38,216 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF1F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:11:40,737 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF88E490>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:11:43,260 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87A8B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:11:45,784 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D430>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:11:48,304 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A1C40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:11:50,832 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A1700>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:11:53,358 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF89A6D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:11:55,882 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF0D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:11:58,413 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D1C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:12:00,941 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF075430>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:12:03,463 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87A8B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:12:05,989 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF88E130>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:12:08,507 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF220>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:12:11,036 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AFA00>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:12:13,556 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A11F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:12:16,067 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87AAF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:12:18,590 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D1F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:12:21,117 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AFAC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:12:23,643 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A1280>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:12:26,165 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A1A60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:12:28,685 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF88E0A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:12:31,206 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF88E730>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:12:33,728 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A1700>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:12:36,242 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF3A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:12:38,767 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D0A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:12:41,295 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF075430>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:12:43,818 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87A7F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:12:46,342 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF88E220>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:12:48,856 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8921F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:12:51,375 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87ABE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:12:53,896 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10DF10>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:12:56,417 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF5B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:12:58,938 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF310>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:13:01,466 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A1D90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:13:03,992 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892070>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:13:06,520 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8929D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:13:09,043 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A1AF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:13:11,564 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF340>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:13:14,089 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D160>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:13:16,612 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF075880>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:13:19,139 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87AF10>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:13:21,664 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892A60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:13:24,197 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B61C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:13:26,718 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87AAF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:13:29,241 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D430>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:13:31,757 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF850>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:13:34,281 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF430>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:13:36,806 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A1BE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:13:39,332 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892C10>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:13:41,852 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8929D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:13:44,366 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A14F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:13:46,889 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:13:49,418 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D460>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:13:51,944 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF075F70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:13:54,463 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87AF70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:13:56,986 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892D60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:13:59,508 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B61F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:14:02,036 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87AEE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:14:04,557 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D580>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:14:07,076 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AFC40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:14:09,605 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AFD90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:14:12,128 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A15E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:14:14,656 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892D90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:14:17,173 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8929D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:14:19,688 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A18B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:14:22,207 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF4F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:14:24,733 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AFA60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:14:27,250 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D220>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:14:29,773 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87A940>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:14:32,295 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF88E610>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:14:34,818 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B6970>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:14:37,343 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87A730>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:14:39,864 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D4C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:14:42,390 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF940>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:14:44,913 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A19A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:14:47,428 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A18B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:14:49,949 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B6700>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:14:52,469 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE160>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:14:54,989 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A1BB0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:14:57,506 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF670>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:15:00,024 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D2B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:15:02,545 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF075520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:15:05,072 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87ABB0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:15:07,599 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B6FD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:15:10,123 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B69D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:15:12,642 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87A7F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:15:15,161 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D8B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:15:17,685 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF340>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:15:20,200 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A14C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:15:22,719 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A1610>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:15:25,237 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B65B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:15:27,751 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE190>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:15:30,256 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A16A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:15:32,785 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF970>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:15:35,300 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D430>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:15:37,821 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF075D00>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:15:40,340 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87ABE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:15:42,864 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B6D30>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:15:45,385 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B6940>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:15:47,908 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D4F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:15:50,420 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF9A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:15:52,937 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B6D90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:15:55,460 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8926A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:15:57,982 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8924C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:16:00,511 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892130>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:16:03,035 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87AA00>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:16:05,543 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8924C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:16:08,062 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B6160>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:16:10,583 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF040>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:16:13,108 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AFA60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:16:15,632 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D2E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:16:18,155 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87A6D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:16:20,680 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF88E850>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:16:23,205 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10DE20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:16:25,735 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF6A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:16:28,260 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B6B50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:16:30,790 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B6F70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:16:33,314 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8920A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:16:35,834 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF88E520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:16:38,358 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF88EA60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:16:40,888 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892280>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:16:43,417 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B6310>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:16:45,933 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B64C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:16:48,462 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AFA60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:16:50,986 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D280>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:16:53,506 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87ADF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:16:56,036 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A18B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:16:58,567 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D280>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:17:01,094 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AFC40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:17:03,615 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B6FD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:17:06,141 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892DF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:17:08,661 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892AC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:17:11,184 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A1E80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:17:13,715 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE100>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:17:16,233 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8921F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:17:18,760 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892700>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:17:21,294 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B6850>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:17:23,817 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF160>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:17:26,347 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10DF10>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:17:28,869 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87ADF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:17:31,388 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE940>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:17:33,903 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D0A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:17:36,424 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF610>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:17:38,950 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B6370>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:17:41,465 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892D30>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:17:43,989 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8922E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:17:46,512 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE6D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:17:49,037 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8C7130>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:17:51,563 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892130>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:17:54,088 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B6100>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:17:56,614 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B6D60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:17:59,137 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF670>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:18:01,653 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D070>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:18:04,170 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BEFA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:18:06,696 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE910>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:18:09,213 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87AF40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:18:11,735 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF400>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:18:14,258 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B6E80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:18:16,769 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892E50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:18:19,295 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892E80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:18:21,819 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE640>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:18:24,339 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8C7160>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:18:26,860 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8922E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:18:29,381 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B64C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:18:31,904 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B6D90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:18:34,423 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF850>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:18:36,951 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D4F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:18:39,466 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BECA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:18:41,992 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE8E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:18:44,518 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D2B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:18:47,037 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AFF40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:18:49,564 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B6E20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:18:52,080 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B6280>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:18:54,604 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892130>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:18:57,126 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A1E80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:18:59,649 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8C78E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:19:02,166 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892E80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:19:04,687 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B61F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:19:07,211 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF6A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:19:09,737 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF6D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:19:12,260 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D2B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:19:14,781 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8C7670>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:19:17,300 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8D20D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:19:19,809 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF6A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:19:22,326 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B6370>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:19:24,851 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8C7880>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:19:27,376 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BECA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:19:29,903 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE1F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:19:32,429 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D8B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:19:34,949 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A1D30>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:19:37,470 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B6F40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:19:39,994 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF340>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:19:42,518 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE190>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:19:45,037 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE7F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:19:47,569 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8C75B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:19:50,074 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8C7E50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:19:52,595 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A1D00>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:19:55,120 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8C72E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:19:57,640 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BEE80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:20:00,167 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE0A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:20:02,683 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF190>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:20:05,209 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B6610>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:20:07,728 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B6220>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:20:10,258 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A1A60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:20:12,779 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF160>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:20:15,299 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF4F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:20:17,821 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE190>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:20:20,350 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BEE80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:20:22,877 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8C7760>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:20:25,401 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A17C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:20:27,927 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF88EA60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:20:30,439 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8C7250>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:20:32,960 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BEDC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:20:35,484 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BEBE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:20:38,005 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF430>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:20:40,525 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B64F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:20:43,053 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF88EA90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:20:45,576 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF88ED30>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:20:48,095 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF400>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:20:50,602 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10DDC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:20:53,132 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE100>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:20:55,651 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE430>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:20:58,168 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8C76A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:21:00,693 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF88EA00>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:21:03,216 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87A880>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:21:05,737 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8C7250>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:21:08,257 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BEC40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:21:10,781 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BEAC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:21:13,309 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF910>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:21:15,831 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF310>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:21:18,353 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87A670>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:21:20,877 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892D30>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:21:23,395 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF820>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:21:25,914 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF460>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:21:28,437 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE9D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:21:30,952 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:21:33,473 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8C7550>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:21:35,999 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF075520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:21:38,520 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8925E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:21:41,044 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8C7070>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:21:43,565 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE5E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:21:46,091 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BEFD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:21:48,606 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF3A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:21:51,130 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B60A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:21:53,649 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8927C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:21:56,169 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8D3100>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:21:58,688 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B6850>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:22:01,208 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF2E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:22:03,732 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BEA60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:22:06,250 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE970>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:22:08,758 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8C7CA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:22:11,281 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF075EB0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:22:13,793 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8D38B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:22:16,316 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8C7F40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:22:18,841 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BEB80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:22:21,371 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE1F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:22:23,888 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AFA60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:22:26,407 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B63A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:22:28,933 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8927F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:22:31,464 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8D3130>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:22:33,987 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF340>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:22:36,516 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D100>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:22:39,040 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE7F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:22:41,555 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE0D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:22:44,072 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF88EA00>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:22:46,593 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8C7040>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:22:49,112 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8D38E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:22:51,626 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AFAC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:22:54,142 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892EE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:22:56,672 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892A00>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:22:59,200 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87A790>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:23:01,724 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF88E850>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:23:04,255 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF88E0D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:23:06,779 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B6F10>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:23:09,305 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF88EE20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:23:11,823 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87A8B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:23:14,348 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892D90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:23:16,866 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8924F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:23:19,390 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF250>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:23:21,918 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B6B50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:23:24,443 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8C7430>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:23:26,966 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF610>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:23:29,486 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892280>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:23:32,014 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892490>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:23:34,532 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87AF70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:23:37,057 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF88E370>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:23:39,579 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF88E4C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:23:42,100 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8C7B80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:23:44,620 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF075DF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:23:47,141 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87AF70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:23:49,661 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892160>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:23:52,192 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892280>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:23:54,716 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AFA60>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:23:57,241 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8C7190>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:23:59,774 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A1AC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:24:02,289 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF250>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:24:04,819 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892A30>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:24:07,349 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8926D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:24:09,868 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87A730>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:24:12,397 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF88E190>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:24:14,916 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A1A30>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:24:17,439 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A1F70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:24:19,957 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF075D00>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:24:22,475 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87A880>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:24:24,999 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892A90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:24:27,505 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892CA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:24:30,035 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AFAC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:24:32,557 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A1A30>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:24:35,085 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BEC70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:24:37,601 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF310>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:24:40,129 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8922E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:24:42,657 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892970>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:24:45,182 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87A940>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:24:47,706 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF075F70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:24:50,236 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE5E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:24:52,751 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE4C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:24:55,266 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87A8E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:24:57,784 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892BB0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:25:00,308 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892B80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:25:02,825 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AFC40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:25:05,338 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8B6E20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:25:07,865 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE0A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:25:10,387 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D2E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:25:12,906 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF430>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:25:15,426 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8924C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:25:17,946 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8920A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:25:20,465 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87AE20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:25:22,989 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF075C40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:25:25,515 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10DF40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:25:28,037 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8D39A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:25:30,563 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87A790>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:25:33,084 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892AC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:25:35,602 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892F10>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:25:38,120 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF970>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:25:40,636 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8C7F40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:25:43,156 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE100>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:25:45,683 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8D3550>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:25:48,201 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF190>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:25:50,725 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892280>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:25:53,242 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892E20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:25:55,762 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87AD00>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:25:58,283 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87A8B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:26:00,807 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF88E940>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:26:03,331 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8D36A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:26:05,850 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87AAF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:26:08,383 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892EE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:26:10,904 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8920A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:26:13,421 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF0A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:26:15,939 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8C7460>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:26:18,463 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BED00>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:26:20,983 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8D35E0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:26:23,502 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892C40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:26:26,017 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87AE20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:26:28,538 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10DF40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:26:31,062 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF075FD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:26:33,582 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BEDF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:26:36,101 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A10A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:26:38,645 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A1EB0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:26:41,162 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892070>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:26:43,679 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8923D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:26:46,198 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10DFD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:26:48,731 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE610>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:26:51,256 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D040>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:26:53,770 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892CD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:26:56,288 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892820>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:26:58,811 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF075E20>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:27:01,337 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE3A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:27:03,865 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87ABE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:27:06,391 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A1C40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:27:08,913 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF075DF0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:27:11,432 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8926A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:27:13,954 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892100>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:27:16,477 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE310>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:27:18,989 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D160>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:27:21,505 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A1BE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:27:24,029 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8C7760>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:27:26,556 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10DF10>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:27:29,079 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE7C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:27:31,593 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892DC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:27:34,122 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892220>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:27:36,646 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF7F7520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:27:39,169 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87AD30>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:27:41,690 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87AD30>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:27:44,205 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8926D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:27:46,731 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892520>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:27:49,254 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE4F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:27:51,775 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE8B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:27:54,288 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D7C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:27:56,809 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A1250>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:27:59,327 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8C7070>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:28:01,846 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D100>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:28:04,354 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BEE50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:28:06,878 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE4C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:28:09,400 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892EB0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:28:11,918 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892D00>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:28:14,437 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF87ACD0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:28:16,962 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8C7640>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:28:19,488 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892EE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:28:22,015 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892D90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:28:24,531 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE9D0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:28:27,050 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BEB80>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:28:29,572 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D280>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:28:32,093 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8A1400>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:28:34,621 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8C7BB0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:28:37,150 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D3A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:28:39,676 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BEAC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:28:42,194 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE4C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:28:44,714 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8923A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:28:47,222 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892EE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:28:49,749 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF075CA0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:28:52,273 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8C7C70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:28:54,793 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8922B0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:28:57,312 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892430>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:28:59,831 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE370>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:29:02,354 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE7F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:29:04,873 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D340>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:29:07,392 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8C7580>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:29:09,919 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8AF790>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:29:12,442 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10DDC0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:29:14,963 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BEE50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:29:17,482 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BEF10>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:29:20,006 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8923A0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:29:22,529 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892EE0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:29:25,054 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF075C40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:29:27,575 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF075C40>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:29:30,090 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF892790>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:29:32,612 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8924C0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:29:35,135 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF8BE070>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2022-01-20 15:29:37,664 : 构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x0000027CFF10D7F0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))