smart.log 722.5 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 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299
2021-06-17 09:17:35,561 :  ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2021-06-17 09:17:37,651 :  11111111111
2021-06-17 09:17:37,679 :  启动成功
2021-06-17 09:17:37,724 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb2fc3890>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-06-17 09:17:38,228 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb22066f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-06-17 09:17:38,680 :  --------------状态灯[3, 6]打开
2021-06-17 09:17:38,737 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8f1b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-06-17 09:17:39,427 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8f5f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:39,934 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8f1f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:40,440 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8fa30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:41,071 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8fe70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:41,578 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea22d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:42,115 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea2710>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:42,622 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8fd30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:43,223 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8f8f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:43,504 :  控制界面
2021-06-17 09:17:43,836 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea2590>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:44,346 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea2150>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:45,066 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea2310>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:45,686 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea2370>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:46,296 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1655310>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:47,219 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1655710>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:47,831 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1655cf0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:48,447 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ee7eb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:49,059 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1655790>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:49,571 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16555f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:50,392 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16552b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:51,006 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea2a30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:51,622 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea2830>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:52,234 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb166b150>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:52,850 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8f770>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:53,464 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea2f50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:54,337 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea26b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:54,999 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1655170>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:55,615 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1655930>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:56,231 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1655a90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:56,843 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ee7e50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:57,637 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb166b730>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-06-17 09:17:58,663 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16559f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:09:48,781 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1655550>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:09:49,587 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1655230>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:09:50,165 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea2bb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:09:50,781 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea2db0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:09:51,395 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea24b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:09:52,009 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb166b3d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:09:52,797 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea2f50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:09:53,609 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea28d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:09:54,160 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1655ad0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:09:54,775 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1655eb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:09:55,389 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1655df0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:09:56,157 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1655890>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:09:56,722 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb166b0d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:09:56,793 :  Exception on /stoppost [POST]
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/flask/app.py", line 2292, in wsgi_app
    response = self.full_dispatch_request()
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1815, in full_dispatch_request
    rv = self.handle_user_exception(e)
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1718, in handle_user_exception
    reraise(exc_type, exc_value, tb)
  File "/usr/lib/python3/dist-packages/flask/_compat.py", line 35, in reraise
    raise value
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1813, in full_dispatch_request
    rv = self.dispatch_request()
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1799, in dispatch_request
    return self.view_functions[rule.endpoint](**req.view_args)
  File "/prog/smartshelf/app/induction_post.py", line 84, in stoppost
    indresetled()
  File "/prog/smartshelf/app/induction_test.py", line 196, in indresetled
    ser.send_data(texts)
  File "/prog/smartshelf/app/utils/serial_communication.py", line 100, in send_data
    self.main_engine.write(data)
AttributeError: 'SerialCommunication' object has no attribute 'main_engine'
2021-07-07 17:09:57,335 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1655130>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:09:57,947 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea2f70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:09:58,564 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea2cb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:09:59,177 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea2bd0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:09:59,794 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb166b410>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:00,407 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb166b870>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:01,022 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea22b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:01,636 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea2090>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:02,249 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea25f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:03,039 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1655630>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:03,989 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1655f90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:04,497 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb166baf0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:05,327 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb166b390>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:05,920 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1655cf0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:06,133 :  无需关闭
2021-07-07 17:10:06,753 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16557f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:07,528 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea2830>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:07,931 :  测试界面
2021-07-07 17:10:08,345 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5c90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:08,904 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea2ff0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:09,522 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea2590>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:10,238 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487db0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:11,033 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487850>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:11,840 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb14874b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:12,636 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb166be70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:13,434 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea2590>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:14,230 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f59b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:14,846 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5c90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:15,459 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5150>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:16,381 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487770>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:16,995 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb14879f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:17,610 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487fb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:18,225 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5b90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:18,840 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5ed0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:19,454 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea2750>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:20,257 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea2cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:21,061 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb166bd50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:21,603 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487930>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:22,219 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487070>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:22,834 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487590>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:23,346 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487b90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:24,202 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb14877d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:24,996 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5fb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:25,049 :  Exception on /indworkinglight [POST]
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/flask/app.py", line 2292, in wsgi_app
    response = self.full_dispatch_request()
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1815, in full_dispatch_request
    rv = self.handle_user_exception(e)
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1718, in handle_user_exception
    reraise(exc_type, exc_value, tb)
  File "/usr/lib/python3/dist-packages/flask/_compat.py", line 35, in reraise
    raise value
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1813, in full_dispatch_request
    rv = self.dispatch_request()
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1799, in dispatch_request
    return self.view_functions[rule.endpoint](**req.view_args)
  File "/prog/smartshelf/app/induction_test.py", line 207, in indworkinglight
    ser.send_data(text)
  File "/prog/smartshelf/app/utils/serial_communication.py", line 100, in send_data
    self.main_engine.write(data)
AttributeError: 'SerialCommunication' object has no attribute 'main_engine'
2021-07-07 17:10:25,799 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5850>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:26,415 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea23d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:27,004 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea29b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:27,644 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f57f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:28,260 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5650>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:29,110 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5ff0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:29,863 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487890>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:30,410 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487610>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:31,193 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487b50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:32,003 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8fe50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:32,560 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea2c30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:33,174 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb14879f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:33,788 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487e70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:34,511 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487ff0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:34,898 :  Exception on /indlineledon [POST]
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/flask/app.py", line 2292, in wsgi_app
    response = self.full_dispatch_request()
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1815, in full_dispatch_request
    rv = self.handle_user_exception(e)
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1718, in handle_user_exception
    reraise(exc_type, exc_value, tb)
  File "/usr/lib/python3/dist-packages/flask/_compat.py", line 35, in reraise
    raise value
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1813, in full_dispatch_request
    rv = self.dispatch_request()
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1799, in dispatch_request
    return self.view_functions[rule.endpoint](**req.view_args)
  File "/prog/smartshelf/app/induction_test.py", line 131, in indlineledon
    ser.send_data(texts)
  File "/prog/smartshelf/app/utils/serial_communication.py", line 100, in send_data
    self.main_engine.write(data)
AttributeError: 'SerialCommunication' object has no attribute 'main_engine'
2021-07-07 17:10:35,120 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f52f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:35,735 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5610>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:36,348 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea2390>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:36,962 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f56d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:37,578 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5f50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:38,194 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5f30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:38,450 :  Exception on /indlineledoff [POST]
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/flask/app.py", line 2292, in wsgi_app
    response = self.full_dispatch_request()
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1815, in full_dispatch_request
    rv = self.handle_user_exception(e)
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1718, in handle_user_exception
    reraise(exc_type, exc_value, tb)
  File "/usr/lib/python3/dist-packages/flask/_compat.py", line 35, in reraise
    raise value
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1813, in full_dispatch_request
    rv = self.dispatch_request()
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1799, in dispatch_request
    return self.view_functions[rule.endpoint](**req.view_args)
  File "/prog/smartshelf/app/induction_test.py", line 142, in indlineledoff
    ser.send_data(texts)
  File "/prog/smartshelf/app/utils/serial_communication.py", line 100, in send_data
    self.main_engine.write(data)
AttributeError: 'SerialCommunication' object has no attribute 'main_engine'
2021-07-07 17:10:38,805 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487db0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:39,603 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487f70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:40,379 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487570>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:40,955 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea25f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:41,569 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487770>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:42,187 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487e50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:42,464 :  Exception on /indledopen [POST]
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/flask/app.py", line 2292, in wsgi_app
    response = self.full_dispatch_request()
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1815, in full_dispatch_request
    rv = self.handle_user_exception(e)
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1718, in handle_user_exception
    reraise(exc_type, exc_value, tb)
  File "/usr/lib/python3/dist-packages/flask/_compat.py", line 35, in reraise
    raise value
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1813, in full_dispatch_request
    rv = self.dispatch_request()
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1799, in dispatch_request
    return self.view_functions[rule.endpoint](**req.view_args)
  File "/prog/smartshelf/app/induction_test.py", line 173, in indledopen
    ser.send_data(texts)
  File "/prog/smartshelf/app/utils/serial_communication.py", line 100, in send_data
    self.main_engine.write(data)
AttributeError: 'SerialCommunication' object has no attribute 'main_engine'
2021-07-07 17:10:42,800 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb43f7550>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:43,413 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea25b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:44,336 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5350>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:44,623 :  控制界面
2021-07-07 17:10:44,952 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5330>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:45,563 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb166bcf0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:46,351 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5a50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:47,008 :  无需关闭
2021-07-07 17:10:47,099 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5fb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:47,717 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea25b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:48,329 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487390>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:48,837 :  测试界面
2021-07-07 17:10:48,844 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487b50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:49,561 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb14878b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:49,626 :  配置界面
2021-07-07 17:10:50,180 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487a90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:50,790 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487c30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:51,407 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5bf0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:52,017 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5e10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:52,364 :  测试界面
2021-07-07 17:10:52,630 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487ab0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:53,413 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb42122d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:54,452 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb4212350>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:55,230 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f57d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:56,036 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5390>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:56,625 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5410>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:57,413 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487f50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:58,211 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487930>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:58,546 :  Exception on /indlineledon [POST]
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/flask/app.py", line 2292, in wsgi_app
    response = self.full_dispatch_request()
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1815, in full_dispatch_request
    rv = self.handle_user_exception(e)
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1718, in handle_user_exception
    reraise(exc_type, exc_value, tb)
  File "/usr/lib/python3/dist-packages/flask/_compat.py", line 35, in reraise
    raise value
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1813, in full_dispatch_request
    rv = self.dispatch_request()
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1799, in dispatch_request
    return self.view_functions[rule.endpoint](**req.view_args)
  File "/prog/smartshelf/app/induction_test.py", line 131, in indlineledon
    ser.send_data(texts)
  File "/prog/smartshelf/app/utils/serial_communication.py", line 100, in send_data
    self.main_engine.write(data)
