diff --git a/api/app/lib/controllers/data/index.js b/api/app/lib/controllers/data/index.js index f41aefbe..8112a750 100644 --- a/api/app/lib/controllers/data/index.js +++ b/api/app/lib/controllers/data/index.js @@ -1,93 +1,19 @@ 'use strict'; +const fs = require('fs'); +const xlsxDownload = require('../../../../utils/xlsxDownload.js'); +const moment = require('moment'); +const request = require('superagent'); -// const { simpleExcelDown } = require('../../../../utils/xlsxDownload'); - -async function dataExport(ctx) { +async function dataExport (ctx) { try { - // const models = ctx.fs.dc.models; - // const { userId } = ctx.fs.api - // const { ids } = ctx.query; + const models = ctx.fs.dc.models; + const { userId } = ctx.fs.api + const { exp, ids, roadLevel, municipalType } = ctx.query; - // const fileList = [ - // { - // n: '道路', - // tableName: 'road', - // defaultKey: ['level'], - // defaultValue: ['村'], - // }, - // { - // n: '道路', - // tableName: 'road', - // defaultKey: ['level'], - // defaultValue: ['县'], - // }, - // { - // n: '道路', - // tableName: 'road', - // defaultKey: ['level'], - // defaultValue: ['乡'], - // }, - // { - // n: '桥梁', - // tableName: 'bridge' - // }, - // { - // n: '运政车辆', - // tableName: 'municipal_vehicle', - // defaultKey: ['type'], - // defaultValue: ['出租车'], - // }, - // { - // n: '运政车辆', - // tableName: 'municipal_vehicle', - // defaultKey: ['type'], - // defaultValue: ['危货'], - // }, - // { - // n: '运政业户', - // tableName: 'municipal_business', - // defaultKey: ['type'], - // defaultValue: ['出租车'], - // }, - // { - // n: '运政业户', - // tableName: 'municipal_business', - // defaultKey: ['type'], - // defaultValue: ['危货'], - // }, - // { - // n: '工程一览', - // tableName: 'project', - // defaultKey: ['done', 'type'], - // defaultValue: [false, 'road'], - // }, - // { - // n: '工程一览', - // tableName: 'project', - // defaultKey: ['done', 'type'], - // defaultValue: [false, 'bridge'], - // }, - // { - // n: '治超', - // tableName: 'overspeed', - // }, - // { - // n: '公交线路', - // tableName: 'bus_line', - // }, - // { - // n: '公交车辆', - // tableName: 'bus_car', - // }, - // ] + if (!exp) { + throw '参数错误'; + } -<<<<<<< HEAD - // const exportData = await models.BusCar.destroy({ - // where: { - // id: { $in: ids.split(',') } - // } - // }) -======= const modalList = [ { n: '道路', @@ -140,25 +66,12 @@ async function dataExport(ctx) { tableName: 'Report', }, ] ->>>>>>> d8f96cea72338cf7a61dea293bd6d0cd5da48bb0 - // const fileName = `摄像头信息列表_${moment().format('YYYYMMDDHHmmss')}` + '.csv' - // const filePath = await simpleExcelDown({ data: exportData, header, fileName: fileName }) - // const fileData = fs.readFileSync(filePath); + const modalOption = modalList.find(item => item.k == exp); + if (!modalOption) { + throw '参数错误'; + } -<<<<<<< HEAD - // ctx.status = 200; - // ctx.set('Content-Type', 'application/x-xls'); - // ctx.set('Content-disposition', 'attachment; filename=' + encodeURI(fileName)); - // ctx.body = fileData; - } catch (error) { - // ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); - // ctx.status = 400; - // ctx.body = { - // message: typeof error == 'string' ? error : undefined - // } - } -======= let findOption = { where: {} } @@ -205,10 +118,9 @@ async function dataExport(ctx) { message: typeof error == 'string' ? error : undefined } } ->>>>>>> d8f96cea72338cf7a61dea293bd6d0cd5da48bb0 } -async function godTrans(ctx) { +async function godTrans (ctx) { try { const models = ctx.fs.dc.models; const { userId } = ctx.fs.api @@ -229,5 +141,6 @@ async function godTrans(ctx) { } module.exports = { - dataExport + dataExport, + godTrans }; \ No newline at end of file diff --git a/api/app/lib/controllers/overview/operation.js b/api/app/lib/controllers/overview/operation.js index d21eed83..4fde47db 100644 --- a/api/app/lib/controllers/overview/operation.js +++ b/api/app/lib/controllers/overview/operation.js @@ -92,9 +92,15 @@ async function vehicleStatistic (ctx) { type: 'vehicle' } }) + const freightTransport = await models.Statistic.findOne({ + where: { + type: 'freight' + } + }) const vehicleState = { passengerTransport: passengerTransport ? passengerTransport.count : 0, + freightTransport: freightTransport ? freightTransport.count : 0, taxi: await models.MunicipalVehicle.count({ where: { type: '出租车' diff --git a/api/app/lib/routes/data/index.js b/api/app/lib/routes/data/index.js index c8a2fe2b..68f800a0 100644 --- a/api/app/lib/routes/data/index.js +++ b/api/app/lib/routes/data/index.js @@ -20,6 +20,23 @@ module.exports = function (app, router, opts) { router.get('/data/god_trans', dataIndex.godTrans); // 运政 + //货运 + async function setVehicleType (ctx, next) { + ctx.request.body = { + ...(ctx.request.body || {}), + type: 'freight' + } + await next() + } + app.fs.api.logAttr['GET/vehicle/freight'] = { content: '获取运政列表', visible: true }; + router.get('/vehicle/freight', setVehicleType, vehicle.get); + + app.fs.api.logAttr['PUT/vehicle/freight'] = { content: '编辑运政数据', visible: true }; + router.put('/vehicle/freight', setVehicleType, vehicle.edit); + + app.fs.api.logAttr['DEL/vehicle/freight/:id'] = { content: '删除运政数据', visible: false }; + router.del('/vehicle/freight/:id', setVehicleType, vehicle.del); + //客运车 async function setVehicleType (ctx, next) { ctx.request.body = { diff --git a/api/log/development.log b/api/log/development.log index 691889dc..7e592778 100644 --- a/api/log/development.log +++ b/api/log/development.log @@ -10815,7 +10815,9 @@ headers: {} 2022-07-30 17:48:40.061 - debug: [FS-LOGGER] Init. 2022-07-30 17:48:40.152 - info: [FS-ATTACHMENT] Inject attachment mw into router. 2022-07-30 17:48:40.152 - info: [FS-AUTH] Inject auth and api mv into router. +<<<<<<< Updated upstream >>>>>>> d8f96cea72338cf7a61dea293bd6d0cd5da48bb0 +<<<<<<< HEAD 2022-08-12 09:20:22.775 - debug: [FS-LOGGER] Init. 2022-08-12 09:20:23.676 - info: [FS-ATTACHMENT] Inject attachment mw into router. 2022-08-12 09:20:23.676 - info: [FS-AUTH] Inject auth and api mv into router. @@ -10918,3 +10920,16 @@ headers: {} ' at f:\\Highways4Good\\api\\node_modules\\fs-web-server-scaffold\\index.js:74:20\n' + ' at Array.forEach ()' } +======= +======= +2022-08-11 09:02:08.616 - debug: [FS-LOGGER] Init. +2022-08-11 09:02:08.699 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-08-11 09:02:08.699 - info: [FS-AUTH] Inject auth and api mv into router. +>>>>>>> Stashed changes +>>>>>>> 19b9beb06f6736a29ddc681ae749b4770d47bbb5 +2022-08-12 09:32:24.787 - debug: [FS-LOGGER] Init. +2022-08-12 09:32:24.871 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-08-12 09:32:24.871 - info: [FS-AUTH] Inject auth and api mv into router. +2022-08-12 11:04:42.222 - debug: [FS-LOGGER] Init. +2022-08-12 11:04:42.302 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-08-12 11:04:42.302 - info: [FS-AUTH] Inject auth and api mv into router. diff --git a/api/package.json b/api/package.json index 45bde8c4..ecc9e7dc 100644 --- a/api/package.json +++ b/api/package.json @@ -5,7 +5,7 @@ "main": "server.js", "scripts": { "test": "set DEBUG=true&&\"node_modules/.bin/mocha\" --harmony --reporter spec app/test/*.test.js", - "start": "set NODE_ENV=development&&node server -p 4000 -g postgres://postgres:123@10.8.30.32:5432/highways4good -f http://localhost:14000", + "start": "set NODE_ENV=development&&node server -p 4000 -g postgres://postgres://postgres:123@10.8.30.32:5432/highways4good -f http://localhost:14000 --qnak XuDgkao6cL0HidoMAPnA5OB10Mc_Ew08mpIfRJK5 --qnsk yewcieZLzKZuDfig0wLZ9if9jKp2P_1jd3CMJPSa --qnbkt dev-highways4good --qndmn http://rfkimpwbb.hn-bkt.clouddn.com", "start:linux": "export NODE_ENV=development&&node server -p 4000 -g postgres://FashionAdmin:123456@10.8.30.39:5432/pm1", "automate": "sequelize-automate -c sequelize-automate.config.js" }, diff --git a/scripts/1.1.0/data/1.create_freight_type.sql b/scripts/1.1.0/data/1.create_freight_type.sql new file mode 100644 index 00000000..74d1ddda --- /dev/null +++ b/scripts/1.1.0/data/1.create_freight_type.sql @@ -0,0 +1 @@ +INSERT INTO statistic (name, count, type) values ('货运车', 0, 'freight'); \ No newline at end of file diff --git a/web/client/assets/images/quanju/all.png b/web/client/assets/images/quanju/all.png new file mode 100644 index 00000000..cef82b11 Binary files /dev/null and b/web/client/assets/images/quanju/all.png differ diff --git a/web/client/assets/images/quanju/yuanhuan.webp b/web/client/assets/images/quanju/yuanhuan.webp new file mode 100644 index 00000000..398d30c1 Binary files /dev/null and b/web/client/assets/images/quanju/yuanhuan.webp differ diff --git a/web/client/assets/images/quanju/zhichao.png b/web/client/assets/images/quanju/zhichao.png new file mode 100644 index 00000000..d7e36787 Binary files /dev/null and b/web/client/assets/images/quanju/zhichao.png differ diff --git a/web/client/src/sections/quanju/containers/footer/build/Rightbottom.js b/web/client/src/sections/quanju/containers/footer/build/Rightbottom.js index c236367f..e01ddc38 100644 --- a/web/client/src/sections/quanju/containers/footer/build/Rightbottom.js +++ b/web/client/src/sections/quanju/containers/footer/build/Rightbottom.js @@ -4,198 +4,209 @@ import { Col, Progress, Row } from 'antd'; import React, { useEffect, useRef } from 'react'; // import ReactEcharts from 'echarts-for-react'; import * as echarts from 'echarts'; -function Rightbottom(props) { - const { width, height, total,data, text } = props - const chartRef = useRef(null); - let colorList = [ - "rgba(7,185,254,1)", - "rgba(28,96,254,1)", - "rgba(4,251,240,1)", - "rgba(255,194,20,1)", - 'rgba(255,255,255,1)' - ] - let underColorList = [ - "rgba(7,185,254,0.5)", - "rgba(28,96,254,0.5)", - "rgba(4,251,240,0.5)", - "rgba(255,194,20,0.5)", - 'rgba(255,255,255,0.5)', - ] - let name = [], emptyName = [] - // const name = data?.map(d) +function Rightbottom (props) { + const { width, height, total, data, text } = props + const chartRef = useRef(null); + let colorList = [ + "rgba(7,185,254,1)", + "rgba(28,96,254,1)", + "rgba(4,251,240,1)", + "rgba(255,194,20,1)", + 'rgba(255,255,255,1)' + ] + let underColorList = [ + "rgba(7,185,254,0.5)", + "rgba(28,96,254,0.5)", + "rgba(4,251,240,0.5)", + "rgba(255,194,20,0.5)", + 'rgba(255,255,255,0.5)', + ] + let name = [], emptyName = [] + // const name = data?.map(d) - // const safetyData = [ - // {name: '一级公路', value: 42}, - // {name: '二级公路', value: 17}, - // {name: '三级公路', value: 17}, - // {name: '四级公路', value: 30}, - // {name: '等外公路', value: 30}, + // const safetyData = [ + // {name: '一级公路', value: 42}, + // {name: '二级公路', value: 17}, + // {name: '三级公路', value: 17}, + // {name: '四级公路', value: 30}, + // {name: '等外公路', value: 30}, - // ] + // ] -const rightLegend = ['一级公路', '二级公路', '三级公路','四级公路','等外公路'] -// let data=[ -// {name: "四级公路", value: 2969}, -// {name: "等外公路", value: 171}, -// {name: "三级公路", value: 103}, -// {name: "二级公路", value: 15}, -// ] -// console.log(data.map(i=>i.name),'jjj') -let dataq = rightLegend.map((item,index)=>{ - if(data.map(i=>i.name).includes(item)){ - return {name:item,value:data.filter(i1=>i1.name===item)[0].value} - }else{ - return {name:item,value:0} - } -}) - console.log(dataq,'数据') - dataq?.sort((a,b)=>b.value - a.value) - dataq?.forEach(d => { - name.push(d.name) - emptyName.push({ - name: '', - value: d.value + const rightLegend = ['一级公路', '二级公路', '三级公路', '四级公路', '等外公路'] + // const rightLegend = ['三级及以上','四级'] + // let data=[ + // {name: "四级公路", value: 2969}, + // {name: "等外公路", value: 171}, + // {name: "三级公路", value: 103}, + // {name: "二级公路", value: 15}, + // ] + // console.log(data.map(i=>i.name),'jjj') + console.log(data); + let dataq = rightLegend.map((item, index) => { + console.log(item, index); + if (data.map(i => i.name).includes(item)) { + console.log(item); + console.log(1); + return { name: item, value: data.filter(i1 => i1.name === item)[0].value } + } else { + console.log(2); + return { name: item, value: 0 } + } + }) + console.log(dataq, '数据') + dataq?.sort((a, b) => b.value - a.value) + dataq?.forEach(d => { + name.push(d.name) + emptyName.push({ + name: '', + value: d.value + }) }) - }) - const chartTitle = '道路总公里'; - const title = '基础设施安全监测版块'; - // const number = 2738; - // const leftLegend = ['地灾', '桥梁', '基坑', '边坡', '水库大坝'] - - const legendColor = undefined; + const chartTitle = '道路总公里'; + const title = '基础设施安全监测版块'; + // const number = 2738; + // const leftLegend = ['地灾', '桥梁', '基坑', '边坡', '水库大坝'] - var titleNum = 15 - const option = { - tooltip: { - show: true, - trigger: 'item', - position: 'right', - backgroundColor: 'rgba(0,0,0,0.7)', - textStyle: { - color: '#fff', - }, - formatter: (values) => `${values.seriesName}
${values.marker} ${values.name}${values.value}段`, - }, - legend: { - orient: "vertical", - itemWidth: 10, - itemHeight: 10, - // right: '30%', - left: '50%', - top: 'center', - align: 'left', - data: name, - formatter: (name) => { - for (let i = 0; i < option.series[1].data.length; i += 1) { - if (name === option.series[1].data[i].name) { - let arr = [`{a|${name}}`, `{b|${option.series[1].data[i].value}}`] - return arr.join('\t'); - } - } - }, - textStyle: { - rich: { - a: { - color: '#E9F7FF', - fontSize: 14, - padding:[0,10] - }, - b: { - fontSize: 16, - fontFamily: 'YouSheBiaoTiHei', - color: '#fff', - padding:[0,0,0,15] - }, - } - } - }, - grid: { - left: '10%' - }, + const legendColor = undefined; - series: [ - { - name: "底层背景", - type: "pie", - hoverAnimation: false, - legendHoverLink: false, - radius: ["50%", "62%"], - center: ['25%', '50%'], - color: underColorList, - label: { - show: false - }, - labelLine: { - show: false - }, + var titleNum = 15 + const option = { tooltip: { - show: false, + show: true, + trigger: 'item', + position: 'right', + backgroundColor: 'rgba(0,0,0,0.7)', + textStyle: { + color: '#fff', + }, + formatter: (values) => `${values.seriesName}
${values.marker} ${values.name}${values.value}段`, }, - - data: emptyName, - }, - { - name: "公路等级统计", - type: "pie", - radius: ["57%", "70%"], - center: ['25%', '50%'], - color: colorList, - label: { - show: false + // legend: { + // orient: "vertical", + // itemWidth: 10, + // itemHeight: 10, + // // right: '30%', + // left: '50%', + // top: 'center', + // align: 'left', + // data: name, + // formatter: (name) => { + // for (let i = 0; i < option.series[1].data.length; i += 1) { + // if (name === option.series[1].data[i].name) { + // let arr = [`{a|${name}}`, `{b|${option.series[1].data[i].value}}`] + // return arr.join('\t'); + // } + // } + // }, + // textStyle: { + // rich: { + // a: { + // color: '#E9F7FF', + // fontSize: 14, + // padding:[0,10] + // }, + // b: { + // fontSize: 16, + // fontFamily: 'YouSheBiaoTiHei', + // color: '#fff', + // padding:[0,0,0,15] + // }, + // } + // } + // }, + grid: { + left: '10%' }, - data: dataq, - }, - ], - }; - let currentIndex = -1; // 当前高亮图形在饼图数据中的下标 - useEffect(() => { - let myChart = echarts.init(chartRef.current); - // const highlightPie = () =>{ // 取消所有高亮并高亮当前图形 - // for(var idx in safetyOption.series[0].data) - // // 遍历饼图数据,取消所有图形的高亮效果 - // myChart.dispatchAction({ - // type: 'downplay', - // seriesIndex: 0, - // dataIndex: idx - // }); - // // 高亮当前图形 - // myChart.dispatchAction({ - // type: 'highlight', - // seriesIndex: 0, - // dataIndex: currentIndex - // }); - // // myChart.dispatchAction({ - // // type: 'showTip', - // // seriesIndex: 0, - // // dataIndex: currentIndex, - // // }); - // } - // const selectPie=() =>{ // 高亮效果切换到下一个图形 - // var dataLen = safetyOption.series[0].data.length; - // currentIndex = (currentIndex + 1) % dataLen; - // highlightPie(); - // } - // let changePieInterval = setInterval(selectPie, 1000); - - // myChart.onChartReady = (instance) => { - // chartRef.current.safetyChart = instance; - // } - myChart.setOption(option); - return ()=>{ - // clearInterval(changePieInterval) - } -}, [data]); - return ( -
- -
-

{total||0}

- 道路总公里 -
- -
-
- ); + series: [ + { + name: "底层背景", + type: "pie", + hoverAnimation: false, + legendHoverLink: false, + radius: ["50%", "62%"], + center: ['25%', '50%'], + color: underColorList, + label: { + show: false + }, + labelLine: { + show: false + }, + tooltip: { + show: false, + }, + + data: emptyName, + }, + { + name: "公路等级统计", + type: "pie", + radius: ["57%", "70%"], + center: ['25%', '50%'], + color: colorList, + label: { + show: false + }, + data: dataq, + }, + ], + }; + let currentIndex = -1; // 当前高亮图形在饼图数据中的下标 + useEffect(() => { + let myChart = echarts.init(chartRef.current); + // const highlightPie = () =>{ // 取消所有高亮并高亮当前图形 + // for(var idx in safetyOption.series[0].data) + // // 遍历饼图数据,取消所有图形的高亮效果 + // myChart.dispatchAction({ + // type: 'downplay', + // seriesIndex: 0, + // dataIndex: idx + // }); + // // 高亮当前图形 + // myChart.dispatchAction({ + // type: 'highlight', + // seriesIndex: 0, + // dataIndex: currentIndex + // }); + // // myChart.dispatchAction({ + // // type: 'showTip', + // // seriesIndex: 0, + // // dataIndex: currentIndex, + // // }); + // } + // const selectPie=() =>{ // 高亮效果切换到下一个图形 + // var dataLen = safetyOption.series[0].data.length; + // currentIndex = (currentIndex + 1) % dataLen; + // highlightPie(); + // } + // let changePieInterval = setInterval(selectPie, 1000); + + // myChart.onChartReady = (instance) => { + // chartRef.current.safetyChart = instance; + // } + // myChart.setOption(option); + return () => { + // clearInterval(changePieInterval) + } + }, [data]); + + return ( +
+ {/* */} +
+

{total || 0}

+ 道路总公里 +
+
+ +
+
+ +
+
+
+ ); } export default Rightbottom \ No newline at end of file diff --git a/web/client/src/sections/quanju/containers/footer/build/index.js b/web/client/src/sections/quanju/containers/footer/build/index.js index d3ec4006..71030183 100644 --- a/web/client/src/sections/quanju/containers/footer/build/index.js +++ b/web/client/src/sections/quanju/containers/footer/build/index.js @@ -81,9 +81,11 @@ const Build = (props) => { return resValue } let datas = Object.keys(buildingnumber?.townRoad || {}).map((item) => ({ name: item, number: buildingnumber.townRoad[item].roadCount, gongli: Number(keepThreeNum(buildingnumber.townRoad[item].mileage)) })) - let list = datas.sort((a, b) => { + + let list = datas.sort((a, b) => { return b.number - a.number }) + list=list.filter(item=>item.name!=="其他") // console.log(list,'红红火') //道路等级数据 @@ -141,29 +143,29 @@ const Build = (props) => { return ( <>
-
- + {/* */} {buildingnumber && buildingnumber.buildedRoad !== 0 && totalgongli !== 0 ?
-
+ {/*
- {/* */} + 在建公路数量
{buildingnumber?.buildingRoad || 0}
-
- +
*/} +
+
{sunonlineproject || 0}
{/* */} - - 已建公路数量 + {/* */} + 在建数量
-
{buildingnumber?.buildedRoad || 0}
: }
diff --git a/web/client/src/sections/quanju/containers/footer/build/style.less b/web/client/src/sections/quanju/containers/footer/build/style.less index 89a8d99c..0f64d0c5 100644 --- a/web/client/src/sections/quanju/containers/footer/build/style.less +++ b/web/client/src/sections/quanju/containers/footer/build/style.less @@ -23,36 +23,42 @@ justify-content: center; align-items: center; .build-left-top-center{ - width: 35%; - height: 50%; + width: 100%; + height: 100%; margin: 0 10px; } .build-left-top-item{ width: 25%; height: 50%; - background-image: url('/assets/images/quanju/zhuangtaigognlubiankuang.png'); + // background-image: url('/assets/images/quanju/zhuangtaigognlubiankuang.png'); background-size: 95%; background-repeat: no-repeat; display: flex; flex-direction: column; justify-content: center; align-items: center; + position: absolute; + float: left; // text-align: center; div{ &:nth-child(1){ + // width: 80%; + // height: 100%; + // margin: 1% auto 0; + font-size: 2.375rem; + font-family: YouSheBiaoTiHei; + color: #FFFFFF; + text-align: center; + // line-height: 49px; + text-shadow: 0px 2px 4px #1C60FE; + + } + &:nth-child(2){ display: flex; justify-content: center; align-items: center; span{ &:nth-child(1){ - width: 0.5rem; - height: 0.5rem; - margin-right: 5px; - background: #07B9FE; - clip-path: polygon(0 0, 100% 0, 0 100%, 0 0); - transform: rotate(134deg); - } - &:nth-child(2){ font-size: 1rem; font-family: PingFangSC-Regular, PingFang SC; font-weight: 400; @@ -62,18 +68,6 @@ } } - &:nth-child(2){ - // width: 80%; - // height: 100%; - // margin: 1% auto 0; - font-size: 2.375rem; - font-family: YouSheBiaoTiHei; - color: #FFFFFF; - text-align: center; - // line-height: 49px; - text-shadow: 0px 2px 4px #1C60FE; - - } } } } @@ -294,12 +288,20 @@ color: #E9F7FF; } } - img{ - width: 19%; - position: absolute; - left: 16%; - top:29% - } + .img1{ + width: 35%; + position: absolute; + left: 30%; + top:5%; + } + .img2{ + width: 40%; + position: absolute; + left: 40%; + top:5%; + z-index: 10; + } + } } diff --git a/web/client/src/sections/quanju/containers/footer/guanli/index.js b/web/client/src/sections/quanju/containers/footer/guanli/index.js index c9125ef9..09bbb399 100644 --- a/web/client/src/sections/quanju/containers/footer/guanli/index.js +++ b/web/client/src/sections/quanju/containers/footer/guanli/index.js @@ -1,6 +1,6 @@ import React, { useEffect, useState } from 'react'; import { connect } from 'react-redux'; -import { Carousel } from 'antd' +import { Carousel,Tooltip } from 'antd' import AutoRollComponent from '../build/AutoRollComponent' import Module from '../../public/module' import LeftItem from './LeftItem' @@ -55,15 +55,43 @@ const Guanli = (props) => { },[]) // let datalist = newArry(30) // datalist.fill({licensePlate:"赣A44454",overrunRate:"30%",fine:"200元",processingTime:"2020年4月1日"}) + // const content = ( + + // ); const renderContent = () => { return
{rightitemlist && rightitemlist.length!==0?rightitemlist?.map(({ id, licensePlate, overrunRate,fine,processingTime,deductPoints }, index) => { if(index<120){ return
+
+ +
+ + {/* */} +
+ +

{overrunRate?overrunRate:0}{/* {item.overrunRate ? item.overrunRate + "%" : "--"} */}

+

超限

+
+
+

车牌号{licensePlate}{/* {item.licensePlate} */}

+

检测点123456

+

处罚{deductPoints?`-${deductPoints}分`:""}和-{fine}{fine?"元":""}{/* {item.deductPoints ? "-" + item.deductPoints + "分" : ""}{item.deductPoints && item.fine ? "和" : ""}{item.fine ? "-" + item.fine + "元" : ""}{item.deductPoints || item.fine ? "" : "--"} */}

+

日期{processingTime}{/* {item.processingTime ? item.processingTime : "--"} */}

+
+
+
} + placement="leftTop" + overlayStyle={{ minWidth:400, minHeight: 212,padding:0,margin:0,backgroundImage:`url(../../../../../assets/images/leadership/beijinglan.png)`}} + overlayClassName='popover' + + > {licensePlate} {overrunRate}% {deductPoints?`-${deductPoints}分`:""}和-{fine}{fine?"元":""} {processingTime} + +
} }):""} @@ -101,9 +129,9 @@ const Guanli = (props) => { 处罚 处理日期
- {rightitemlist && rightitemlist.length!==0?:} + divHeight={"100%"} divId={"chart-overview-deviceList"} />:} diff --git a/web/client/src/sections/quanju/containers/footer/guanli/style.less b/web/client/src/sections/quanju/containers/footer/guanli/style.less index 32e385b7..91060be1 100644 --- a/web/client/src/sections/quanju/containers/footer/guanli/style.less +++ b/web/client/src/sections/quanju/containers/footer/guanli/style.less @@ -1,177 +1,301 @@ -@media screen and (max-width:1366px){ - html{ +@media screen and (max-width:1366px) { + html { font-size: 12px; } } + // .guanli{ // // box-sizing: border-box; // padding: 0 15px 0 15px; // width: 100%; // height: 100%; // position: relative; - // display: flex; - // justify-content: space-between; - .guanli-left{ - width: 25%; - height: 100%; - position: absolute; - left: 0; - .guanli-left-item{ - box-sizing: border-box; - width: 85%; - position: relative; - // height: 30%; - height: 24vh; - margin: 0 auto 3%; +// display: flex; +// justify-content: space-between; +.guanli-left { + width: 25%; + height: 100%; + position: absolute; + left: 0; + + .guanli-left-item { + box-sizing: border-box; + width: 85%; + position: relative; + // height: 30%; + height: 24vh; + margin: 0 auto 3%; + display: flex; + align-items: center; + padding: 0 10%; + justify-content: space-between; + border: 2px solid rgba(28, 96, 254, 0.5000); + + .guanli-left-item-left { + width: 45%; + height: 60%; display: flex; + flex-direction: column; align-items: center; - padding: 0 10%; - justify-content: space-between; - border: 2px solid rgba(28,96,254,0.5000); - .guanli-left-item-left{ - width: 45%; - height: 60%; + + span { + font-size: 1.25rem; + font-family: PingFangSC-Regular, PingFang SC; + font-weight: 400; + color: rgba(216, 240, 255, 0.8000); + } + + div { display: flex; - flex-direction: column; - align-items: center; - span{ - font-size: 1.25rem; + justify-content: center; + // align-items: ; + font-size: 2.125rem; + font-family: YouSheBiaoTiHei; + color: #FFFFFF; + height: 70%; + width: 100%; + background: url('/assets/images/quanju/guanlijiance_1.png') no-repeat; + background-size: 100% 80%; + background-position: center bottom; + + span { + font-size: 1rem; font-family: PingFangSC-Regular, PingFang SC; font-weight: 400; - color: rgba(216,240,255,0.8000); - } - div{ - display: flex; - justify-content: center; - // align-items: ; - font-size: 2.125rem; - font-family: YouSheBiaoTiHei; - color: #FFFFFF; - height: 70%; - width: 100%; - background: url('/assets/images/quanju/guanlijiance_1.png') no-repeat; - background-size: 100% 80%; - background-position: center bottom; - span{ - font-size: 1rem; - font-family: PingFangSC-Regular, PingFang SC; - font-weight: 400; - padding-top: 10%; - margin-left: 5px; - // height: 0; - color: rgba(216,240,255,0.8000); - } + padding-top: 10%; + margin-left: 5px; + // height: 0; + color: rgba(216, 240, 255, 0.8000); } - // background-color: pink; } - .guanli-left-item-right{ - width: 40%; - height: 50%; - position: relative; - span{ - position: absolute; - width: 8px; - height: 8px; - background-color: #fff; - top:1.5%; - left: 50%; - z-index: 10; - border-radius: 4px; - display: block; - } - - // background-color: pink; + + // background-color: pink; + } + + .guanli-left-item-right { + width: 40%; + height: 50%; + position: relative; + + span { + position: absolute; + width: 8px; + height: 8px; + background-color: #fff; + top: 1.5%; + left: 50%; + z-index: 10; + border-radius: 4px; + display: block; } + // background-color: pink; } + + // background-color: pink; } - .guanli-right{ - width: 25%; - height: 100%; - position: absolute; - right: 0; - .guanli-right-top{ - width: 100%; +} + +.guanli-right { + width: 25%; + height: 100%; + position: absolute; + right: 0; + + .guanli-right-top { + width: 100%; // height: 5%; - display: flex; - justify-content: flex-end; - align-items: center; - padding-right: 10px; - img{ + display: flex; + justify-content: flex-end; + align-items: center; + padding-right: 10px; + + img { width: 4%; // height: 40%; - } - span{ - &:nth-child(2){ + } + + span { + &:nth-child(2) { font-size: 16px; font-family: PingFangSC-Regular, PingFang SC; font-weight: 400; - color: rgba(216,240,255,0.8000); - margin:0 10px 0 2px - } - &:nth-child(3){ + color: rgba(216, 240, 255, 0.8000); + margin: 0 10px 0 2px + } + + &:nth-child(3) { font-size: 18px; font-family: PingFangSC-Medium, PingFang SC; font-weight: 500; color: #FFFFFF; margin-right: 10px; - } - &:nth-child(4){ + } + + &:nth-child(4) { font-size: 14px; font-family: PingFangSC-Regular, PingFang SC; font-weight: 400; - color: rgba(216,240,255,0.8000); - } - } - - - } - .guanli-right-title{ - width: 90%; - height: 5%; - margin: auto; - display: flex; - align-items: center; - justify-content: space-around; - background: rgba(21,77,160,0.2000); - span{ - font-size: 12px; - font-family: PingFangSC-Medium, PingFang SC; - font-weight: 500; - color: #FFFFFF; - flex:1; - text-align: center; - // &:nth-child(1){ - - // } + color: rgba(216, 240, 255, 0.8000); } } - .guanli-right-item{ - width: 90%; - // height: 4%; - height: 3vh; - margin: auto; - display: flex; - align-items: center; - justify-content: space-around; - &:hover{ - background:linear-gradient(270deg, rgba(0,124,230,0) 0%, rgba(0,70,200,0.8700) 100%); - } - // background: rgba(21,77,160,0.2000); - span{ - font-size: 0.875rem; - font-family: PingFangSC-Regular, PingFang SC; - font-weight: 400; - color: rgba(216,240,255,0.8000); - line-height: 20px; - flex:1; - text-align: center; - // &:nth-child(1){ - - // } - } + + + } + + .guanli-right-title { + width: 90%; + height: 5%; + margin: auto; + display: flex; + align-items: center; + justify-content: space-around; + background: rgba(21, 77, 160, 0.2000); + + span { + font-size: 12px; + font-family: PingFangSC-Medium, PingFang SC; + font-weight: 500; + color: #FFFFFF; + flex: 1; + text-align: center; + // &:nth-child(1){ + + // } } } + .guanli-right-item { + width: 90%; + // height: 4%; + height: 3vh; + margin: auto; + display: flex; + align-items: center; + justify-content: space-around; + + &:hover { + background: linear-gradient(270deg, rgba(0, 124, 230, 0) 0%, rgba(0, 70, 200, 0.8700) 100%); + } + + // background: rgba(21,77,160,0.2000); + span { + font-size: 0.875rem; + font-family: PingFangSC-Regular, PingFang SC; + font-weight: 400; + color: rgba(216, 240, 255, 0.8000); + line-height: 20px; + flex: 1; + text-align: center; + // &:nth-child(1){ + + // } + } + } +} + +.popover-content { + // background-color: red; + // .ant-popover-inner-content{ + // padding: 0!important; + // } + // .address { + // width: 80%; + // height: 80%; + // top: 10%; + // position: absolute; + // // background-color: pink; + + // .address1 { + // width: 194px; + // height: 20px; + // margin: 16px 0 24px 26px; + // span { + // &:nth-child(1) { + // margin-right: 20px; + // width: 42px; + // height: 20px; + // display: inline-block; + // overflow-wrap: break-word; + // color: rgba(216, 240, 255, 0.8); + // font-size: 14px; + // font-family: PingFangSC-Regular; + // white-space: nowrap; + // line-height: 20px; + // text-align: left; + // } + // &:nth-child(2) { + // width: 28px; + // height: 20px; + // display: inline-block; + // overflow-wrap: break-word; + // color: rgba(238, 244, 255, 1); + // font-size: 14px; + // font-family: PingFangSC-Medium; + // white-space: nowrap; + // line-height: 20px; + // text-align: left; + // } + // } + // } + + // .address2 { + // width: 194px; + // height: 20px; + // margin: 16px 0 24px 26px; + + // span { + // &:nth-child(1) { + // margin-right: 35px; + // width: 28px; + // height: 20px; + // display: inline-block; + // overflow-wrap: break-word; + // color: rgba(216, 240, 255, 0.8); + // font-size: 14px; + // font-family: PingFangSC-Regular; + // white-space: nowrap; + // line-height: 20px; + // text-align: right; + // } + // &:nth-child(2) { + // width: 126px; + // height: 20px; + // display: inline-block; + // overflow-wrap: break-word; + // color: rgba(255, 255, 255, 1); + // font-size: 14px; + // font-family: PingFangSC-Medium; + // white-space: nowrap; + // line-height: 20px; + // text-align: right; + // } + // } + // } + // } +} + +.popover { + .ant-tooltip-inner{ + min-width: 0 !important; + min-height: 0 !important; + background-color: rgba(0, 0, 0, 0) !important; + } + + // .ant-popover-arrow { + // .ant-popover-arrow-content { + // display: none; + // } + // span { + // display: none; + // } + // } + // .ant-popover-inner { + // .ant-popover-inner-content { + // padding: 0; + // } + // } + // .ant-popover-inner{padding:0 !important;} +} \ No newline at end of file diff --git a/web/log/development.txt b/web/log/development.txt index b2e56779..d10ef700 100644 --- a/web/log/development.txt +++ b/web/log/development.txt @@ -47876,6 +47876,7 @@ 2022-07-28 22:54:17.511 - info: [Router] Inject api: attachment/index 2022-07-28 22:55:15.428 - debug: [FS-LOGGER] Init. 2022-07-28 22:55:15.513 - info: [Router] Inject api: attachment/index +<<<<<<< Updated upstream >>>>>>> cc0881aafd062644a4dd75ebc176c5890198fb30 2022-07-29 09:02:42.853 - debug: [FS-LOGGER] Init. 2022-07-29 09:02:44.142 - info: [Router] Inject api: attachment/index @@ -47892,17 +47893,31 @@ 2022-07-29 09:06:17.126 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:4000', +======= +2022-08-11 08:46:17.498 - debug: [FS-LOGGER] Init. +2022-08-11 08:46:17.571 - info: [Router] Inject api: attachment/index +2022-08-11 09:01:34.295 - debug: [FS-LOGGER] Init. +2022-08-11 09:01:34.363 - info: [Router] Inject api: attachment/index +2022-08-11 09:14:10.971 - error: [FS-ERRHD] +{ + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', +>>>>>>> Stashed changes name: 'RequestError', cause: { errno: 'ECONNREFUSED', code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', +<<<<<<< Updated upstream port: 4000 +======= + port: 14000 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:4000/login', headers: { host: 'localhost:4000', @@ -47922,13 +47937,36 @@ 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/signin', +======= + url: 'http://localhost:14000/department', + headers: { + host: 'localhost:14000', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + expires: '-1', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'sec-ch-ua-platform': '"Windows"', + accept: '*/*', + 'sec-fetch-site': 'same-origin', + 'sec-fetch-mode': 'cors', + 'sec-fetch-dest': 'empty', + referer: 'http://localhost:5000/', +>>>>>>> Stashed changes 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, +<<<<<<< Updated upstream method: 'POST', body: '{"username":"SuperAdmin","password":"123456","p":"456"}', +======= + method: 'GET', + body: '[object Object]', +>>>>>>> Stashed changes simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -47936,7 +47974,11 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:4000\n' + +======= + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + +>>>>>>> Stashed changes ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + @@ -47950,20 +47992,31 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-07-29 09:06:19.281 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:4000', +======= +2022-08-11 09:14:12.760 - error: [FS-ERRHD] +{ + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', +>>>>>>> Stashed changes name: 'RequestError', cause: { errno: 'ECONNREFUSED', code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', +<<<<<<< Updated upstream port: 4000 +======= + port: 14000 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:4000/login', headers: { host: 'localhost:4000', @@ -47972,6 +48025,16 @@ 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', +======= + url: 'http://localhost:14000/login', + headers: { + host: 'localhost:14000', + connection: 'keep-alive', + 'content-length': '55', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', +>>>>>>> Stashed changes 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', @@ -47997,7 +48060,11 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:4000\n' + +======= + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + +>>>>>>> Stashed changes ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + @@ -48011,20 +48078,31 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-07-29 09:06:21.906 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:4000', +======= +2022-08-11 09:14:16.465 - error: [FS-ERRHD] +{ + message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', +>>>>>>> Stashed changes name: 'RequestError', cause: { errno: 'ECONNREFUSED', code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', +<<<<<<< Updated upstream port: 4000 +======= + port: 14000 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:4000/login', headers: { host: 'localhost:4000', @@ -48033,6 +48111,16 @@ 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', +======= + url: 'http://localhost:14000/login', + headers: { + host: 'localhost:14000', + connection: 'keep-alive', + 'content-length': '55', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', +>>>>>>> Stashed changes 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', @@ -48058,7 +48146,11 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:4000\n' + +======= + stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + +>>>>>>> Stashed changes ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + @@ -48072,6 +48164,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-07-29 09:12:14.920 - debug: [FS-LOGGER] Init. 2022-07-29 09:12:14.974 - info: [Router] Inject api: attachment/index 2022-07-29 09:12:40.846 - error: [FS-ERRHD] @@ -48085,6 +48178,9 @@ ' at dispatch (E:\\code_git\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' } 2022-07-29 09:12:41.914 - error: [FS-ERRHD] +======= +2022-08-11 09:14:29.135 - error: [FS-ERRHD] +>>>>>>> Stashed changes { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', @@ -48103,9 +48199,15 @@ host: 'localhost:14000', connection: 'keep-alive', 'content-length': '55', +<<<<<<< Updated upstream 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', +======= + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', +>>>>>>> Stashed changes 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', @@ -48145,6 +48247,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 16:13:40.289 - debug: [FS-LOGGER] Init. 2022-08-10 16:13:40.349 - info: [Router] Inject api: attachment/index 2022-08-10 16:14:33.197 - error: [FS-ERRHD] @@ -48158,6 +48261,9 @@ ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' } 2022-08-10 16:14:33.258 - error: [FS-ERRHD] +======= +2022-08-11 09:15:16.144 - error: [FS-ERRHD] +>>>>>>> Stashed changes { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', @@ -48171,6 +48277,7 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/department', headers: { host: 'localhost:14000', @@ -48194,6 +48301,34 @@ followRedirect: true, method: 'GET', body: '[object Object]', +======= + url: 'http://localhost:14000/login', + headers: { + host: 'localhost:14000', + connection: 'keep-alive', + 'content-length': '55', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'content-type': 'application/json', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', + accept: '*/*', + origin: 'http://localhost:5000', + 'sec-fetch-site': 'same-origin', + 'sec-fetch-mode': 'cors', + 'sec-fetch-dest': 'empty', + referer: 'http://localhost:5000/signin', + 'accept-encoding': 'gzip, deflate, br', + 'accept-language': 'zh-CN,zh;q=0.9' + }, + encoding: null, + followRedirect: true, + method: 'POST', + body: '{"username":"SuperAdmin","password":"123456","p":"456"}', +>>>>>>> Stashed changes simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -48202,12 +48337,21 @@ }, response: undefined, stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + +<<<<<<< Updated upstream ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -48215,7 +48359,11 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 16:14:45.676 - error: [FS-ERRHD] +======= +2022-08-11 09:17:45.654 - error: [FS-ERRHD] +>>>>>>> Stashed changes { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', @@ -48234,9 +48382,15 @@ host: 'localhost:14000', connection: 'keep-alive', 'content-length': '55', +<<<<<<< Updated upstream 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', +======= + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', +>>>>>>> Stashed changes 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', @@ -48249,7 +48403,11 @@ 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/signin', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -48263,12 +48421,21 @@ }, response: undefined, stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + +<<<<<<< Updated upstream ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -48276,7 +48443,11 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 16:14:49.479 - error: [FS-ERRHD] +======= +2022-08-11 09:20:03.273 - error: [FS-ERRHD] +>>>>>>> Stashed changes { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', @@ -48295,9 +48466,15 @@ host: 'localhost:14000', connection: 'keep-alive', 'content-length': '55', +<<<<<<< Updated upstream 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', +======= + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', +>>>>>>> Stashed changes 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', @@ -48310,7 +48487,11 @@ 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/signin', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -48324,12 +48505,21 @@ }, response: undefined, stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + +<<<<<<< Updated upstream ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -48337,6 +48527,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 16:18:57.167 - error: [FS-ERRHD] { message: 'qndmn is not defined', @@ -48348,6 +48539,9 @@ ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' } 2022-08-10 16:18:58.368 - error: [FS-ERRHD] +======= +2022-08-11 09:22:42.258 - error: [FS-ERRHD] +>>>>>>> Stashed changes { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', name: 'RequestError', @@ -48366,9 +48560,15 @@ host: 'localhost:14000', connection: 'keep-alive', 'content-length': '55', +<<<<<<< Updated upstream 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', +======= + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', +>>>>>>> Stashed changes 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', @@ -48381,7 +48581,11 @@ 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/signin', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -48395,12 +48599,21 @@ }, response: undefined, stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + +<<<<<<< Updated upstream ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -48408,6 +48621,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 16:20:43.361 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -48417,11 +48631,25 @@ code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', +======= +2022-08-11 09:22:48.358 - debug: [FS-LOGGER] Init. +2022-08-11 09:22:48.420 - info: [Router] Inject api: attachment/index +2022-08-11 09:23:50.759 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.89:14000', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.89', +>>>>>>> Stashed changes port: 14000 }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/login', headers: { host: 'localhost:14000', @@ -48430,6 +48658,16 @@ 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', +======= + url: 'http://10.8.30.89:14000/login', + headers: { + host: '10.8.30.89:14000', + connection: 'keep-alive', + 'content-length': '55', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', +>>>>>>> Stashed changes 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', @@ -48442,7 +48680,11 @@ 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/signin', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -48455,6 +48697,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -48462,6 +48705,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.89:14000\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -48469,6 +48721,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 16:20:57.696 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -48478,11 +48731,23 @@ code: 'ECONNREFUSED', syscall: 'connect', address: '127.0.0.1', +======= +2022-08-11 09:25:07.685 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.89:14000', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.89', +>>>>>>> Stashed changes port: 14000 }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/login', headers: { host: 'localhost:14000', @@ -48491,6 +48756,16 @@ 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', +======= + url: 'http://10.8.30.89:14000/login', + headers: { + host: '10.8.30.89:14000', + connection: 'keep-alive', + 'content-length': '55', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', +>>>>>>> Stashed changes 'content-type': 'application/json', 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', @@ -48503,7 +48778,11 @@ 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/signin', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -48516,6 +48795,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -48523,6 +48803,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.89:14000\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -48530,6 +48819,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 16:21:00.442 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -48540,10 +48830,25 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 09:30:09.572 - debug: [FS-LOGGER] Init. +2022-08-11 09:30:09.626 - info: [Router] Inject api: attachment/index +2022-08-11 09:44:37.703 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/login', headers: { host: 'localhost:14000', @@ -48570,6 +48875,32 @@ followRedirect: true, method: 'POST', body: '{"username":"SuperAdmin","password":"123456","p":"456"}', +======= + url: 'http://10.8.30.157:9119/data/god_trans?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', + accept: '*/*', + 'sec-fetch-site': 'same-origin', + 'sec-fetch-mode': 'cors', + 'sec-fetch-dest': 'empty', + referer: 'http://localhost:5000/screen/cockpit', + 'accept-encoding': 'gzip, deflate, br', + 'accept-language': 'zh-CN,zh;q=0.9' + }, + encoding: null, + followRedirect: true, + method: 'GET', + body: '[object Object]', +>>>>>>> Stashed changes simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -48577,6 +48908,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -48584,6 +48916,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -48591,6 +48932,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 16:25:13.144 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -48601,10 +48943,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 09:44:37.709 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/login', headers: { host: 'localhost:14000', @@ -48631,6 +48986,32 @@ followRedirect: true, method: 'POST', body: '{"username":"SuperAdmin","password":"123456","p":"456"}', +======= + url: 'http://10.8.30.157:9119/build/road_state?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', + accept: '*/*', + 'sec-fetch-site': 'same-origin', + 'sec-fetch-mode': 'cors', + 'sec-fetch-dest': 'empty', + referer: 'http://localhost:5000/screen/cockpit', + 'accept-encoding': 'gzip, deflate, br', + 'accept-language': 'zh-CN,zh;q=0.9' + }, + encoding: null, + followRedirect: true, + method: 'GET', + body: '[object Object]', +>>>>>>> Stashed changes simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -48638,6 +49019,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -48645,6 +49027,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -48652,6 +49043,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 16:28:04.674 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -48662,10 +49054,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 09:44:37.779 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/login', headers: { host: 'localhost:14000', @@ -48692,6 +49097,32 @@ followRedirect: true, method: 'POST', body: '{"username":"SuperAdmin","password":"123456","p":"456"}', +======= + url: 'http://10.8.30.157:9119/transportation/statistic?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', + accept: '*/*', + 'sec-fetch-site': 'same-origin', + 'sec-fetch-mode': 'cors', + 'sec-fetch-dest': 'empty', + referer: 'http://localhost:5000/screen/cockpit', + 'accept-encoding': 'gzip, deflate, br', + 'accept-language': 'zh-CN,zh;q=0.9' + }, + encoding: null, + followRedirect: true, + method: 'GET', + body: '[object Object]', +>>>>>>> Stashed changes simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -48699,6 +49130,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -48706,6 +49138,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -48713,6 +49154,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 16:28:13.072 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -48723,10 +49165,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 09:52:00.046 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/login', headers: { host: 'localhost:14000', @@ -48753,6 +49208,32 @@ followRedirect: true, method: 'POST', body: '{"username":"SuperAdmin","password":"123456","p":"456"}', +======= + url: 'http://10.8.30.157:9119/publicity?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', + accept: '*/*', + 'sec-fetch-site': 'same-origin', + 'sec-fetch-mode': 'cors', + 'sec-fetch-dest': 'empty', + referer: 'http://localhost:5000/screen/cockpit', + 'accept-encoding': 'gzip, deflate, br', + 'accept-language': 'zh-CN,zh;q=0.9' + }, + encoding: null, + followRedirect: true, + method: 'GET', + body: '[object Object]', +>>>>>>> Stashed changes simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -48760,6 +49241,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -48767,6 +49249,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -48774,6 +49265,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 16:29:56.345 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -48784,10 +49276,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 10:13:18.729 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/login', headers: { host: 'localhost:14000', @@ -48814,6 +49319,32 @@ followRedirect: true, method: 'POST', body: '{"username":"SuperAdmin","password":"123456","p":"456"}', +======= + url: 'http://10.8.30.157:9119/data/god_trans?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', + accept: '*/*', + 'sec-fetch-site': 'same-origin', + 'sec-fetch-mode': 'cors', + 'sec-fetch-dest': 'empty', + referer: 'http://localhost:5000/screen/cockpit', + 'accept-encoding': 'gzip, deflate, br', + 'accept-language': 'zh-CN,zh;q=0.9' + }, + encoding: null, + followRedirect: true, + method: 'GET', + body: '[object Object]', +>>>>>>> Stashed changes simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -48821,6 +49352,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -48828,6 +49360,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -48835,6 +49376,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 16:30:54.960 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -48845,10 +49387,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 10:13:18.743 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/login', headers: { host: 'localhost:14000', @@ -48875,6 +49430,32 @@ followRedirect: true, method: 'POST', body: '{"username":"SuperAdmin","password":"123456","p":"456"}', +======= + url: 'http://10.8.30.157:9119/data/god_trans?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', + accept: '*/*', + 'sec-fetch-site': 'same-origin', + 'sec-fetch-mode': 'cors', + 'sec-fetch-dest': 'empty', + referer: 'http://localhost:5000/screen/cockpit', + 'accept-encoding': 'gzip, deflate, br', + 'accept-language': 'zh-CN,zh;q=0.9' + }, + encoding: null, + followRedirect: true, + method: 'GET', + body: '[object Object]', +>>>>>>> Stashed changes simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -48882,6 +49463,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -48889,6 +49471,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -48896,6 +49487,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 16:39:29.540 - error: [FS-ERRHD] { message: 'qndmn is not defined', @@ -48916,10 +49508,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 10:13:19.276 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/login', headers: { host: 'localhost:14000', @@ -48946,6 +49551,32 @@ followRedirect: true, method: 'POST', body: '{"username":"SuperAdmin","password":"123456","p":"456"}', +======= + url: 'http://10.8.30.157:9119/transportation/statistic?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', + accept: '*/*', + 'sec-fetch-site': 'same-origin', + 'sec-fetch-mode': 'cors', + 'sec-fetch-dest': 'empty', + referer: 'http://localhost:5000/screen/cockpit', + 'accept-encoding': 'gzip, deflate, br', + 'accept-language': 'zh-CN,zh;q=0.9' + }, + encoding: null, + followRedirect: true, + method: 'GET', + body: '[object Object]', +>>>>>>> Stashed changes simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -48953,6 +49584,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -48960,6 +49592,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -48967,6 +49608,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 16:44:16.759 - debug: [FS-LOGGER] Init. 2022-08-10 16:44:16.920 - info: [Router] Inject api: attachment/index 2022-08-10 16:45:30.304 - error: [FS-ERRHD] @@ -48989,10 +49631,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 10:13:24.472 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/department', headers: { host: 'localhost:14000', @@ -49004,13 +49659,33 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/transportation/statistic?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', +<<<<<<< Updated upstream referer: 'http://localhost:5000/', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + referer: 'http://localhost:5000/screen/cockpit', + 'accept-encoding': 'gzip, deflate, br', + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -49023,6 +49698,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -49030,6 +49706,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -49037,6 +49722,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 16:45:33.431 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -49047,10 +49733,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 10:15:10.488 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/login', headers: { host: 'localhost:14000', @@ -49077,6 +49776,32 @@ followRedirect: true, method: 'POST', body: '{"username":"SuperAdmin","password":"123456","p":"456"}', +======= + url: 'http://10.8.30.157:9119/data/god_trans?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', + accept: '*/*', + 'sec-fetch-site': 'same-origin', + 'sec-fetch-mode': 'cors', + 'sec-fetch-dest': 'empty', + referer: 'http://localhost:5000/screen/cockpit', + 'accept-encoding': 'gzip, deflate, br', + 'accept-language': 'zh-CN,zh;q=0.9' + }, + encoding: null, + followRedirect: true, + method: 'GET', + body: '[object Object]', +>>>>>>> Stashed changes simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -49084,6 +49809,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -49091,6 +49817,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -49098,6 +49833,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 16:46:04.085 - error: [FS-ERRHD] { message: 'qndmn is not defined', @@ -49118,10 +49854,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 10:15:10.502 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/undefined', headers: { host: 'localhost:14000', @@ -49133,13 +49882,31 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/build/road_state?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -49152,6 +49919,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -49159,6 +49927,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -49166,6 +49943,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 16:46:04.193 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -49176,10 +49954,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 10:15:10.507 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/undefined', headers: { host: 'localhost:14000', @@ -49191,13 +49982,31 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/build/road_state?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -49210,6 +50019,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -49217,6 +50027,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -49224,6 +50043,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 16:46:04.196 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -49234,10 +50054,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 10:15:10.513 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/build/road_state', headers: { host: 'localhost:14000', @@ -49249,13 +50082,31 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/conserve/statistic?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -49268,6 +50119,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -49275,6 +50127,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -49282,6 +50143,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 16:46:04.206 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -49292,10 +50154,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 10:21:35.595 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/build/road_state', headers: { host: 'localhost:14000', @@ -49307,13 +50182,31 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/publicity?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -49326,6 +50219,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -49333,6 +50227,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -49340,6 +50243,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 16:46:04.209 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -49350,10 +50254,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 10:25:38.627 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/conserve/statistic', headers: { host: 'localhost:14000', @@ -49365,13 +50282,31 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/manage/overspeed/processed?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -49384,13 +50319,23 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -49398,6 +50343,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 16:46:04.214 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -49408,10 +50354,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 10:49:34.723 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/build/road_state', headers: { host: 'localhost:14000', @@ -49423,13 +50382,31 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/build/road_state?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -49442,6 +50419,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -49449,6 +50427,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -49456,6 +50443,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 16:46:04.217 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -49466,10 +50454,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 10:49:34.729 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/transportation/statistic', headers: { host: 'localhost:14000', @@ -49481,13 +50482,31 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/publicity?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -49500,6 +50519,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -49507,6 +50527,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -49514,6 +50543,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 16:46:04.225 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -49524,10 +50554,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 10:50:07.625 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/transportation/statistic', headers: { host: 'localhost:14000', @@ -49539,13 +50582,31 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/build/road_state?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -49558,6 +50619,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -49565,6 +50627,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -49572,6 +50643,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 16:46:04.227 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -49582,10 +50654,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 10:50:07.640 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/transportation/statistic', headers: { host: 'localhost:14000', @@ -49597,13 +50682,31 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/build/road_state?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -49616,6 +50719,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -49623,6 +50727,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -49630,6 +50743,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 16:46:04.230 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -49640,10 +50754,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 10:50:07.644 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/manage/overspeed', headers: { host: 'localhost:14000', @@ -49655,13 +50782,31 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/conserve/statistic?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -49674,6 +50819,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -49681,6 +50827,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -49688,6 +50843,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 16:51:05.210 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -49698,10 +50854,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 11:25:30.760 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/undefined', headers: { host: 'localhost:14000', @@ -49713,13 +50882,31 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/manage/overspeed?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -49732,6 +50919,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -49739,6 +50927,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -49746,6 +50943,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 16:56:05.175 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -49756,10 +50954,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 11:36:30.696 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/undefined', headers: { host: 'localhost:14000', @@ -49771,13 +50982,31 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/conserve/statistic?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -49790,6 +51019,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -49797,6 +51027,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -49804,6 +51043,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 17:01:04.196 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -49814,10 +51054,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 13:58:51.651 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/undefined', headers: { host: 'localhost:14000', @@ -49829,13 +51082,31 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/build/road_state?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -49848,6 +51119,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -49855,6 +51127,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -49862,6 +51143,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 17:02:08.178 - error: [FS-ERRHD] { message: 'qndmn is not defined', @@ -49882,10 +51164,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 13:58:51.656 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/undefined', headers: { host: 'localhost:14000', @@ -49897,13 +51192,31 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/data/god_trans?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -49916,6 +51229,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -49923,6 +51237,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -49930,6 +51253,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 17:02:08.282 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -49940,10 +51264,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 13:58:51.728 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/undefined', headers: { host: 'localhost:14000', @@ -49955,13 +51292,31 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/transportation/statistic?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -49974,6 +51329,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -49981,6 +51337,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -49988,6 +51353,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 17:02:08.284 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -49998,10 +51364,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 14:06:02.604 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/build/road_state', headers: { host: 'localhost:14000', @@ -50013,13 +51392,31 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/build/road_state?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -50032,6 +51429,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -50039,6 +51437,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -50046,6 +51453,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 17:02:08.296 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -50056,10 +51464,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 14:14:43.689 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/conserve/statistic', headers: { host: 'localhost:14000', @@ -50071,13 +51492,31 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/data/god_trans?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -50090,6 +51529,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -50097,6 +51537,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -50104,6 +51553,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 17:02:08.298 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -50114,10 +51564,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 14:14:43.695 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/build/road_state', headers: { host: 'localhost:14000', @@ -50129,13 +51592,31 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/data/god_trans?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -50148,6 +51629,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -50155,6 +51637,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -50162,6 +51653,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 17:02:08.300 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -50172,10 +51664,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 14:14:43.703 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/build/road_state', headers: { host: 'localhost:14000', @@ -50187,13 +51692,31 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/build/road_state?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -50206,6 +51729,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -50213,6 +51737,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -50220,6 +51753,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 17:02:08.303 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -50230,10 +51764,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 14:14:43.719 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/transportation/statistic', headers: { host: 'localhost:14000', @@ -50245,13 +51792,31 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/conserve/statistic?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -50264,6 +51829,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -50271,6 +51837,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -50278,6 +51853,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 17:02:08.308 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -50288,10 +51864,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 14:14:59.636 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/transportation/statistic', headers: { host: 'localhost:14000', @@ -50303,13 +51892,31 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/build/road_state?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -50322,6 +51929,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -50329,6 +51937,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -50336,6 +51953,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 17:02:08.310 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -50346,10 +51964,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 14:15:09.560 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/transportation/statistic', headers: { host: 'localhost:14000', @@ -50361,13 +51992,31 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/transportation/statistic?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -50380,6 +52029,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -50387,6 +52037,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -50394,6 +52053,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 17:02:08.313 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -50404,10 +52064,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 14:22:48.684 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/manage/overspeed', headers: { host: 'localhost:14000', @@ -50419,13 +52092,31 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/publicity?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -50438,6 +52129,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -50445,6 +52137,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -50452,6 +52153,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 17:02:14.825 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -50462,10 +52164,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 14:25:31.702 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/conserve/statistic', headers: { host: 'localhost:14000', @@ -50477,13 +52192,31 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/manage/overspeed?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -50496,6 +52229,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -50503,6 +52237,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -50510,6 +52253,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 17:02:14.829 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -50520,10 +52264,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 14:25:31.715 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/build/road_state', headers: { host: 'localhost:14000', @@ -50535,13 +52292,31 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/manage/overspeed?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -50554,6 +52329,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -50561,6 +52337,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -50568,6 +52353,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 17:02:15.496 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -50578,10 +52364,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 15:05:09.576 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/conserve/statistic', headers: { host: 'localhost:14000', @@ -50593,13 +52392,31 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/manage/overspeed?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -50612,6 +52429,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -50619,6 +52437,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -50626,6 +52453,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-10 17:02:15.498 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -50636,10 +52464,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 15:16:36.763 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/build/road_state', headers: { host: 'localhost:14000', @@ -50651,13 +52492,31 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/transportation/statistic?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -50670,6 +52529,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -66426,6 +68286,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -66433,6 +68302,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-11 09:30:22.842 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -66443,10 +68313,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 15:28:46.886 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/login', headers: { host: 'localhost:14000', @@ -66473,6 +68356,32 @@ followRedirect: true, method: 'POST', body: '{"username":"SuperAdmin","password":"123456","p":"456"}', +======= + url: 'http://10.8.30.157:9119/manage/overspeed?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', + accept: '*/*', + 'sec-fetch-site': 'same-origin', + 'sec-fetch-mode': 'cors', + 'sec-fetch-dest': 'empty', + referer: 'http://localhost:5000/screen/cockpit', + 'accept-encoding': 'gzip, deflate, br', + 'accept-language': 'zh-CN,zh;q=0.9' + }, + encoding: null, + followRedirect: true, + method: 'GET', + body: '[object Object]', +>>>>>>> Stashed changes simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -66480,6 +68389,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -66487,6 +68397,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -66494,6 +68413,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-11 09:31:01.649 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -66504,10 +68424,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 15:48:49.835 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/login', headers: { host: 'localhost:14000', @@ -66534,6 +68467,32 @@ followRedirect: true, method: 'POST', body: '{"username":"SuperAdmin","password":"123456","p":"456"}', +======= + url: 'http://10.8.30.157:9119/data/god_trans?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', + accept: '*/*', + 'sec-fetch-site': 'same-origin', + 'sec-fetch-mode': 'cors', + 'sec-fetch-dest': 'empty', + referer: 'http://localhost:5000/screen/cockpit', + 'accept-encoding': 'gzip, deflate, br', + 'accept-language': 'zh-CN,zh;q=0.9' + }, + encoding: null, + followRedirect: true, + method: 'GET', + body: '[object Object]', +>>>>>>> Stashed changes simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -66541,6 +68500,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -66548,6 +68508,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -66555,6 +68524,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-11 09:32:42.236 - error: [FS-ERRHD] { message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', @@ -66565,10 +68535,23 @@ syscall: 'connect', address: '127.0.0.1', port: 14000 +======= +2022-08-11 15:48:49.864 - error: [FS-ERRHD] +{ + message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', + name: 'RequestError', + cause: { + errno: 'ETIMEDOUT', + code: 'ETIMEDOUT', + syscall: 'connect', + address: '10.8.30.157', + port: 9119 +>>>>>>> Stashed changes }, error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://localhost:14000/undefined', headers: { host: 'localhost:14000', @@ -66580,13 +68563,31 @@ 'sec-ch-ua-mobile': '?0', 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 'sec-ch-ua-platform': '"Windows"', +======= + url: 'http://10.8.30.157:9119/build/road_state?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -66599,6 +68600,7 @@ transform2xxOnly: false }, response: undefined, +<<<<<<< Updated upstream stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + @@ -66606,6 +68608,15 @@ ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -66613,6 +68624,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-11 09:33:13.390 - debug: [FS-LOGGER] Init. 2022-08-11 09:33:13.458 - info: [Router] Inject api: attachment/index 2022-08-11 09:33:50.815 - error: [FS-ERRHD] @@ -66766,6 +68778,9 @@ ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' } 2022-08-11 10:20:01.006 - error: [FS-ERRHD] +======= +2022-08-11 15:51:02.705 - error: [FS-ERRHD] +>>>>>>> Stashed changes { message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', @@ -66779,6 +68794,7 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://10.8.30.157:9119/transportation/statistic?token=f8340d18-7bef-4b38-82cc-ea472ada6e29', headers: { host: '10.8.30.157:9119', @@ -66789,6 +68805,18 @@ 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', token: 'f8340d18-7bef-4b38-82cc-ea472ada6e29', +======= + url: 'http://10.8.30.157:9119/build/road_state?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', +>>>>>>> Stashed changes 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', @@ -66797,7 +68825,11 @@ 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -66811,12 +68843,21 @@ }, response: undefined, stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + +<<<<<<< Updated upstream ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -66824,6 +68865,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-11 10:20:42.203 - error: [FS-ERRHD] { message: 'qndmn is not defined', @@ -67095,6 +69137,9 @@ ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' } 2022-08-11 11:10:03.920 - error: [FS-ERRHD] +======= +2022-08-11 15:51:02.712 - error: [FS-ERRHD] +>>>>>>> Stashed changes { message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', @@ -67108,6 +69153,7 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'http://10.8.30.157:9119/build/road_state?token=9b53ac48-3cfd-451c-b684-2a9162d4f064', headers: { host: '10.8.30.157:9119', @@ -67118,6 +69164,18 @@ 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', token: '9b53ac48-3cfd-451c-b684-2a9162d4f064', +======= + url: 'http://10.8.30.157:9119/build/road_state?token=71088b44-de21-4bb5-b1b0-fa78c7b76245', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: '71088b44-de21-4bb5-b1b0-fa78c7b76245', +>>>>>>> Stashed changes 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', @@ -67126,7 +69184,11 @@ 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< Updated upstream 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> Stashed changes }, encoding: null, followRedirect: true, @@ -67140,12 +69202,21 @@ }, response: undefined, stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + +<<<<<<< Updated upstream ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -67153,6 +69224,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< Updated upstream 2022-08-11 11:11:05.983 - error: [FS-ERRHD] { message: 'qndmn is not defined', @@ -67353,6 +69425,7 @@ ' at F:\\Highways4Good\\web\\node_modules\\koa-66\\index.js:209:56\n' + ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' } +<<<<<<< HEAD 2022-08-11 11:27:34.525 - error: [FS-ERRHD] { message: 'qndmn is not defined', @@ -67474,6 +69547,13 @@ ' at dispatch (F:\\Highways4Good\\web\\node_modules\\koa\\node_modules\\koa-compose\\index.js:42:32)' } 2022-08-11 14:08:17.415 - error: [FS-ERRHD] +======= +======= +>>>>>>> Stashed changes +2022-08-11 16:50:04.006 - debug: [FS-LOGGER] Init. +2022-08-11 16:50:04.815 - info: [Router] Inject api: attachment/index +2022-08-11 17:00:36.904 - error: [FS-ERRHD] +>>>>>>> 19b9beb06f6736a29ddc681ae749b4770d47bbb5 { message: 'Error: connect ETIMEDOUT 10.8.30.157:9119', name: 'RequestError', @@ -67487,6 +69567,7 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< HEAD url: 'http://10.8.30.157:9119/manage/overspeed/processed?token=f8340d18-7bef-4b38-82cc-ea472ada6e29', headers: { host: '10.8.30.157:9119', @@ -67497,6 +69578,18 @@ 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', 'x-requested-with': 'XMLHttpRequest', token: 'f8340d18-7bef-4b38-82cc-ea472ada6e29', +======= + url: 'http://10.8.30.157:9119/transportation/statistic?token=f512f393-bb3e-4f9b-8b9f-7dfe6bd958e5', + headers: { + host: '10.8.30.157:9119', + connection: 'keep-alive', + 'sec-ch-ua': '"Chromium";v="104", " Not A;Brand";v="99", "Google Chrome";v="104"', + 'sec-ch-ua-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36', + 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', + 'x-requested-with': 'XMLHttpRequest', + token: 'f512f393-bb3e-4f9b-8b9f-7dfe6bd958e5', +>>>>>>> 19b9beb06f6736a29ddc681ae749b4770d47bbb5 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', @@ -67505,7 +69598,11 @@ 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/screen/cockpit', 'accept-encoding': 'gzip, deflate, br', +<<<<<<< HEAD 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' +======= + 'accept-language': 'zh-CN,zh;q=0.9' +>>>>>>> 19b9beb06f6736a29ddc681ae749b4770d47bbb5 }, encoding: null, followRedirect: true, @@ -67519,12 +69616,21 @@ }, response: undefined, stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:9119\n' + +<<<<<<< HEAD ' at new RequestError (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + ' at Request.plumbing.callback (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + ' at Request.RP$callback [as _callback] (F:\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + ' at self.callback (F:\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + ' at Request.emit (events.js:314:20)\n' + ' at Request.onRequestError (F:\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +======= + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> 19b9beb06f6736a29ddc681ae749b4770d47bbb5 ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -67532,6 +69638,7 @@ ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' } +<<<<<<< HEAD 2022-08-11 14:13:00.068 - error: [FS-ERRHD] { message: 'qndmn is not defined', @@ -69087,3 +71194,7 @@ 2022-08-12 09:20:48.461 - info: [Router] Inject api: attachment/index 2022-08-12 09:23:10.771 - debug: [FS-LOGGER] Init. 2022-08-12 09:23:10.830 - info: [Router] Inject api: attachment/index +======= +>>>>>>> 19b9beb06f6736a29ddc681ae749b4770d47bbb5 +2022-08-12 09:32:03.548 - debug: [FS-LOGGER] Init. +2022-08-12 09:32:03.611 - info: [Router] Inject api: attachment/index