AttributeError: 'SerialCommunication' object has no attribute 'main_engine'
2021-07-07 17:10:58,874 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb14b4d30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:59,490 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487e50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:00,276 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487890>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:01,285 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487570>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:01,950 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5a70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:02,564 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5e70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:03,178 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5890>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:03,794 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb42123d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:04,585 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb14b4d10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:05,454 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f53f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:06,250 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5c50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:06,865 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5c90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:07,642 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487c30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:08,400 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487d70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:09,013 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487270>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:09,629 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb14b4a50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:10,242 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487ad0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:10,859 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb14874d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:11,473 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487410>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:12,087 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5af0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:12,700 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f53b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:13,314 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5690>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:13,930 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb14b4cb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:14,545 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb14b4750>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:15,159 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5cb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:15,774 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5a10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:16,387 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f59b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:17,002 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487410>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:17,618 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb14874d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:18,229 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487790>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:18,846 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb14b4ff0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:19,458 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5310>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:20,074 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5df0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:20,688 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5e30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:21,301 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb4212390>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:21,918 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487890>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:22,532 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487570>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:23,146 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487730>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:23,761 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb14873f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:24,375 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5c70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:24,990 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5990>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:25,603 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f58f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:26,218 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8f770>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:26,833 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb14878f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:27,448 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487b50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:28,060 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb14b4670>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:28,703 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5630>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:29,291 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f54d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:29,805 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f5e30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:30,519 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb4212350>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:31,496 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487fb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:32,057 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb14875d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:32,669 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb14872d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:33,283 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487130>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:34,074 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487a50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:34,904 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487ed0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:11:35,700 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1487110>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:28,109 :  ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2021-07-07 17:10:30,200 :  11111111111
2021-07-07 17:10:30,236 :  启动成功
2021-07-07 17:10:30,278 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb390bbd0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-07 17:10:30,786 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb21ac890>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-07 17:10:31,237 :  --------------状态灯[3, 6]打开
2021-07-07 17:10:31,292 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ebd090>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-07 17:10:33,006 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ebd4d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:33,539 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ebd0d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:34,185 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ebd910>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:34,698 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ebdd50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:35,211 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed11b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:35,722 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed15f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:36,026 :  控制界面
2021-07-07 17:10:36,248 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed10f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:36,765 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1bb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:37,273 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664d70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:37,785 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb167c1d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:38,298 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb167c610>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:38,809 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664d30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:39,373 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed16b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:39,884 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb167c050>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:40,428 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb167ca70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:40,943 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb167ceb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:41,775 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693310>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:42,343 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb167c910>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:42,955 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f16d90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:43,571 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1570>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:44,205 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664f70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:44,799 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693270>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:45,413 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693750>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:46,028 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664e90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:46,642 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664a30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:47,257 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1370>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:47,868 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb167c1d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:48,484 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb167cbd0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:49,096 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16935f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:49,711 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693b90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-07 17:10:50,427 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f16e70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:17,259 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1b30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:17,873 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb167c670>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:18,485 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb167c6b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:19,103 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664d30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:19,729 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693690>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:20,325 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693590>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:20,941 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693fd0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:21,554 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16649b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:22,167 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb167c390>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:22,780 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb167c690>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:23,400 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed16f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:24,011 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693910>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:24,789 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693130>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:25,548 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625190>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:26,160 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1130>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:26,773 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb167c670>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:27,582 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693df0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:28,306 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693ed0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:29,107 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693610>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:29,927 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664f90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:30,442 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16250b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:30,952 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693fd0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:31,786 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693b90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:32,299 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693930>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:33,037 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb167c390>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:33,733 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb167c7f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:34,347 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed16f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:34,961 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625430>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:35,540 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb167c8f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:36,190 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb167cab0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:36,805 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693870>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:37,320 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16936d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:38,028 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693a70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:38,645 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625390>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:39,358 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664a10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:39,972 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693810>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:40,690 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693750>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:41,204 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693770>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:41,919 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb167cd50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:42,553 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb4197390>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:43,354 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625630>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:44,140 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625cb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:44,654 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693990>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:45,418 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693610>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:46,013 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb167c890>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:46,526 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb167c970>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:47,239 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664b30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:47,851 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625a30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:48,573 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625e50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:49,185 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb167cb10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:49,799 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb167ce50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:50,420 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f0a050>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:51,026 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693f50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:51,643 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693450>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:52,255 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16256d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:52,870 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625bd0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:53,488 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f16f10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:54,104 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693e10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:54,723 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693bd0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:55,337 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693070>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:55,938 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664e70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:56,552 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:57,165 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625730>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:57,823 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664050>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:58,396 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693270>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:58,909 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16939b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:39:59,723 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693430>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:00,339 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1650>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:00,952 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625590>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:01,568 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625370>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:02,181 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f16d50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:02,976 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16936f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:03,777 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693110>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:04,285 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693d30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:05,143 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664f10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:06,001 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625470>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:06,577 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e190>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:07,086 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664fb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:07,914 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693030>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:08,521 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693750>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:09,137 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693730>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:09,648 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16933f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:10,162 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1090>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:11,018 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e430>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:11,835 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16935b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:12,622 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693370>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:13,477 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693bf0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:14,149 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664e70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:14,766 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664fb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:15,482 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e5d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:16,098 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ea10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:16,710 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16645b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:17,324 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693d50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:17,941 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16934d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:18,478 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693db0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:19,165 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693950>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:19,787 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e790>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:20,605 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ecb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:21,467 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693b30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:22,034 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16937f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:22,645 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693930>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:23,260 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664e10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:23,873 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664f90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:24,516 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ee50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:25,102 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e990>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:25,712 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664a10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:26,330 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664df0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:27,139 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693510>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:27,960 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16937b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:28,788 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693410>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:29,696 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1df0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:30,319 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1090>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:32,161 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693f90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:32,942 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693690>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:33,490 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16931f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:34,003 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664530>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:34,722 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16251f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:35,290 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ef30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:35,806 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16391d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:36,611 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664ab0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:37,433 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664a70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:38,240 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16932d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:39,036 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16935f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:39,735 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693b10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:40,753 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16390d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:41,477 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16396f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:42,089 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693930>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:42,705 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693150>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:43,317 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16931f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:43,933 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664a70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:44,547 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16250b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:45,160 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1639270>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:45,772 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ed90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:46,410 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664db0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:47,010 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664df0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:47,618 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693970>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:48,228 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16935f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:48,946 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693a90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:49,562 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1639ab0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:50,173 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1639dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:50,955 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed16b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:51,796 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16936f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:52,670 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16933b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:53,498 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693510>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:54,165 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625ff0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:54,779 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625d10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:55,399 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664a70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:56,008 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625a50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:56,617 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1890>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:57,237 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664fb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:57,852 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16649d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:58,508 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6310>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:59,077 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6750>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:40:59,690 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6b90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:00,304 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41b6150>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:01,128 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed16b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:01,938 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625df0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:02,556 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625950>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:03,355 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed63f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:04,096 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6d30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:04,702 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693190>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:05,516 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6670>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:06,327 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625fb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:07,398 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16250d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:08,169 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1090>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:09,034 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16649d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:09,640 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16930b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:10,231 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16935d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:10,843 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664a10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:11,462 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1170>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:12,072 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625a10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:12,683 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16259f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:13,305 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6530>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:14,303 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6130>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:15,088 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693870>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:15,934 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed61b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:16,791 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625370>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:17,493 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625f30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:18,285 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f16f10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:19,090 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664c30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:19,745 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16939f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:20,362 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693e50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:21,156 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664bd0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:21,862 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1750>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:22,524 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625a10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:23,135 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625230>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:23,910 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6630>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:24,692 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16933f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:25,504 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693ff0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:26,323 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6430>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:27,107 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6450>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:27,838 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625f10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:28,552 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41b6150>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:29,162 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f16e70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:29,776 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664d90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:30,417 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1639450>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:31,004 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f16c90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:31,617 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb21248b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:32,233 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625450>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:32,848 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16258d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:33,481 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed61f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:34,074 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1693f30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:35,099 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16396f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:35,611 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6d30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:36,120 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16250b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:36,632 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625ff0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:37,144 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1650>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:37,960 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664bb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:38,576 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1639650>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:39,189 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1639cd0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:39,816 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f16e50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:40,343 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1930>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:40,951 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16251b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:41,541 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625fb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:42,162 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6450>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:42,773 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16398d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:43,408 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1639f70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:44,169 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625050>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:44,961 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625a50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:45,536 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f16e50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:46,338 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6b10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:47,068 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664c70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:47,864 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1639e70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:48,602 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb164c130>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:49,223 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed16b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:50,094 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16397f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:50,889 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16396d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:51,713 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664530>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:52,287 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664b90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:53,092 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625630>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:53,888 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625310>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:54,469 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16649b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:55,475 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664b30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:56,260 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625cb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:57,062 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16257d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:57,690 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed64b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:58,503 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed68f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:59,146 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6d30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:41:59,757 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625af0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:00,371 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664f70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:00,984 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb21248b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:01,969 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1930>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:02,507 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed67d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:03,477 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6150>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:04,057 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e190>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:04,681 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6350>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:05,283 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1090>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:05,901 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f16c90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:06,549 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664fd0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:07,149 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625210>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:07,740 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625570>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:08,356 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e430>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:08,968 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16251d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:09,586 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664570>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:10,202 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1df0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:10,810 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6ab0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:11,560 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6110>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:12,392 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e5d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:12,997 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ea10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:13,627 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6b50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:14,633 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1310>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:15,393 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664df0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:16,542 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16645b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:17,479 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625730>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:18,284 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e530>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:18,959 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ee50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:19,560 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16251d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:20,447 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664030>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:21,391 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed11b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:22,193 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6ab0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:23,023 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6730>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:23,602 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ed50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:24,427 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1639030>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:25,198 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed66b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:26,008 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6c90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:26,807 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1650>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:27,668 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664ab0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:28,486 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625470>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:29,128 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625e70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:29,743 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1639b90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:30,350 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664a50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:30,985 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664e70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:31,588 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1190>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:32,393 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6730>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:33,449 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed68b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:33,873 :  配置界面
2021-07-08 10:42:33,972 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed62f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:34,787 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16397d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:35,371 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16398d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:36,250 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16397b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:37,017 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664e50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:37,747 :  控制界面
2021-07-08 10:42:37,984 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625e90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:38,783 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1639e10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:39,593 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1190>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:40,076 :  Exception on /stoppost [POST]
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/flask/app.py", line 2292, in wsgi_app
    response = self.full_dispatch_request()
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1815, in full_dispatch_request
    rv = self.handle_user_exception(e)
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1718, in handle_user_exception
    reraise(exc_type, exc_value, tb)
  File "/usr/lib/python3/dist-packages/flask/_compat.py", line 35, in reraise
    raise value
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1813, in full_dispatch_request
    rv = self.dispatch_request()
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1799, in dispatch_request
    return self.view_functions[rule.endpoint](**req.view_args)
  File "/prog/smartshelf/app/induction_post.py", line 84, in stoppost
    indresetled()
  File "/prog/smartshelf/app/induction_test.py", line 196, in indresetled
    ser.send_data(texts)
  File "/prog/smartshelf/app/utils/serial_communication.py", line 100, in send_data
    self.main_engine.write(data)
AttributeError: 'SerialCommunication' object has no attribute 'main_engine'
2021-07-08 10:42:40,386 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda050>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:41,212 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda490>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:41,816 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda8d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:42,453 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed10f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:43,042 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625790>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:43,536 :  测试界面
2021-07-08 10:42:43,675 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cee6f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:44,271 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421c5d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:45,069 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421cf10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:45,873 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb42391b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:46,673 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1750>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:47,372 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda8f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:47,964 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1639bb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:48,762 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1639e50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:49,499 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda3f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:50,301 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1290>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:51,105 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb4239250>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:51,643 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421c910>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:52,446 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421c530>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:53,362 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421c5b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:53,875 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cee3b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:54,711 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb4239130>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:55,327 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421c410>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:55,942 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421cff0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:56,725 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421cd50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:57,551 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16395d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:58,525 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1639330>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:59,317 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cee430>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:42:59,932 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda2b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:00,720 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421cfb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:01,497 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421c890>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:02,079 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421cc50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:02,727 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb4239250>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:03,249 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cee610>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:03,766 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cf3f50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:04,535 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb4197390>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:05,150 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f16d90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:05,665 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421c4f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:06,383 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421c9f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:07,127 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda410>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:07,707 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1639930>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:08,220 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e390>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:08,941 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda590>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:09,546 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421cc90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:10,179 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421c430>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:10,777 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb4239350>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:11,392 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1890>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:12,007 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ed10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:12,803 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e770>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:13,602 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb4239130>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:14,155 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f16e30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:14,767 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421c5b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:15,382 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421c470>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:15,997 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda770>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:16,816 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ef70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:17,367 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e730>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:18,048 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda5b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:18,566 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421cd70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:19,274 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421c750>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:19,887 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb4239310>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:20,501 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1130>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:21,117 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e2d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:21,834 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6450>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:22,354 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1b30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:23,172 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb4239250>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:23,690 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421c3f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:24,403 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421ce90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:25,033 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda5f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:25,733 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16395d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:26,631 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6fb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:27,433 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421c9d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:28,038 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421ce30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:28,646 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421cbb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:29,238 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb42394f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:29,829 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cee7b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:30,500 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6070>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:31,041 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed67f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:31,666 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1490>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:32,481 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb4239390>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:33,302 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421cbd0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:33,915 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421c6d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:34,706 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16395d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:35,506 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6a10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:36,058 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625410>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:36,853 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb4197390>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:37,732 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421c130>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:38,661 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421c690>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:39,311 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb4239310>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:40,197 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cee610>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:41,005 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6f30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:41,650 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6d10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:42,346 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda710>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:42,952 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e1f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:43,636 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e310>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:44,278 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ee30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:45,077 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ef90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:45,678 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1170>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:46,311 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1639730>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:47,011 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ec10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:48,268 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169eb90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:49,577 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e0f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:50,375 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:51,502 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda870>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:52,292 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1639650>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:52,840 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1639370>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:53,650 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda410>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:54,276 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e130>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:54,889 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ea50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:55,679 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ef50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:56,520 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e2f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:57,388 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1639c50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:58,125 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cee050>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:59,429 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ead0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:43:59,956 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ed30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:00,486 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e030>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:00,997 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e130>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:01,548 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda6d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:02,059 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb4239290>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:02,664 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421c790>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:03,277 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda550>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:03,793 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e350>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:04,412 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ecb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:04,924 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ed30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:05,538 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ed70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:06,150 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421c410>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:06,753 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421cb30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:07,286 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169eeb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:07,802 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e870>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:08,314 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ef70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:08,827 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e470>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:09,412 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda690>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:10,027 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb42393f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:10,642 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421cdb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:11,254 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda870>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:11,764 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e310>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:12,380 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e610>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:12,993 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ef10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:13,609 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1530>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:14,220 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421c330>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:14,842 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421c550>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:15,371 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ec50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:15,962 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e8d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:16,576 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ecb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:17,154 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e4b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:17,701 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda210>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:18,212 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed69f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:18,725 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed63b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:19,338 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda570>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:19,952 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e210>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:20,476 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ef70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:21,078 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ed90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:21,692 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ef30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:22,306 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cf3df0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:22,926 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625790>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:23,547 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169eef0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:24,148 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ee10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:24,763 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ecf0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:25,376 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda690>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:25,990 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cee370>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:26,604 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16259f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:27,115 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16257b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:27,729 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda7b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:28,344 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1530>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:28,957 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ecb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:29,571 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e750>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:30,184 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ec90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:30,799 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625150>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:31,415 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625130>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:32,042 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda2b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:32,553 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb42391d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:33,155 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ef30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:33,768 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e750>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:34,381 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e650>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:34,996 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16250d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:35,613 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625c70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:36,223 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ecf0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:36,838 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ed70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:37,349 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169eeb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:37,963 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda2b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:38,577 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6410>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:39,191 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421cd50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:39,807 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421ccf0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:40,419 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6970>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:41,033 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda910>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:41,646 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e770>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:42,260 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169eb70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:42,874 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e850>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:43,498 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421cf10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:44,104 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421cbb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:44,717 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e4b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:45,331 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ef10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:45,944 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:46,570 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda390>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:47,103 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6cf0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:47,698 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb421cc90>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:48,213 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cee110>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:48,724 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed64d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:49,321 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6410>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:49,934 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda530>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:50,552 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e5f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:51,164 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e110>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:51,679 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169eff0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:52,225 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cee490>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:52,804 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e0b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:53,467 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169efd0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:54,054 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda810>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:54,792 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6910>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:55,385 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6f30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:56,033 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cee430>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:56,567 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb4239270>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:57,076 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6f70>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:57,729 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda770>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:58,240 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb4197390>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:58,858 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ee30>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:44:59,478 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169eff0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:00,055 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1639270>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:01,435 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16390b0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:03,369 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e4f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:03,958 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e5f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:04,564 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda610>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:05,158 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6770>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:05,764 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6ad0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:06,275 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16394f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:06,787 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed1ab0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:07,298 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1664c50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:07,809 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6ed0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:08,354 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda550>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:09,082 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169eeb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:09,616 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e3d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:10,128 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41b6130>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:10,710 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cf3170>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:11,366 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169edb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:11,941 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169ec50>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:12,456 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda350>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:12,964 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6610>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:13,575 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f16d10>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:14,191 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cf31f0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:14,805 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625ff0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:15,319 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6ad0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:15,929 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6dd0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:16,540 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cda730>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:17,157 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e190>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:17,771 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb169e5d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:18,385 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1625190>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:33,302 :  ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2021-07-08 10:45:35,332 :  11111111111
2021-07-08 10:45:35,434 :  启动成功
2021-07-08 10:45:35,505 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41be630>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:36,087 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f2e330>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:36,435 :  --------------状态灯[3, 6]打开
2021-07-08 10:45:36,703 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f2e770>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:37,317 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f2ebb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:37,956 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f2eff0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:38,477 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f2eeb0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:39,053 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f2e890>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:39,670 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f2e450>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:40,284 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f2e350>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:40,795 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f3d450>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:41,409 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f3d890>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:42,026 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f3dcd0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:42,603 :  控制界面
2021-07-08 10:45:43,413 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f2e550>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:43,969 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f2eef0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2021-07-08 10:45:44,315 :  灯条已重置
2021-07-08 10:45:44,316 :  关闭成功
2021-07-08 10:45:46,523 :  测试界面
2021-07-08 10:45:52,268 :  地址:all,颜色:red,已发送开启指令
2021-07-08 10:46:01,608 :  地址:1,颜色:red,已发送开启指令
2021-07-08 10:46:10,425 :  地址:2,颜色:red,已发送开启指令
2021-07-08 10:46:16,997 :  地址:3,颜色:red,已发送开启指令
2021-07-08 11:17:28,895 :  控制界面
2021-07-08 14:00:26,257 :  无需关闭
2021-07-08 14:00:30,269 :  测试界面
2021-07-09 09:24:19,062 :  ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2021-07-09 09:24:21,093 :  11111111111
2021-07-09 09:24:21,136 :  启动成功
2021-07-09 09:24:22,137 :  --------------状态灯[3, 6]打开
2021-07-09 09:24:23,151 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb4151750>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:24:24,243 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ec9750>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:24:26,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 0xb1ec9b90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:24:27,843 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ec9fd0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:24:30,355 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb1ec9e90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:24:31,443 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ec9b90>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:24:33,950 :  控制界面
2021-07-09 09:24:33,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 0xb1ec96f0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:24:35,043 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ec9d70>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:24:37,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 0xb1eda3d0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:24:38,643 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ec9f90>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:24:39,805 :  灯条已重置
2021-07-09 09:24:39,806 :  关闭成功
2021-07-09 09:24:41,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 0xb1ec9450>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:24:42,318 :  测试界面
2021-07-09 09:24:48,778 :  配置界面
2021-07-09 09:26:54,110 :  ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2021-07-09 09:26:56,141 :  11111111111
2021-07-09 09:26:56,186 :  启动成功
2021-07-09 09:26:57,189 :  --------------状态灯[3, 6]打开
2021-07-09 09:26:58,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 0xb41a52f0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:26:59,283 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f19790>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:27:01,794 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb1f19bd0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:27:02,883 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e89030>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:27:05,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 0xb1f19e30>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:27:06,483 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f19b90>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:27:08,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 0xb1f19610>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:27:10,083 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41a5fd0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:27:12,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 0xb1e89470>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:27:13,683 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e898b0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:27:16,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 0xb1e89cf0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:27:17,283 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41a5ff0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:27:19,794 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb1f197b0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:27:20,718 :  控制界面
2021-07-09 09:27:20,882 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f19910>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:27:22,365 :  灯条已重置
2021-07-09 09:27:22,368 :  关闭成功
2021-07-09 09:27:23,389 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb1f199d0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:27:27,849 :  测试界面
2021-07-09 09:27:30,217 :  配置界面
2021-07-09 09:28:26,752 :  颜色集合已同步至主板
2021-07-09 09:28:29,904 :  测试界面
2021-07-09 09:28:35,701 :  地址:all,颜色:red,已发送开启指令
2021-07-09 09:28:52,232 :  地址:1,颜色:red,已发送开启指令
2021-07-09 09:29:16,600 :  地址:1,颜色:blue,已发送开启指令
2021-07-09 09:29:56,541 :  灯条:1已关闭
2021-07-09 09:30:04,831 :  配置界面
2021-07-09 09:30:11,104 :  颜色集合已同步至主板
2021-07-09 09:30:17,327 :  测试界面
2021-07-09 09:31:04,249 :  串口名称:ttyUSB0
2021-07-09 09:31:04,250 :  串口名称:ttyAMA0
2021-07-09 09:31:04,251 :  串口0:ttyUSB0/串口1:ttyAMA0/
2021-07-09 09:31:08,948 :  串口连接正常
2021-07-09 09:31:12,212 :  控制界面
2021-07-09 09:31:14,769 :  测试界面
2021-07-09 09:31:48,259 :  库位扫描已开启
2021-07-09 09:32:13,840 :  灯条已重置
2021-07-09 09:32:13,841 :  库位扫描已关闭
2021-07-09 09:33:42,832 :  ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2021-07-09 09:33:44,898 :  11111111111
2021-07-09 09:33:44,934 :  启动成功
2021-07-09 09:33:44,967 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb3911950>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:33:45,472 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb2538710>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:33:45,934 :  --------------状态灯[3, 6]打开
2021-07-09 09:33:45,978 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f15190>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:33:46,483 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f0df90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:33:46,988 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f155d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:33:47,492 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f15a10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:33:47,997 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f15e50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:33:48,501 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea82b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:33:49,006 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea86f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:33:49,510 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f15e30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:33:51,365 :  控制界面
2021-07-09 09:33:52,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 0xb1f159f0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:33:53,136 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ede570>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:33:55,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 0xb1f15c90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:33:56,736 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea8a10>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:33:59,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 0xb1ea82b0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:34:00,336 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ede1b0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:34:02,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 0xb1edead0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:34:03,936 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb166f0d0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:34:21,456 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb1ea8ad0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:34:22,546 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea86d0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:34:25,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 0xb1edeaf0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:34:26,147 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ede350>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:34:28,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 0xb1f0de90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:34:29,747 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb166f350>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:34:32,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 0xb1f159f0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:34:33,347 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ede390>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:34:35,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 0xb1ede270>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:34:36,956 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ede970>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:34: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 0xb1ea8890>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:34:40,547 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea8b50>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:34:43,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 0xb166f850>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:34:44,147 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea8b70>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:34:46,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 0xb1ea8530>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:34:47,747 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ede930>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:34:50,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 0xb1ededb0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:34:51,347 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f0df50>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:34:53,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 0xb1f15a90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:34:54,947 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb166f070>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:34:57,019 :  控制界面
2021-07-09 09:34:57,456 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb1ede4f0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:34:58,547 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1edef70>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:34:59,042 :  灯条已重置
2021-07-09 09:34:59,045 :  关闭成功
2021-07-09 09:35:01,864 :  测试界面
2021-07-09 09:35:43,562 :  控制界面
2021-07-09 09:35:44,854 :  无需关闭
2021-07-09 09:36:04,991 :  ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2021-07-09 09:36:07,078 :  11111111111
2021-07-09 09:36:07,110 :  启动成功
2021-07-09 09:36:07,138 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb38a19d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:36:07,643 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb21ac490>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:36:08,111 :  --------------状态灯[3, 6]打开
2021-07-09 09:36:08,149 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ead470>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:36:08,654 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1eb67f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:36:09,159 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea7df0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:36:09,664 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1eb6b70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:36:10,169 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1eb6c30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:36:10,673 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e46090>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:36:11,178 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e464d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:36:11,683 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e46910>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:36:13,515 :  控制界面
2021-07-09 09:36:14,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 0xb1ead0d0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:36:15,322 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e7b110>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:36:17,829 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb1e7b550>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:36:18,337 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e46790>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:36:18,844 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e46730>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:36:19,349 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e7b5b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:36:19,853 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e7b9b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:36:20,360 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e7bf90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:36:20,869 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cc93f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:36:21,377 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e467d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:36:21,885 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e46ad0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:36:22,393 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e7ba50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:36:22,900 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e7bb30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:36:23,408 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e7b410>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:36:23,916 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cc92b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:36:24,426 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cc9830>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 09:36:26,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 0xb1e7b070>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:36:28,043 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e7b910>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:36:30,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 0xb1eb6c30>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:36:31,642 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e46a50>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:36:34,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 0xb1ead070>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:36:35,253 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cc9b70>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:36:37,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 0xb1e468b0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:36:38,843 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1eb6a30>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:36:41,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 0xb1e7b4d0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:36:42,443 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e7beb0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:36: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 0xb1e7b310>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:36:46,043 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cc9750>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:36:46,867 :  测试界面
2021-07-09 09:36:48,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 0xb1e7b170>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:36:48,679 :  控制界面
2021-07-09 09:59:09,196 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41b3390>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:59:10,223 :  灯条已重置
2021-07-09 09:59:10,226 :  关闭成功
2021-07-09 09:59:11,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 0xb41d1310>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:59:34,200 :  ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2021-07-09 09:59:36,229 :  11111111111
2021-07-09 09:59:36,278 :  启动成功
2021-07-09 09:59:37,281 :  --------------状态灯[3, 6]打开
2021-07-09 09:59:38,231 :  控制界面
2021-07-09 09:59:38,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 0xb41b2410>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:59:39,436 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb16b8710>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:59:41,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 0xb16b8b50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:59:43,042 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f358b0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 09:59:44,932 :  灯条已重置
2021-07-09 09:59:44,935 :  关闭成功
2021-07-09 09:59:45,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 0xb41cd250>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 09:59:47,583 :  配置界面
2021-07-09 10:00:04,660 :  颜色集合已同步至主板
2021-07-09 10:00:27,009 :  ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2021-07-09 10:00:29,039 :  11111111111
2021-07-09 10:00:29,084 :  启动成功
2021-07-09 10:00:30,085 :  --------------状态灯[3, 6]打开
2021-07-09 10:00:31,096 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb41752d0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 10:00:32,236 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1eee730>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 10:00:34,493 :  控制界面
2021-07-09 10:00:34,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 0xb1eeeb70>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 10:00:35,836 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb4175750>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 10:00:36,469 :  测试界面
2021-07-09 10:00:38,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 0xb1e60170>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 10:00:38,366 :  配置界面
2021-07-09 10:00:39,436 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41f47f0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 10:00:39,794 :  控制界面
2021-07-09 10:00:41,363 :  灯条已重置
2021-07-09 10:00:41,366 :  关闭成功
2021-07-09 10:00:41,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 0xb41f44b0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 10:00:48,175 :  测试界面
2021-07-09 10:00:51,644 :  配置界面
2021-07-09 10:00:59,092 :  颜色集合已同步至主板
2021-07-09 10:01:12,933 :  测试界面
2021-07-09 10:01:19,646 :  地址:all,颜色:red,已发送开启指令
2021-07-09 10:12:19,352 :  ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2021-07-09 10:12:21,383 :  11111111111
2021-07-09 10:12:21,428 :  启动成功
2021-07-09 10:12:22,430 :  --------------状态灯[3, 6]打开
2021-07-09 10:12:23,448 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb41b6710>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 10:12:24,556 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f36750>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 10:12:27,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 0xb1f36b90>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 10:12:28,156 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f36fd0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 10:12:30,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 0xb1f36df0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 10:12:31,756 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f36bd0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 10:12:34,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 0xb1f364d0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 10:12:35,356 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41b6650>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 10:12: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 0xb1ea5430>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 10:12:38,702 :  控制界面
2021-07-09 10:12:38,956 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea5870>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 10:12:41,229 :  灯条已重置
2021-07-09 10:12:41,232 :  关闭成功
2021-07-09 10:12:41,467 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb1f36810>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 10:12:47,943 :  测试界面
2021-07-09 10:12:50,679 :  库位扫描已开启
2021-07-09 10:13:07,998 :  测试界面
2021-07-09 10:13:35,518 :  灯条已重置
2021-07-09 10:13:35,519 :  库位扫描已关闭
2021-07-09 10:13:48,750 :  测试界面
2021-07-09 10:13:56,033 :  地址:all,颜色:red,已发送开启指令
2021-07-09 10:15:58,613 :  配置界面
2021-07-09 10:16:05,385 :  颜色集合已同步至主板
2021-07-09 10:16:09,457 :  控制界面
2021-07-09 10:16:10,517 :  测试界面
2021-07-09 10:16:17,454 :  灯条:all已关闭
2021-07-09 10:16:36,289 :  地址:all,颜色:red,已发送开启指令
2021-07-09 10:16:53,730 :  配置界面
2021-07-09 10:27:12,509 :  测试界面
2021-07-09 10:27:17,526 :  Exception on /indlineledon [POST]
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/serial/serialposix.py", line 537, in write
    n = os.write(self.fd, d)
OSError: [Errno 5] Input/output error

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/flask/app.py", line 2292, in wsgi_app
    response = self.full_dispatch_request()
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1815, in full_dispatch_request
    rv = self.handle_user_exception(e)
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1718, in handle_user_exception
    reraise(exc_type, exc_value, tb)
  File "/usr/lib/python3/dist-packages/flask/_compat.py", line 35, in reraise
    raise value
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1813, in full_dispatch_request
    rv = self.dispatch_request()
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1799, in dispatch_request
    return self.view_functions[rule.endpoint](**req.view_args)
  File "/prog/smartshelf/app/induction_test.py", line 148, in indlineledon
    ser.send_data(texts)
  File "/prog/smartshelf/app/utils/serial_communication.py", line 100, in send_data
    self.main_engine.write(data)
  File "/usr/lib/python3/dist-packages/serial/serialposix.py", line 571, in write
    raise SerialException('write failed: {}'.format(e))
serial.serialutil.SerialException: write failed: [Errno 5] Input/output error
2021-07-09 10:28:19,492 :  ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2021-07-09 10:28:21,515 :  11111111111
2021-07-09 10:28:21,560 :  启动成功
2021-07-09 10:28:22,563 :  --------------状态灯[3, 6]打开
2021-07-09 10:28:23,584 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb4b2de10>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 10:28:24,716 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed3790>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 10:32:53,602 :  ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2021-07-09 10:32:55,735 :  11111111111
2021-07-09 10:32:55,761 :  启动成功
2021-07-09 10:32:55,799 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb3869950>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 10:32:56,762 :  --------------状态灯[3, 6]打开
2021-07-09 10:32:58,378 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb20b37f0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 10:32:59,469 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e0e7d0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 10:33:01,446 :  控制界面
2021-07-09 10:33:01,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 0xb1e0ec10>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 10:33:03,068 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0bcf2b0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 10:33:05,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 0xb0bcf6f0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 10:33:06,669 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e0e4d0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 10:33:09,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 0xb1e0e9f0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 10:33:10,269 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0bcf1f0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 10:33: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 0xb0bcfcf0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 10:33:13,869 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0be02f0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 10:34:47,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 0xb1e0eab0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 10:34:48,303 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e0ecd0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 10:34:50,813 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb0bcf0f0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 10:34:51,903 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0bcfab0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 10:34:54,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 0xb0bcf5b0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 10:34:55,503 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0be0350>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 10:34:55,683 :  测试界面
2021-07-09 10:34:58,010 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb0bcf3d0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 10:34:59,103 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0bcfbd0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 10:35:01,613 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb0bcfbb0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 10:35:02,703 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0be05d0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 10:35:02,840 :  控制界面
2021-07-09 10:35:04,195 :  灯条已重置
2021-07-09 10:35:04,198 :  关闭成功
2021-07-09 10:35:05,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 0xb1e0ebd0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 10:35:18,704 :  测试界面
2021-07-09 10:35:29,754 :  地址:all,颜色:red,已发送开启指令
2021-07-09 10:36:13,281 :  配置界面
2021-07-09 10:36:19,795 :  颜色集合已同步至主板
2021-07-09 10:36:24,597 :  测试界面
2021-07-09 10:36:29,729 :  灯条:all已关闭
2021-07-09 10:36:37,051 :  地址:all,颜色:green,已发送开启指令
2021-07-09 10:40:46,968 :  ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2021-07-09 10:40:49,061 :  11111111111
2021-07-09 10:40:49,089 :  启动成功
2021-07-09 10:40:49,117 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb3898590>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 10:40:49,686 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb20f1830>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 10:40:50,090 :  --------------状态灯[3, 6]打开
2021-07-09 10:40:50,195 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1eb85d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 10:40:52,702 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb1eb83b0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 10:40:53,792 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1eb8a10>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 10:40:55,806 :  控制界面
2021-07-09 10:40:56,298 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb1eb8e50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 10:40:57,392 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1eb82d0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 10:40:58,054 :  控制界面
2021-07-09 10:40:59,900 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb1eb8ad0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 10:41:00,873 :  灯条已重置
2021-07-09 10:41:00,876 :  关闭成功
2021-07-09 10:41:00,993 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e68270>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 10:41:09,126 :  测试界面
2021-07-09 10:41:15,791 :  地址:all,颜色:red,已发送开启指令
2021-07-09 10:42:52,049 :  地址:1,颜色:red,已发送开启指令
2021-07-09 10:42:56,120 :  灯条:2已关闭
2021-07-09 10:43:00,789 :  灯条:all已关闭
2021-07-09 10:43:05,230 :  地址:1,颜色:red,已发送开启指令
2021-07-09 10:43:09,829 :  地址:2,颜色:red,已发送开启指令
2021-07-09 10:43:13,843 :  地址:3,颜色:red,已发送开启指令
2021-07-09 10:43:18,660 :  地址:4,颜色:red,已发送开启指令
2021-07-09 10:43:22,651 :  地址:5,颜色:red,已发送开启指令
2021-07-09 10:43:26,441 :  地址:6,颜色:red,已发送开启指令
2021-07-09 10:43:32,280 :  地址:7,颜色:red,已发送开启指令
2021-07-09 10:43:38,370 :  地址:8,颜色:red,已发送开启指令
2021-07-09 10:43:43,338 :  地址:9,颜色:red,已发送开启指令
2021-07-09 10:44:14,331 :  配置界面
2021-07-09 10:44:20,720 :  颜色集合已同步至主板
2021-07-09 10:44:25,581 :  控制界面
2021-07-09 10:44:31,209 :  测试界面
2021-07-09 10:44:35,590 :  灯条:all已关闭
2021-07-09 10:44:39,265 :  地址:all,颜色:red,已发送开启指令
2021-07-09 10:44:51,904 :  灯条:all已关闭
2021-07-09 10:46:30,659 :  ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2021-07-09 10:46:32,733 :  11111111111
2021-07-09 10:46:32,767 :  启动成功
2021-07-09 10:46:32,797 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb38be550>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 10:46:33,301 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb3898850>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 10:46:33,775 :  --------------状态灯[3, 6]打开
2021-07-09 10:46:33,807 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1eacc30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 10:46:34,314 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1eda050>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 10:46:34,818 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ed6d10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 10:46:35,323 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1eda490>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 10:46:35,827 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1eda8d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 10:46:36,331 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1edad10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 10:46:36,837 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e6c170>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 10:46:37,342 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e6c5b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 10:46:37,846 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1edabb0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 10:46:38,350 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1eda710>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 10:46:38,855 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1eda490>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 10:46:39,130 :  控制界面
2021-07-09 10:46:39,361 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1eda6b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 10:46:41,871 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb1eda9d0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 10:46:41,883 :  灯条已重置
2021-07-09 10:46:41,886 :  关闭成功
2021-07-09 10:46:43,454 :  控制界面
2021-07-09 10:46:43,922 :  测试界面
2021-07-09 10:46:49,495 :  地址:1,颜色:red,已发送开启指令
2021-07-09 10:46:51,092 :  地址:1,颜色:red,已发送开启指令
2021-07-09 10:46:51,263 :  地址:1,颜色:red,已发送开启指令
2021-07-09 10:46:51,446 :  地址:1,颜色:red,已发送开启指令
2021-07-09 10:46:51,783 :  灯条:1已关闭
2021-07-09 10:46:51,991 :  灯条:1已关闭
2021-07-09 10:46:52,156 :  灯条:1已关闭
2021-07-09 10:46:52,321 :  灯条:1已关闭
2021-07-09 11:01:35,040 :  灯条:3已关闭
2021-07-09 11:01:35,230 :  灯条:3已关闭
2021-07-09 11:01:35,385 :  灯条:3已关闭
2021-07-09 11:01:35,540 :  灯条:3已关闭
2021-07-09 11:01:35,705 :  灯条:3已关闭
2021-07-09 11:01:36,505 :  地址:3,颜色:red,已发送开启指令
2021-07-09 11:01:37,033 :  灯条:3已关闭
2021-07-09 11:01:37,189 :  灯条:3已关闭
2021-07-09 11:01:37,345 :  灯条:3已关闭
2021-07-09 11:01:59,947 :  ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2021-07-09 11:02:01,978 :  11111111111
2021-07-09 11:02:02,026 :  启动成功
2021-07-09 11:02:03,028 :  --------------状态灯[3, 6]打开
2021-07-09 11:02:04,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 0xb410c750>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 11:02:04,549 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb4127210>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:05,058 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e7d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:05,566 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ec10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:06,076 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd070>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:06,584 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd4b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:07,091 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e78970>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:07,599 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ee50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:08,108 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e8f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:08,615 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e730>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:09,123 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd2f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:09,632 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd8f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:10,140 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfdd30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:10,655 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb4127150>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:11,163 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e5f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:11,672 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ea10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:12,180 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c9d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:12,689 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfda10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:13,197 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd890>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:13,706 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd570>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:14,215 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e0f190>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:14,724 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c950>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:15,231 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ec90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:15,739 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e7f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:16,247 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd210>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:16,756 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd9d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:17,264 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfddd0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:17,773 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e0f030>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:18,283 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfdcd0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:18,791 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd970>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:19,300 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd250>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:19,808 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e8d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:20,316 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ea70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:20,825 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ee90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:21,333 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e78710>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:21,843 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cff0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:22,352 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8eb90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:22,860 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ee70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:23,368 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e650>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:23,877 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd4f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:24,385 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd970>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:24,894 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfdc90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:25,403 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e0f5d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:25,912 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd0d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:26,420 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd710>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:26,929 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e9f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:27,438 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e810>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:27,946 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ea90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:28,455 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410ca10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:28,963 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e0f330>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:29,473 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c710>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:29,981 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ec70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:30,490 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e850>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:30,998 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e8d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:31,507 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd0f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:32,015 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfdc70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:32,523 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e0f450>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:33,033 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfde70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:33,542 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfda90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:34,050 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfdb90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:34,558 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8eaf0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:35,067 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ed50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:35,575 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c370>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:36,084 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e78970>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:36,594 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e0fa10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:37,102 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8eb10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:37,610 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e710>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:38,119 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8eb30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:38,627 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfda10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:39,136 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd130>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:39,644 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd0d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:40,153 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e0f770>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:40,663 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfdb70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:41,171 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfdc50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:41,680 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd050>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:42,188 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e4d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:42,696 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e970>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:43,205 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cfb0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:43,713 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e0f850>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:44,228 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c930>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:44,737 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ef30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:45,245 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e930>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:45,753 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8eaf0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:46,262 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd2f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:46,770 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd970>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:47,278 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e0fdd0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:47,789 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e0fe50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:48,297 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd7f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:48,806 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfdbf0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:49,320 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e8d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:49,829 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ebd0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:50,337 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ecb0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:50,846 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e786d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:51,354 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e0fbb0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:51,864 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cf90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:52,372 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e890>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:52,881 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e590>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:53,389 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd650>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:53,897 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfdf30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:54,409 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd9b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:54,917 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e0fc50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:55,428 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e7b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:55,936 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e9f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:56,445 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e890>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:56,953 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c750>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:57,462 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e0fdb0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:57,970 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e0fb10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:58,479 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e0f090>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:58,987 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfdd10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:02:59,500 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c9b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:00,008 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e0f110>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:00,516 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e0f6b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:01,025 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e0fc10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:01,533 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e0f7f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:02,042 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e990>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:02,550 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e810>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:03,060 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfdd10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:03,568 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ea70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:04,077 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cd50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:04,588 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb4127190>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:05,097 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfdad0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:05,605 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd170>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:06,114 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd5d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:06,622 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24210>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:07,132 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c9b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:07,640 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ebb0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:08,149 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8eb70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:08,657 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e730>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:09,166 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfdcd0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:09,674 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd870>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:10,183 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd950>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:10,692 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfded0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:11,201 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ef90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:11,709 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ea90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:12,217 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfdd10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:12,726 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd890>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:13,234 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1dfd2b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:13,743 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c8d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:14,251 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24250>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:14,761 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cf90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:15,274 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8eb10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:15,780 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8eb70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:16,289 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e6d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:16,797 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e244b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:17,306 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e248f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:17,814 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24d30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:18,324 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a190>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:18,833 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e5f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:19,341 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e970>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:19,849 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24bf0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:20,358 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e247b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:20,866 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e242d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:21,375 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c730>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:21,883 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a0b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:22,393 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cf50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:22,901 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e890>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:23,410 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e730>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:23,918 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8efd0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:24,427 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a4b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:24,935 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a8f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:25,446 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1ad30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:25,956 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e240d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:26,465 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e6d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:26,973 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e850>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:27,481 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1ab70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:27,990 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a730>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:28,498 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a170>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:29,006 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c910>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:29,515 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24270>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:30,025 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c9b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:30,536 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ee10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:31,045 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e810>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:31,553 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e8b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:32,061 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24410>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:32,570 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24950>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:33,078 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24e70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:33,588 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a0d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:34,096 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e6f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:34,608 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8eff0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:35,117 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24d10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:35,628 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24750>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:36,137 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e242b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:36,645 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c730>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:37,154 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a4f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:37,663 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c710>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:38,172 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ee50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:38,680 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ed50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:39,188 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ef50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:39,697 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a510>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:40,205 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a9d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:40,716 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1ae70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:41,226 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24210>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:41,735 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e950>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:42,243 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ee30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:42,752 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c910>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:43,260 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1ae90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:43,768 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1aa50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:44,277 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a610>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:44,785 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e248b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:45,295 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c750>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:45,807 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ed10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:46,316 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e9b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:46,824 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e830>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:47,333 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a4b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:47,841 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a8b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:48,349 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a650>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:48,859 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24030>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:49,368 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8eaf0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:49,876 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ebb0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:50,385 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1aff0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:50,896 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a950>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:51,404 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a230>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:51,913 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cff0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:52,421 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e240d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:52,931 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cf50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:53,439 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ef30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:53,948 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8eb50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:54,456 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e530>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:54,965 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24370>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:55,473 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24730>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:55,985 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24ab0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:56,494 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a050>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:57,003 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e950>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:57,511 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ed50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:58,019 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e249b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:58,528 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24070>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:59,036 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24350>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:03:59,545 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c730>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:00,053 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a1b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:00,563 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c950>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:01,074 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e770>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:01,583 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e7d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:02,091 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ec10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:02,599 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a1f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:03,108 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a950>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:03,616 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1aef0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:04,126 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24110>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:04,635 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e7b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:05,143 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e890>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:05,652 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1af70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:06,163 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a9d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:06,672 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a290>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:07,180 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c8d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:07,688 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e248d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:08,198 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c930>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:08,707 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e750>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:09,215 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ea10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:09,724 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e910>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:10,232 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24850>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:10,740 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24890>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:11,251 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24a70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:11,761 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a0d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:12,270 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e8b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:12,778 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ec70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:13,287 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e247d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:13,795 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e240b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:14,304 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24910>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:14,812 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c730>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:15,321 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a770>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:15,830 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c910>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:16,342 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e5f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:16,850 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ef10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:17,358 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ef50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:17,867 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a1d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:18,375 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1ad10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:18,887 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1af90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:19,397 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24490>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:19,906 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e4d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:20,414 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8eab0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:20,923 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1ae50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:21,434 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a250>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:21,942 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a410>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:22,451 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c8d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:22,959 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24790>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:23,469 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c710>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:23,977 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ecb0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:24,486 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ed50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:24,994 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e530>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:25,503 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e249f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:26,011 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24630>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:26,524 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24bb0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:27,033 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a070>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:27,542 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ec10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:28,050 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ed10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:28,558 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c730>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:29,067 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e247b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:29,575 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24390>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:30,084 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e242d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:30,592 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a8b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:31,102 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cf70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:31,610 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ec90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:32,119 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e8d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:32,627 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e9f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:33,136 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24850>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:33,644 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24e50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:34,152 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24310>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:34,662 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a4d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:35,171 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ef50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:35,679 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ea50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:36,188 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24c10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:36,696 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24970>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:37,207 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e242f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:37,716 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cff0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:38,224 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a0d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:38,734 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c930>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:39,242 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ef30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:39,751 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ea10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:40,259 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e7d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:40,767 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a2f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:41,276 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1ab70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:41,785 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a350>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:42,297 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24410>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:42,805 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e530>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:43,314 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e970>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:43,822 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a890>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:44,331 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a630>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:44,839 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a330>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:45,347 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c8d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:45,856 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24330>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:46,366 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c9d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:46,874 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e670>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:47,383 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e6b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:47,891 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ecf0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:48,400 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e243f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:48,908 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24970>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:49,416 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24f10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:49,926 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a210>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:50,435 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e5b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:50,943 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8eb50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:51,451 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24ed0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:51,960 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24630>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:52,471 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24150>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:52,980 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c3b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:53,488 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a6b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:53,998 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c970>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:54,506 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ee50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:55,015 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ebb0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:55,523 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e790>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:56,032 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a510>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:56,540 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a090>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:57,048 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1acf0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:57,562 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24490>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:58,071 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ec30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:58,579 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ee90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:59,088 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1ab90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:04:59,596 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a110>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:00,104 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1abf0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:00,613 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c8d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:01,121 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24dd0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:01,631 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c730>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:02,139 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e650>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:02,652 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ef10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:03,160 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e810>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:03,673 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24230>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:04,182 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24c90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:04,690 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24a90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:05,200 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a470>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:05,708 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8eaf0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:06,217 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ec90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:06,725 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24e70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:07,234 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e243d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:07,747 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e248f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:08,256 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c3b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:08,764 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a3b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:09,274 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c710>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:09,783 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e770>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:10,291 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e970>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:10,800 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e7d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:11,308 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a910>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:11,816 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a150>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:12,325 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a650>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:12,838 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24290>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:13,346 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ecf0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:13,854 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e990>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:14,363 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c8d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:14,871 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a9f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:15,380 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a610>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:15,888 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a830>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:16,397 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24e50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:16,906 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c4b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:17,415 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ecb0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:17,926 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e8f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:18,434 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8eb90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:18,943 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a510>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:19,452 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1ac90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:19,960 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a1b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:20,470 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e242b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:20,979 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e810>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:21,487 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e930>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:21,996 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a9b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:22,504 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a850>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:23,015 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a6d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:23,524 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cff0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:24,032 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24490>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:24,542 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c970>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:25,051 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ef30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:25,559 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ebb0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:26,067 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e6b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:26,576 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e244b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:27,084 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e247d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:27,593 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e248b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:28,105 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a1d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:28,614 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e7d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:29,122 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ea50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:29,631 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24b30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:30,139 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24430>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:30,648 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e240d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:31,156 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c3b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:31,665 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a170>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:32,174 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cf30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:32,683 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e870>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:33,191 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e4f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:33,700 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8eb30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:34,208 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a050>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:34,717 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a850>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:35,225 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1acb0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:35,735 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24210>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:36,244 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ed30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:36,752 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ea10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:37,260 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a870>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:37,769 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a150>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:38,277 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a0f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:38,786 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cf90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:39,295 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24810>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:39,804 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c950>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:40,313 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ee10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:40,821 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ea90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:41,330 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e610>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:41,838 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e249f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:42,346 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e240f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:42,855 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24b50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:43,365 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a470>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:43,873 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e830>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:44,382 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e850>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:44,890 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24bd0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:45,398 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e245f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:45,907 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24cb0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:46,415 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c3b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:46,924 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1aad0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:47,434 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c8d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:47,945 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ef90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:48,454 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ef10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:48,963 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e9f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:49,471 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a030>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:49,980 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1aab0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:50,488 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a370>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:50,998 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24d70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:51,507 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ec50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:52,015 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ecb0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:52,524 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1af90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:53,032 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a230>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:53,541 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a750>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:54,049 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cf90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:54,558 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24830>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:55,068 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c710>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:55,576 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e670>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:56,085 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ea50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:56,593 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e6b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:57,102 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e247f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:57,610 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24170>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:58,119 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24310>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:58,629 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a4b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:59,137 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8eb30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:05:59,645 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8eb10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:00,154 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c3b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:00,662 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e245b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:01,171 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e242d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:01,679 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24250>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:02,188 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1ac90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:02,698 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cef0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:03,207 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e770>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:03,715 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ebf0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:04,224 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e9d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:04,732 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e249f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:05,241 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24af0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:05,749 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24330>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:06,259 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a410>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:06,767 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e9f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:07,276 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e750>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:07,785 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24070>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:08,293 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24a50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:08,801 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24690>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:09,310 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cff0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:09,818 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a470>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:10,328 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c950>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:10,837 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ef30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:11,345 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ea90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:11,854 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e4f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:12,362 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a290>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:12,871 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1ab90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:13,379 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a8b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:13,889 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24230>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:14,398 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e6b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:14,906 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e930>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:15,415 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1acd0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:15,923 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a450>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:16,431 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a0d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:16,940 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cf90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:17,448 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24910>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:17,958 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410ca10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:18,467 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e5d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:18,975 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ef50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:19,484 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8eeb0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:19,992 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24410>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:20,501 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24a50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:21,009 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24570>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:21,519 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a070>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:22,027 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8edd0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:22,536 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ebb0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:23,047 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24a10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:23,555 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24170>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:24,064 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24050>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:24,572 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cfb0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:25,081 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a2b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:25,591 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c9d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:26,099 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e5f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:26,607 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e630>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:27,116 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e910>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:27,624 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a910>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:28,133 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a390>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:28,641 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1add0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:29,151 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24d70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:29,660 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e4d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:30,168 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8eb70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:30,677 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1aa30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:31,186 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1aa50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:31,694 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1ac30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:32,203 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cf90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:32,711 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24b10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:33,221 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c3b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:33,732 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e950>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:34,241 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ef10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:34,750 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8eb90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:35,258 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24090>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:35,767 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24a30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:36,275 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e246f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:36,785 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1abd0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:37,294 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e730>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:37,803 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e770>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:38,311 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24a90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:38,820 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e242f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:39,328 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24bf0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:39,837 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cfb0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:40,345 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1aa70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:40,855 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c710>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:41,364 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e870>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:41,872 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e930>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:42,380 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e4f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:42,889 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a810>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:43,397 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a3d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:43,906 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a1b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:44,415 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24850>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:44,926 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8eeb0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:45,435 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e890>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:45,943 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cf90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:46,452 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a270>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:46,960 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a830>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:47,468 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a8d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:47,977 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24af0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:48,487 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c450>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:48,995 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e670>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:49,504 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ec10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:50,015 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ead0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:50,524 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a910>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:51,032 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a710>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:51,540 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a170>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:52,050 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e248f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:52,558 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8eb90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:53,067 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ee50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:53,575 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a630>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:54,083 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1ab10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:54,592 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a790>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:55,102 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cff0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:55,611 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24d70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:56,121 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c9d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:56,629 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ef30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:57,138 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e630>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:57,646 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ef50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:58,155 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24150>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:58,663 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24bd0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:59,171 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24e50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:06:59,681 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a030>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:00,192 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e4f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:00,701 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e750>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:01,209 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24550>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:01,718 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e241d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:02,226 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24490>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:02,735 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cfb0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:03,244 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1abf0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:03,754 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c890>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:04,262 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ef70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:04,770 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e810>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:05,281 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e510>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:05,789 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a1d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:06,298 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1ab10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:06,806 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a950>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:07,316 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24290>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:07,825 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e6d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:08,333 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ea90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:08,842 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1af70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:09,350 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a3d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:09,859 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a5f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:10,367 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cf50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:10,876 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24670>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:11,386 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cf30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:11,894 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e650>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:12,402 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ed90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:12,911 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e790>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:13,419 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e247f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:13,928 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24590>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:14,436 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24b70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:14,946 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1abd0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:15,454 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8eaf0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:15,965 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e690>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:16,473 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24d10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:16,982 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24390>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:17,490 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24c50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:17,999 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cfb0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:18,508 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1ad70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:19,019 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cf90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:19,528 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e530>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:20,036 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ef10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:20,545 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e9d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:21,055 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a690>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:21,564 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1ae30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:22,073 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1aff0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:22,582 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24ab0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:23,091 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ee70>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:23,599 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e670>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:24,108 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a370>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:24,616 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a6d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:25,125 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1ad90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:25,633 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cf50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:26,144 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24450>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:26,654 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c710>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:27,162 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e5d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:27,671 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e750>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:28,179 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ef50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:28,687 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24f50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:29,196 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24650>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:29,704 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24330>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:30,214 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a510>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:30,722 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e510>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:31,231 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8eb50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:31,739 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cfb0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:32,248 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e244f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:32,756 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24250>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:33,264 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e246d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:33,773 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a710>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:34,283 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cfd0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:34,791 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e870>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:35,300 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ecf0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:35,808 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e590>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:36,319 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e247f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:36,828 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24610>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:37,336 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24910>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:37,846 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a750>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:38,354 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e9d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:38,863 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ee10>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:39,371 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24430>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:39,879 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24c30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:40,388 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24930>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:40,896 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cff0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:41,407 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1abd0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:41,917 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cf30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:42,426 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ef30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:42,934 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ed90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:43,442 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e810>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:43,951 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a0f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:44,459 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1aa30>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:44,967 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1ac90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:45,477 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24090>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:45,986 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ef50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:46,496 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8ee50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:47,005 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a6f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:47,513 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a430>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:48,021 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e1a470>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:48,530 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410cf50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:49,038 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24cb0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:49,548 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb410c9b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:50,057 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8edf0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:50,565 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8e9f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:51,074 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e8eff0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:07:51,584 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e24230>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:01:41,117 :  ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2021-07-09 11:01:43,284 :  11111111111
2021-07-09 11:01:43,310 :  启动成功
2021-07-09 11:01:43,380 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb389f810>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:01:43,888 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb3893bd0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:01:44,312 :  --------------状态灯[3, 6]打开
2021-07-09 11:01:44,393 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e3d090>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:01:44,898 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e3d4d0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:01:45,403 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1eb7c90>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:01:45,906 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e3d310>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:01:46,411 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e3d910>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:01:46,921 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e3dd50>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:01:47,426 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e4f1b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:01:47,930 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e4f5f0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))
2021-07-09 11:01:49,168 :  控制界面
2021-07-09 11:01:50,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 0xb1e99e50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 11:01:51,565 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e3da50>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 11:01:54,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 0xb0cc4390>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 11:01:55,165 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1eb7e70>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 11:01:57,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 0xb1e4f890>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 11:01:58,765 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cc4310>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 11:02:01,275 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb0cc47f0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 11:02:02,365 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cc4c30>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 11:11:03,671 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb0cd4090>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 11:11:04,760 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea90f0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 11:11:07,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 0xb1e4f4b0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 11:11:08,361 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e3d770>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 11:11:10,871 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb0cc4ed0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 11:11:11,961 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cc4bf0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 11:11:14,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 0xb0cc46d0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 11:11:15,561 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cc41d0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 11:11:18,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 0xb1e3d110>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 11:11:19,161 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cc4270>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 11:11:21,671 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb0cc47b0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 11:11:22,761 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cc4c70>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 11:11:25,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 0xb1ea90f0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 11:11:26,361 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e4f2d0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 11:11:28,871 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb1eb7d30>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 11:11:29,962 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cd44d0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 11:11:32,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 0xb1e4f950>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 11:11:33,561 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cc4e90>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 11:11:36,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 0xb0cc4450>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 11:11:37,161 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cc46f0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 11:11:39,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 0xb0cc4150>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 11:11:40,761 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e3d670>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 11:11:43,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 0xb0cd43b0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 11:11:44,361 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e3d670>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 11:11:46,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 0xb0cc41b0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 11:11:47,961 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cc4b50>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 11:11:50,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 0xb0cc4d50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 11:11:51,561 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e4f8f0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 11:11:54,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 0xb1e4f7f0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 11:11:55,161 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb0cd4050>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 11:11:57,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 0xb1e4f2b0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 11:11:58,761 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e4f310>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 11:32:58,109 :  ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2021-07-09 11:33:00,139 :  11111111111
2021-07-09 11:33:00,188 :  启动成功
2021-07-09 11:33:01,191 :  --------------状态灯[3, 6]打开
2021-07-09 11:33:02,203 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb40f86b0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 11:33:03,321 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e756f0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 11:33:05,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 0xb1e75b30>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 11:33:06,393 :  测试界面
2021-07-09 11:33:06,920 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e75f70>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 11:33:08,032 :  控制界面
2021-07-09 11:33:09,353 :  关闭成功
2021-07-09 11:33:09,430 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb4147710>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 11:33:24,107 :  测试界面
2021-07-09 11:33:29,070 :  Exception on /indlineledon [POST]
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/flask/app.py", line 2292, in wsgi_app
    response = self.full_dispatch_request()
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1815, in full_dispatch_request
    rv = self.handle_user_exception(e)
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1718, in handle_user_exception
    reraise(exc_type, exc_value, tb)
  File "/usr/lib/python3/dist-packages/flask/_compat.py", line 35, in reraise
    raise value
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1813, in full_dispatch_request
    rv = self.dispatch_request()
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1799, in dispatch_request
    return self.view_functions[rule.endpoint](**req.view_args)
  File "/prog/smartshelf/app/induction_test.py", line 148, in indlineledon
    texts = process_linetest(data)
  File "/prog/smartshelf/app/induction_test.py", line 131, in process_linetest
    texts = deal_allcommand(color)
  File "/prog/smartshelf/app/induction_test.py", line 117, in deal_allcommand
    texts.append(str(json.dumps(text), separators=(',',':')) + '\n')
TypeError: 'separators' is an invalid keyword argument for str()
2021-07-09 11:38:23,003 :  ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2021-07-09 11:38:25,033 :  11111111111
2021-07-09 11:38:25,079 :  启动成功
2021-07-09 11:38:26,082 :  --------------状态灯[3, 6]打开
2021-07-09 11:38:26,537 :  控制界面
2021-07-09 11:38:27,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 0xb41ace50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 11:38:28,201 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb167d6b0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 11:38:28,649 :  指令:['{"ADDR":"1","ledrange":[16,1,100]}\n', '{"ADDR":"2","ledrange":[16,1,100]}\n', '{"ADDR":"3","ledrange":[16,1,100]}\n', '{"ADDR":"4","ledrange":[16,1,100]}\n', '{"ADDR":"5","ledrange":[16,1,100]}\n', '{"ADDR":"6","ledrange":[16,1,100]}\n', '{"ADDR":"7","ledrange":[16,1,100]}\n', '{"ADDR":"8","ledrange":[16,1,100]}\n', '{"ADDR":"9","ledrange":[16,1,100]}\n']
2021-07-09 11:38:28,653 :  灯条已重置
2021-07-09 11:38:28,656 :  关闭成功
2021-07-09 11:38:49,075 :  测试界面
2021-07-09 11:38:53,393 :  指令:['{"ADDR":"1","ledrange":[1,1,100]}\n', '{"ADDR":"2","ledrange":[1,1,100]}\n', '{"ADDR":"3","ledrange":[1,1,100]}\n', '{"ADDR":"4","ledrange":[1,1,100]}\n', '{"ADDR":"5","ledrange":[1,1,100]}\n', '{"ADDR":"6","ledrange":[1,1,100]}\n', '{"ADDR":"7","ledrange":[1,1,100]}\n', '{"ADDR":"8","ledrange":[1,1,100]}\n', '{"ADDR":"9","ledrange":[1,1,100]}\n']
2021-07-09 11:38:53,397 :  地址:all,颜色:red,已发送开启指令
2021-07-09 11:40:30,010 :  指令:{"ADDR": "1", "ledrange": [1, 1, 100]}

2021-07-09 11:40:30,011 :  地址:1,颜色:red,已发送开启指令
2021-07-09 11:41:06,261 :  指令:{"ADDR": "2", "ledrange": [1, 1, 100]}

2021-07-09 11:41:06,262 :  地址:2,颜色:red,已发送开启指令
2021-07-09 11:41:12,587 :  串口名称:ttyUSB0
2021-07-09 11:41:12,587 :  串口名称:ttyAMA0
2021-07-09 11:41:12,588 :  串口0:ttyUSB0/串口1:ttyAMA0/
2021-07-09 11:41:14,684 :  配置界面
2021-07-09 11:42:06,745 :  控制界面
2021-07-09 11:42:07,619 :  测试界面
2021-07-09 11:42:11,818 :  指令:['{"ADDR":"1","ledrange":[16,1,100]}\n', '{"ADDR":"2","ledrange":[16,1,100]}\n', '{"ADDR":"3","ledrange":[16,1,100]}\n', '{"ADDR":"4","ledrange":[16,1,100]}\n', '{"ADDR":"5","ledrange":[16,1,100]}\n', '{"ADDR":"6","ledrange":[16,1,100]}\n', '{"ADDR":"7","ledrange":[16,1,100]}\n', '{"ADDR":"8","ledrange":[16,1,100]}\n', '{"ADDR":"9","ledrange":[16,1,100]}\n']
2021-07-09 11:42:11,822 :  灯条:all已关闭
2021-07-09 11:42:14,567 :  指令:['{"ADDR":"1","ledrange":[1,1,100]}\n', '{"ADDR":"2","ledrange":[1,1,100]}\n', '{"ADDR":"3","ledrange":[1,1,100]}\n', '{"ADDR":"4","ledrange":[1,1,100]}\n', '{"ADDR":"5","ledrange":[1,1,100]}\n', '{"ADDR":"6","ledrange":[1,1,100]}\n', '{"ADDR":"7","ledrange":[1,1,100]}\n', '{"ADDR":"8","ledrange":[1,1,100]}\n', '{"ADDR":"9","ledrange":[1,1,100]}\n']
2021-07-09 11:42:14,571 :  地址:all,颜色:red,已发送开启指令
2021-07-09 11:44:17,551 :  配置界面
2021-07-09 11:45:04,391 :  颜色集合已同步至主板
2021-07-09 11:45:16,039 :  测试界面
2021-07-09 11:45:22,473 :  指令:['{"ADDR":"1","ledrange":[1,1,100]}\n', '{"ADDR":"2","ledrange":[1,1,100]}\n', '{"ADDR":"3","ledrange":[1,1,100]}\n', '{"ADDR":"4","ledrange":[1,1,100]}\n', '{"ADDR":"5","ledrange":[1,1,100]}\n', '{"ADDR":"6","ledrange":[1,1,100]}\n', '{"ADDR":"7","ledrange":[1,1,100]}\n', '{"ADDR":"8","ledrange":[1,1,100]}\n', '{"ADDR":"9","ledrange":[1,1,100]}\n']
2021-07-09 11:45:22,477 :  地址:all,颜色:red,已发送开启指令
2021-07-09 13:22:43,932 :  控制界面
2021-07-09 13:36:38,763 :  ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2021-07-09 13:36:40,793 :  11111111111
2021-07-09 13:36:40,841 :  启动成功
2021-07-09 13:36:41,843 :  --------------状态灯[3, 6]打开
2021-07-09 13:36:42,858 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb417c610>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 13:36:43,961 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb58c3050>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 13:36:46,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 0xb1e818f0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 13:36:47,561 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e81d30>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 13:36:48,996 :  控制界面
2021-07-09 13:36:50,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 0xb1e93190>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 13:36:50,402 :  指令:['{"ADDR":"1","ledrange":[16,1,100]}\n', '{"ADDR":"2","ledrange":[16,1,100]}\n', '{"ADDR":"3","ledrange":[16,1,100]}\n', '{"ADDR":"4","ledrange":[16,1,100]}\n', '{"ADDR":"5","ledrange":[16,1,100]}\n', '{"ADDR":"6","ledrange":[16,1,100]}\n', '{"ADDR":"7","ledrange":[16,1,100]}\n', '{"ADDR":"8","ledrange":[16,1,100]}\n', '{"ADDR":"9","ledrange":[16,1,100]}\n']
2021-07-09 13:36:50,406 :  灯条已重置
2021-07-09 13:36:50,409 :  关闭成功
2021-07-09 13:36:53,049 :  测试界面
2021-07-09 13:36:54,864 :  库位扫描已开启
2021-07-09 13:37:06,706 :  指令:['{"ADDR":"1","ledrange":[16,1,100]}\n', '{"ADDR":"2","ledrange":[16,1,100]}\n', '{"ADDR":"3","ledrange":[16,1,100]}\n', '{"ADDR":"4","ledrange":[16,1,100]}\n', '{"ADDR":"5","ledrange":[16,1,100]}\n', '{"ADDR":"6","ledrange":[16,1,100]}\n', '{"ADDR":"7","ledrange":[16,1,100]}\n', '{"ADDR":"8","ledrange":[16,1,100]}\n', '{"ADDR":"9","ledrange":[16,1,100]}\n']
2021-07-09 13:37:06,710 :  灯条已重置
2021-07-09 13:37:06,711 :  库位扫描已关闭
2021-07-09 13:38:57,676 :  ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2021-07-09 13:38:59,706 :  11111111111
2021-07-09 13:38:59,752 :  启动成功
2021-07-09 13:39:00,753 :  --------------状态灯[3, 6]打开
2021-07-09 13:39:01,768 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb4125290>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 13:39:02,921 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1eb4710>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 13:39:05,435 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb1eb4b50>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 13:39:06,521 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1eb4f90>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 13:39:09,032 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb1eb4db0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 13:39:10,121 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1eb44f0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 13:39:10,478 :  控制界面
2021-07-09 13:39:12,222 :  指令:['{"ADDR":"1","ledrange":[16,1,100]}\n', '{"ADDR":"2","ledrange":[16,1,100]}\n', '{"ADDR":"3","ledrange":[16,1,100]}\n', '{"ADDR":"4","ledrange":[16,1,100]}\n', '{"ADDR":"5","ledrange":[16,1,100]}\n', '{"ADDR":"6","ledrange":[16,1,100]}\n', '{"ADDR":"7","ledrange":[16,1,100]}\n', '{"ADDR":"8","ledrange":[16,1,100]}\n', '{"ADDR":"9","ledrange":[16,1,100]}\n']
2021-07-09 13:39:12,226 :  灯条已重置
2021-07-09 13:39:12,229 :  关闭成功
2021-07-09 13:39:12,629 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb4aecc30>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 13:39:14,582 :  测试界面
2021-07-09 13:41:07,261 :  ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2021-07-09 13:41:09,293 :  11111111111
2021-07-09 13:41:09,343 :  启动成功
2021-07-09 13:41:10,344 :  --------------状态灯[3, 6]打开
2021-07-09 13:41:11,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 0xb41c3650>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 13:41:12,441 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb41c3f10>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 13:41:14,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 0xb1f32730>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 13:41:16,041 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f32b70>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 13:41:18,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 0xb1f32fb0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 13:41:19,641 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ea3410>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 13:41:21,768 :  控制界面
2021-07-09 13:41:22,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 0xb1f1d630>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 13:41:23,241 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f32510>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 13:41:23,284 :  指令:['{"ADDR":"1","ledrange":[16,1,100]}\n', '{"ADDR":"2","ledrange":[16,1,100]}\n', '{"ADDR":"3","ledrange":[16,1,100]}\n', '{"ADDR":"4","ledrange":[16,1,100]}\n', '{"ADDR":"5","ledrange":[16,1,100]}\n', '{"ADDR":"6","ledrange":[16,1,100]}\n', '{"ADDR":"7","ledrange":[16,1,100]}\n', '{"ADDR":"8","ledrange":[16,1,100]}\n', '{"ADDR":"9","ledrange":[16,1,100]}\n']
2021-07-09 13:41:23,288 :  灯条已重置
2021-07-09 13:41:23,291 :  关闭成功
2021-07-09 13:45:48,469 :  ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2021-07-09 13:45:50,498 :  11111111111
2021-07-09 13:45:50,544 :  启动成功
2021-07-09 13:45:51,548 :  --------------状态灯[3, 6]打开
2021-07-09 13:45:52,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 0xb417e730>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 13:45:53,641 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ee9b70>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 13:45:54,285 :  控制界面
2021-07-09 13:45:55,645 :  指令:['{"ADDR":"1","ledrange":[16,1,100]}\n', '{"ADDR":"2","ledrange":[16,1,100]}\n', '{"ADDR":"3","ledrange":[16,1,100]}\n', '{"ADDR":"4","ledrange":[16,1,100]}\n', '{"ADDR":"5","ledrange":[16,1,100]}\n', '{"ADDR":"6","ledrange":[16,1,100]}\n', '{"ADDR":"7","ledrange":[16,1,100]}\n', '{"ADDR":"8","ledrange":[16,1,100]}\n', '{"ADDR":"9","ledrange":[16,1,100]}\n']
2021-07-09 13:45:55,649 :  灯条已重置
2021-07-09 13:45:55,652 :  关闭成功
2021-07-09 13:45:56,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 0xb4198210>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 13:45:58,458 :  配置界面
2021-07-09 13:46:08,851 :  颜色集合同步状态:['sensor Time out', 'ADDR:2 done', 'ADDR:3 done', 'ADDR:4 done', 'ADDR:5 done', 'ADDR:6 done', 'sensor Time out', 'ADDR:8 done', 'sensor Time out']
2021-07-09 13:47:07,241 :  测试界面
2021-07-09 13:47:41,155 :  配置界面
2021-07-09 13:47:45,427 :  测试界面
2021-07-09 13:56:47,833 :  ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2021-07-09 13:56:49,864 :  11111111111
2021-07-09 13:56:49,910 :  启动成功
2021-07-09 13:56:50,913 :  --------------状态灯[3, 6]打开
2021-07-09 13:56:51,923 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb41be6f0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 13:56:53,001 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f31770>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 13:56:53,898 :  控制界面
2021-07-09 13:56:55,256 :  指令:['{"ADDR":"1","ledrange":[16,1,100]}\n', '{"ADDR":"2","ledrange":[16,1,100]}\n', '{"ADDR":"3","ledrange":[16,1,100]}\n', '{"ADDR":"4","ledrange":[16,1,100]}\n', '{"ADDR":"5","ledrange":[16,1,100]}\n', '{"ADDR":"6","ledrange":[16,1,100]}\n', '{"ADDR":"7","ledrange":[16,1,100]}\n', '{"ADDR":"8","ledrange":[16,1,100]}\n', '{"ADDR":"9","ledrange":[16,1,100]}\n']
2021-07-09 13:56:55,261 :  灯条已重置
2021-07-09 13:56:55,264 :  关闭成功
2021-07-09 13:56:55,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 0xb1f31bb0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 13:57:06,821 :  Exception on /adminaddr_test [POST]
Traceback (most recent call last):
  File "/usr/lib/python3/dist-packages/flask/app.py", line 2292, in wsgi_app
    response = self.full_dispatch_request()
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1815, in full_dispatch_request
    rv = self.handle_user_exception(e)
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1718, in handle_user_exception
    reraise(exc_type, exc_value, tb)
  File "/usr/lib/python3/dist-packages/flask/_compat.py", line 35, in reraise
    raise value
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1813, in full_dispatch_request
    rv = self.dispatch_request()
  File "/usr/lib/python3/dist-packages/flask/app.py", line 1799, in dispatch_request
    return self.view_functions[rule.endpoint](**req.view_args)
  File "/prog/smartshelf/app/induction_admin.py", line 27, in adminaddr_test
    command = addr + '\n'
TypeError: unsupported operand type(s) for +: 'dict' and 'str'
2021-07-09 13:57:58,881 :  ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2021-07-09 13:58:00,913 :  11111111111
2021-07-09 13:58:00,962 :  启动成功
2021-07-09 13:58:01,965 :  --------------状态灯[3, 6]打开
2021-07-09 13:58:02,978 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb4134690>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 13:58:04,121 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e45cd0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 13:58:05,236 :  控制界面
2021-07-09 13:58:06,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 0xb1e65130>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 13:58:07,451 :  指令:['{"ADDR":"1","ledrange":[16,1,100]}\n', '{"ADDR":"2","ledrange":[16,1,100]}\n', '{"ADDR":"3","ledrange":[16,1,100]}\n', '{"ADDR":"4","ledrange":[16,1,100]}\n', '{"ADDR":"5","ledrange":[16,1,100]}\n', '{"ADDR":"6","ledrange":[16,1,100]}\n', '{"ADDR":"7","ledrange":[16,1,100]}\n', '{"ADDR":"8","ledrange":[16,1,100]}\n', '{"ADDR":"9","ledrange":[16,1,100]}\n']
2021-07-09 13:58:07,455 :  灯条已重置
2021-07-09 13:58:07,459 :  关闭成功
2021-07-09 13:58:07,721 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb217eb90>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 13:59:32,085 :  测试界面
2021-07-09 13:59:41,612 :  库位扫描已开启
2021-07-09 13:59:50,262 :  指令:['{"ADDR":"1","ledrange":[16,1,100]}\n', '{"ADDR":"2","ledrange":[16,1,100]}\n', '{"ADDR":"3","ledrange":[16,1,100]}\n', '{"ADDR":"4","ledrange":[16,1,100]}\n', '{"ADDR":"5","ledrange":[16,1,100]}\n', '{"ADDR":"6","ledrange":[16,1,100]}\n', '{"ADDR":"7","ledrange":[16,1,100]}\n', '{"ADDR":"8","ledrange":[16,1,100]}\n', '{"ADDR":"9","ledrange":[16,1,100]}\n']
2021-07-09 13:59:50,266 :  灯条已重置
2021-07-09 13:59:50,267 :  库位扫描已关闭
2021-07-09 14:00:18,092 :  配置界面
2021-07-09 14:00:19,019 :  测试界面
2021-07-09 14:00:19,975 :  控制界面
2021-07-09 14:00:20,951 :  测试界面
2021-07-09 14:00:24,402 :  配置界面
2021-07-09 14:00:35,377 :  颜色集合同步状态:['sensor Time out', 'ADDR:2 done', 'ADDR:3 done', 'ADDR:4 done', 'ADDR:5 done', 'ADDR:6 done', 'sensor Time out', 'ADDR:8 done', 'sensor Time out']
2021-07-09 14:01:25,514 :  测试界面
2021-07-09 14:04:59,596 :  ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2021-07-09 14:05:01,628 :  11111111111
2021-07-09 14:05:01,674 :  启动成功
2021-07-09 14:05:02,677 :  --------------状态灯[3, 6]打开
2021-07-09 14:05:03,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 0xb4199590>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 14:05:03,782 :  控制界面
2021-07-09 14:05:04,841 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1f11610>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 14:05:05,393 :  指令:['{"ADDR":"1","ledrange":[16,1,100]}\n', '{"ADDR":"2","ledrange":[16,1,100]}\n', '{"ADDR":"3","ledrange":[16,1,100]}\n', '{"ADDR":"4","ledrange":[16,1,100]}\n', '{"ADDR":"5","ledrange":[16,1,100]}\n', '{"ADDR":"6","ledrange":[16,1,100]}\n', '{"ADDR":"7","ledrange":[16,1,100]}\n', '{"ADDR":"8","ledrange":[16,1,100]}\n', '{"ADDR":"9","ledrange":[16,1,100]}\n']
2021-07-09 14:05:05,397 :  灯条已重置
2021-07-09 14:05:05,400 :  关闭成功
2021-07-09 14:05:07,352 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb16990b0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 14:10:57,791 :  ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2021-07-09 14:10:59,828 :  11111111111
2021-07-09 14:10:59,868 :  启动成功
2021-07-09 14:11:00,869 :  --------------状态灯[3, 6]打开
2021-07-09 14:11:01,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 0xb41575f0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 14:11:03,001 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ecfaf0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 14:11:05,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 0xb41576d0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 14:11:06,601 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1ecf8b0>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 14:11:09,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 0xb1ecf710>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 14:11:10,201 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1650390>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 14:11:11,367 :  指令:['{"ADDR":"1","ledrange":[16,1,100]}\n', '{"ADDR":"2","ledrange":[16,1,100]}\n', '{"ADDR":"3","ledrange":[16,1,100]}\n', '{"ADDR":"4","ledrange":[16,1,100]}\n', '{"ADDR":"5","ledrange":[16,1,100]}\n', '{"ADDR":"6","ledrange":[16,1,100]}\n', '{"ADDR":"7","ledrange":[16,1,100]}\n', '{"ADDR":"8","ledrange":[16,1,100]}\n', '{"ADDR":"9","ledrange":[16,1,100]}\n']
2021-07-09 14:11:11,371 :  灯条已重置
2021-07-09 14:11:11,375 :  关闭成功
2021-07-09 14:11:12,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 0xb16507d0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 14:19:42,186 :  ip&cid...:{'post': 'wait', 'ip': 'http://192.168.101.108/smdbox', 'cid': 'ls01'}
2021-07-09 14:19:44,216 :  11111111111
2021-07-09 14:19:44,265 :  启动成功
2021-07-09 14:19:45,269 :  --------------状态灯[3, 6]打开
2021-07-09 14:19:46,285 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0xb415e6b0>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))
2021-07-09 14:19:47,411 :  构建库位原始数据表/更新当前有库存的库位状态失败:HTTPConnectionPool(host='192.168.101.108', port=80): Max retries exceeded with url: /smdbox/service/store/sensorShelf/hasReelPosList?cid=ls01 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0xb1e69c30>: Failed to establish a new connection: [Errno 113] No route to host'))
2021-07-09 14:19:48,268 :  控制界面
2021-07-09 14:19:49,403 :  指令:['{"ADDR":"1","ledrange":[16,1,100]}\n', '{"ADDR":"2","ledrange":[16,1,100]}\n', '{"ADDR":"3","ledrange":[16,1,100]}\n', '{"ADDR":"4","ledrange":[16,1,100]}\n', '{"ADDR":"5","ledrange":[16,1,100]}\n', '{"ADDR":"6","ledrange":[16,1,100]}\n', '{"ADDR":"7","ledrange":[16,1,100]}\n', '{"ADDR":"8","ledrange":[16,1,100]}\n', '{"ADDR":"9","ledrange":[16,1,100]}\n']
2021-07-09 14:19:49,407 :  灯条已重置
2021-07-09 14:19:49,410 :  关闭成功
2021-07-09 14:19:49,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 0xb1e8a090>, 'Connection to 192.168.101.108 timed out. (connect timeout=2)'))