diff --git a/api/app/lib/controllers/data/project.js b/api/app/lib/controllers/data/project.js index 7fb0b2a6..b1dec293 100644 --- a/api/app/lib/controllers/data/project.js +++ b/api/app/lib/controllers/data/project.js @@ -3,14 +3,24 @@ async function projectGet (ctx) { try { const models = ctx.fs.dc.models; - const { type } = ctx.query; + const { type, entryName } = ctx.query; - const projectRes = await models.Project.findAll({ + let findOption = { where: { - type + }, order: [['id', 'DESC']] - }) + } + if (type) { + findOption.where.type = type + } + if (entryName) { + findOption.where.entryName = { + $like: `%${entryName}%` + } + } + + const projectRes = await models.Project.findAll(findOption) ctx.status = 200; ctx.body = projectRes diff --git a/web/client/src/sections/auth/containers/login.js b/web/client/src/sections/auth/containers/login.js index d4ea9730..f8a6685f 100644 --- a/web/client/src/sections/auth/containers/login.js +++ b/web/client/src/sections/auth/containers/login.js @@ -25,7 +25,7 @@ const Login = props => { }, [error]) useEffect(() => { - user && user.authorized ? dispatch(push('/quanju')) : null + user && user.authorized ? dispatch(push('/screen/cockpit')) : null }, [user]) const enterHandler = e => { diff --git a/web/client/src/sections/fillion/actions/infor.js b/web/client/src/sections/fillion/actions/infor.js index 2fcc0841..faa48253 100644 --- a/web/client/src/sections/fillion/actions/infor.js +++ b/web/client/src/sections/fillion/actions/infor.js @@ -63,7 +63,7 @@ export function putSpecificVehicle(query) { data: query, actionType: 'put_SPECIFIC_VEHICLE', url: ApiTable.putSpecificVehicle, - msg: { error: '编辑车辆信息失败' }, + msg: { option: '编辑车辆信息' }, }); } @@ -74,7 +74,7 @@ export function putHouseholds(query) { data: query, actionType: 'put_HOUSEHOLDS', url: ApiTable.putHouseholds, - msg: { error: '编辑业户信息失败' }, + msg: { option: '编辑业户信息' }, }); } @@ -107,7 +107,7 @@ export function putRoadway(query) { data: query, actionType: 'PUT_ROADWAY', url: ApiTable.putRoadway, - msg: { error: '编辑道路信息失败' }, + msg: { option: '编辑道路信息' }, }); } @@ -129,7 +129,7 @@ export function putBridge(query) { data: query, actionType: 'PUT_BRIDGE', url: ApiTable.putBridge, - msg: { error: '编辑桥梁信息失败' }, + msg: { option: '编辑桥梁信息' }, }); } @@ -151,7 +151,7 @@ export function putProject(query) { data: query, actionType: 'GET_PROJECT', url: ApiTable.putProject, - msg: { error: '编辑工程信息失败' }, + msg: { option: '编辑工程信息' }, }); } @@ -173,7 +173,7 @@ export function putHighways(query) { data: query, actionType: 'GET_HIGHWAYS', url: ApiTable.putHighways, - msg: { error: '编辑路政信息失败' }, + msg: { option: '编辑路政信息' }, }); } @@ -195,7 +195,7 @@ export function putCircuit(query) { data: query, actionType: 'PUT_CIRCUIT', url: ApiTable.putCircuit, - msg: { error: '编辑线路信息失败' }, + msg: { option: '编辑线路信息' }, }); } @@ -217,7 +217,7 @@ export function putVehicle(query) { data: query, actionType: 'PUT_VEHICLE', url: ApiTable.putVehicle, - msg: { error: '编辑车辆信息失败' }, + msg: { option: '编辑车辆信息' }, }); } @@ -227,7 +227,7 @@ export function delRoadway(query) { dispatch: dispatch, actionType: 'DEL_ROADWAY', url: ApiTable.delRoadway.replace("{roadId}", query?.roadId), - msg: { error: '删除车辆信息失败' }, + msg: { option: '删除车辆信息' }, }); } @@ -237,7 +237,7 @@ export function delProject(query) { dispatch: dispatch, actionType: 'DEL_PROJECT', url: ApiTable.delProject.replace("{projectId}", query?.projectId), - msg: { error: '删除工程信息失败' }, + msg: { option: '删除工程信息' }, }); } @@ -247,7 +247,7 @@ export function delBridge(query) { dispatch: dispatch, actionType: 'DEL_BRIDGE', url: ApiTable.delBridge.replace("{bridgeId}", query?.bridgeId), - msg: { error: '删除桥梁信息失败' }, + msg: { option: '删除桥梁信息' }, }); } @@ -257,7 +257,7 @@ export function delSpecificVehicle(query) { dispatch: dispatch, actionType: 'DEL_SPECIFICVENICLE', url: ApiTable.delSpecificVehicle.replace("{vehicleId}", query?.vehicleId), - msg: { error: '删除车辆信息失败' }, + msg: { option: '删除车辆信息' }, }); } @@ -267,7 +267,7 @@ export function delHouseholds(query) { dispatch: dispatch, actionType: 'DEL_HOUSEHOLDS', url: ApiTable.delHouseholds.replace("{businessId}", query?.businessId), - msg: { error: '删除业户信息失败' }, + msg: { option: '删除业户信息' }, }); } @@ -277,7 +277,7 @@ export function delCircuit(query) { dispatch: dispatch, actionType: 'DEL_CIRCUIT', url: ApiTable.delCircuit.replace("{lineId}", query?.lineId), - msg: { error: '删除运营线路信息失败' }, + msg: { option: '删除运营线路信息' }, }); } @@ -287,7 +287,7 @@ export function delVehicle(query) { dispatch: dispatch, actionType: 'DEL_VEHICLE', url: ApiTable.delVehicle.replace("{carId}", query?.carId), - msg: { error: '删除车辆信息失败' }, + msg: { option: '删除车辆信息' }, }); } @@ -310,7 +310,7 @@ export function putPurchase(query) { data: query, actionType: 'PUT_PURCHASE', url: ApiTable.putPurchase, - msg: { error: '获取治超信息失败' }, + msg: { option: '编辑治超信息' }, }); } @@ -320,7 +320,7 @@ export function delPurchase(query) { dispatch: dispatch, actionType: 'DEL_PURCHASE', url: ApiTable.delPurchase.replace("{overspeedId}", query?.overspeedId), - msg: { error: '删除车辆信息失败' }, + msg: { option: '删除车辆信息' }, }); } \ No newline at end of file diff --git a/web/client/src/sections/fillion/components/bridgeTable.js b/web/client/src/sections/fillion/components/bridgeTable.js index 2f46b175..c6761572 100644 --- a/web/client/src/sections/fillion/components/bridgeTable.js +++ b/web/client/src/sections/fillion/components/bridgeTable.js @@ -24,6 +24,7 @@ const BrideTable = (props) => { const [recortd, setRecortd] = useState() const [whichofits, setWhichofits] = useState('qiaoliang') const [delet, setDelet] = useState() + const [differentiate, setDifferentiate] = useState('bridge') const ref = useRef() useEffect(() => { ref.current.reload() }, [whichofits, delet]) @@ -1506,7 +1507,7 @@ const BrideTable = (props) => { return
@@ -1690,7 +1691,7 @@ const BrideTable = (props) => { return
{ deldatas(record.id) }}> @@ -1750,22 +1751,6 @@ const BrideTable = (props) => { setModalRecord(null); } } - //批量导出 - const exports = (ids, counts) => { - // console.log(user); - let reportIds = []; - if (ids.length) - reportIds = ids - else - reportIds = (counts || {}).ids || []; - superagent.post('/_report/http') - .send({ id: reportIds.map(i => Number(i)) }).end((err, res) => { - const resTextIs = res.text.split('/').pop() - window.open( - '/_api/' + - `attachments?src=files/${resTextIs}&filename=${encodeURIComponent(resTextIs)}&token=${user.token}`) - }) - } return (
@@ -1782,12 +1767,14 @@ const BrideTable = (props) => { key: 'tab1', label: { setWhichofits('qiaoliang') + setDifferentiate('bridge') }}>桥梁{activeKey === 'tab1'}, }, { key: 'tab2', label: { setWhichofits('gongcheng') + setDifferentiate('project') }}>工程一览{activeKey === 'tab2'}, }, @@ -1844,7 +1831,7 @@ const BrideTable = (props) => { defaultCollapsed: false, optionRender: (searchConfig, formProps, dom) => [ ...dom.reverse(), - { props.exports(rowSelected, counts) }}> + { props.exports(rowSelected,differentiate) }}>
diff --git a/web/client/src/sections/fillion/components/highways/highwaysdata.js b/web/client/src/sections/fillion/components/highways/highwaysdata.js index 854781da..c5bc3851 100644 --- a/web/client/src/sections/fillion/components/highways/highwaysdata.js +++ b/web/client/src/sections/fillion/components/highways/highwaysdata.js @@ -47,7 +47,7 @@ const HightModal = (props) => { }} initialValues={recortd} > - {typecard == '111' ? + {typecard == 'compile' ? { } else { setModalRecord(null); } -} - //批量导出 -const exports = (ids, counts) => { - // console.log(user); - let reportIds = []; - if (ids.length) - reportIds = ids - else - reportIds = (counts || {}).ids || []; - superagent.post('/_report/http') - .send({ id: reportIds.map(i => Number(i)) }).end((err, res) => { - const resTextIs = res.text.split('/').pop() - window.open( - '/_api/' + - `attachments?src=files/${resTextIs}&filename=${encodeURIComponent(resTextIs)}&token=${user.token}`) - }) -} +} const columns = [ { @@ -91,7 +75,7 @@ const exports = (ids, counts) => { return
diff --git a/web/client/src/sections/fillion/components/infor/details.js b/web/client/src/sections/fillion/components/infor/details.js index 73b24c7d..4df3a38c 100644 --- a/web/client/src/sections/fillion/components/infor/details.js +++ b/web/client/src/sections/fillion/components/infor/details.js @@ -1,12 +1,12 @@ import React, { useEffect, useState } from 'react'; import { connect } from 'react-redux'; import { Form, Spin, Table } from 'antd'; -import { DrawerForm, ProForm, ProFormText, ProFormSelect } from '@ant-design/pro-form'; +import { DrawerForm, ProForm, ProFormText, ProFormSelect,ProFormDatePicker } from '@ant-design/pro-form'; import { putRoadway, putSpecificVehicle, putHouseholds, putCircuit, putVehicle, putPurchase } from "../../actions/infor" import { putBridge } from "../../actions/infor" -import _ from 'lodash' +import _ from 'lodash' const UserModal = (props) => { - const { visible, onVisibleChange, typecard, rewkeys, data, recortd, sitename, dispatch, setRecortd, setMonitor,setDelet,whichofits } = props + const { visible, onVisibleChange, typecard, rewkeys, data, recortd, sitename, dispatch, setRecortd, setMonitor, setDelet, whichofits } = props const [newlys, setNewlys] = useState() //必填数据 const [newlysay, setNewlysay] = useState() //处理hou const [records, setRecords] = useState()//处理 @@ -70,6 +70,7 @@ const UserModal = (props) => { array.push({ name: value, type: key }) }); setNewlys(array?.splice(0, 2)) + array?.splice(6, 1) setNewlysay(array) } }, []) @@ -150,122 +151,142 @@ const UserModal = (props) => { onFinish={(values) => { if (Object.values(values).length > 0) { if (rewkeys === 'transportation') { - - if (typecard == '111') { + + if (typecard == 'compile') { setDelet(values) const query = { ...values, level: whichofits, roadId: records?.[0]?.value || '' } dispatch(putRoadway(query)).then((res) => { - - }) - return true + }) + return true } else { setDelet(values) const query = { ...values, level: whichofits } dispatch(putRoadway(query)).then((res) => { - - }) + return true } + } if (rewkeys === 'bridge') { - if (typecard == '111') { - setDelet(values) - const query = { ...values, roadId: records?.[0]?.value || '' } + if (typecard == 'compile') { + setDelet(values) + const query = { ...values, bridgeId: records?.[0]?.value || '' } dispatch(putBridge(query)).then((res) => { - + }) return true } else { - setDelet(values) + setDelet(values) const query = { ...values } dispatch(putBridge(query)).then((res) => { - + + }) + return true + } + } + if (rewkeys === 'weihuo') { + if (typecard == 'compile') { + + setDelet(values) + const query = { ...values, vehicleId: records?.[0]?.value || '', type: '危货' } + dispatch(putSpecificVehicle(query)).then((res) => { + + }) + return true + } else { + + setDelet(values) + const query = { ...values, type: '危货' } + dispatch(putSpecificVehicle(query)).then((res) => { + }) return true } } - if (rewkeys === 'weihuo' || rewkeys === 'chuzu') { - if (typecard == '111') { + if (rewkeys === 'chuzu') { + if (typecard == 'compile') { + setDelet(values) - const query = { ...values, vehicleId: records?.[0]?.value || '', type: rewkeys == 'chuzu' ? '出租车' : '危货' } + const query = { ...values, vehicleId: records?.[0]?.value || '', type: '出租车' } dispatch(putSpecificVehicle(query)).then((res) => { - + }) return true } else { - setDelet(values) - const query = { ...values, type: rewkeys == 'chuzu' ? '出租车' : '危货' } + + setDelet(values) + const query = { ...values, type: '出租车' } dispatch(putSpecificVehicle(query)).then((res) => { - + }) return true } } if (rewkeys === 'yehu') { - if (typecard == '111') { + if (typecard == 'compile') { setDelet(values) - const query = { ...values, businessId: records?.[0]?.value, type: rewkeys == 'chuzu' ? '出租车' : '危货' } + const query = { ...values, businessId: records?.[0]?.value, type: values.type } dispatch(putHouseholds(query)).then((res) => { - + }) return true } else { - setDelet(values) - const query = { ...values, type: rewkeys === 'chuzu' ? '出租车' : '危货' } + setDelet(values) + const query = { ...values, type: values.type } dispatch(putHouseholds(query)).then((res) => { - + }) return true } } if (rewkeys === 'xianlu') { - if (typecard == '111') { + if (typecard == 'compile') { setDelet(values) const query = { ...values, lineId: records?.[0]?.value || '' } dispatch(putCircuit(query)).then((res) => { - + }) return true } else { - setDelet(values) + setDelet(values) const query = { ...values } dispatch(putCircuit(query)).then((res) => { - + }) return true } } if (rewkeys === 'cheliang') { - if (typecard == '111') { + if (typecard == 'compile') { setDelet(values) const query = { ...values, carId: records?.[0]?.value || '' } dispatch(putVehicle(query)).then((res) => { - + }) return true } else { - setDelet(values) + setDelet(values) const query = { ...values } dispatch(putVehicle(query)).then((res) => { - + }) return true } } if (rewkeys === 'zhichao') { - if (typecard == '111') { + if (typecard == 'compile') { setDelet(values) const query = { ...values, overspeedId: records?.[0]?.value || '' } dispatch(putPurchase(query)).then((res) => { - + setMonitor(res) }) return true } else { - setDelet(values) + setDelet(values) const query = { ...values } dispatch(putPurchase(query)).then((res) => { - + setMonitor(res) }) return true @@ -276,14 +297,13 @@ const UserModal = (props) => { }} initialValues={recortd} > - {typecard == '111' ? + {typecard == 'compile' ? { name={newlys?.[1]?.type} width="md" label={newlys?.[1]?.name} - + placeholder="请输入名称" value={recordsay?.[1]?.value} // rules={[{ required: true, message: "必填" }]} @@ -312,6 +332,7 @@ const UserModal = (props) => { label='类型' /> : null } + {rewkeys === 'zhichao'?:''} {newlysay?.map((item, index) => { return { name={newlys?.[0]?.type} width="md" label={newlys?.[0]?.name} - + placeholder="请输入名称" // value={recordssy?.[0]?.value} // rules={[{ required: true, message: "必填" }]} @@ -333,7 +354,7 @@ const UserModal = (props) => { name={newlys?.[1]?.type} width="md" label={newlys?.[1]?.name} - + placeholder="请输入名称" // value={recordssy?.[1]?.value} // rules={[{ required: true, message: "必填" }]} @@ -354,10 +375,11 @@ const UserModal = (props) => { label='类型' /> : null } + {rewkeys === 'zhichao'?:''} {newlysay?.map((item, index) => { return })} diff --git a/web/client/src/sections/fillion/components/inforTable.js b/web/client/src/sections/fillion/components/inforTable.js index 11b05946..44b26b61 100644 --- a/web/client/src/sections/fillion/components/inforTable.js +++ b/web/client/src/sections/fillion/components/inforTable.js @@ -35,22 +35,6 @@ const InForTable = (props) => { setModalRecord(null); } } - //批量导出 - const exports = (ids, counts) => { - // console.log(user); - let reportIds = []; - if (ids.length) - reportIds = ids - else - reportIds = (counts || {}).ids || []; - superagent.post('/_report/http') - .send({ id: reportIds.map(i => Number(i)) }).end((err, res) => { - const resTextIs = res.text.split('/').pop() - window.open( - '/_api/' + - `attachments?src=files/${resTextIs}&filename=${encodeURIComponent(resTextIs)}&token=${user.token}`) - }) - } const deldata = (id) => { // 治超删除 const query = { overspeedId: id @@ -213,7 +197,7 @@ const InForTable = (props) => { dataIndex: 'createdAt', valueType: 'date', render: (dom, record) => { - return record.testTime + return record.testTime.slice(0,10) }, fieldProps: { onChange: (value, cs) => { @@ -369,7 +353,7 @@ const InForTable = (props) => { return
@@ -463,7 +447,10 @@ const InForTable = (props) => { defaultCollapsed: false, optionRender: (searchConfig, formProps, dom) => [ ...dom.reverse(), - { props.exports(rowSelected, counts) }}> + { + console.log(rowSelected) + + props.exports(rowSelected, counts) }}>
@@ -710,7 +697,7 @@ const OperaTionalTable = (props) => { return
{ deldata(record.id) }}> @@ -1343,7 +1330,7 @@ const OperaTionalTable = (props) => { return
{ deldata(record.id) }}> @@ -1813,7 +1800,7 @@ const OperaTionalTable = (props) => { return
{ deldatas(record.id) }}> @@ -1880,6 +1867,8 @@ const OperaTionalTable = (props) => { label: { { setRewkeys('chuzu') + setDifferentiate('vehicle') + setGenre('出租车') } }}>出租车{activeKey === 'tab2'}, @@ -1889,13 +1878,17 @@ const OperaTionalTable = (props) => { label: { { setRewkeys('weihuo') + setDifferentiate('vehicle') + setGenre('危货') + } }}>危险货运{activeKey === 'tab3'}, }, { key: 'tab4', label: { - setRewkeys('yehu') + setDifferentiate('business') + setRewkeys('yehu') }}>业户{activeKey === 'tab4'}, }, @@ -1973,7 +1966,7 @@ const OperaTionalTable = (props) => { defaultCollapsed: false, optionRender: (searchConfig, formProps, dom) => [ ...dom.reverse(), - ['tab2', 'tab3', 'tab4'].includes(activeKey) ? { props.exports(rowSelected, counts) }}> + ['tab2', 'tab3', 'tab4'].includes(activeKey) ? { props.exports(rowSelected,differentiate,genre) }}> { deldata(record.id) }}> @@ -1119,7 +1103,7 @@ const PublicTable = (props) => { return
{ deldatas(record.id) }}> diff --git a/web/client/src/sections/fillion/components/transportationTable.js b/web/client/src/sections/fillion/components/transportationTable.js index 7992b4e7..53cba191 100644 --- a/web/client/src/sections/fillion/components/transportationTable.js +++ b/web/client/src/sections/fillion/components/transportationTable.js @@ -21,6 +21,8 @@ const TransporTationTable = (props) => { const [recortd, setRecortd] = useState() const [whichofits, setWhichofits] = useState('县') const [delet, setDelet] = useState() + const [differentiate, setDifferentiate] = useState('road') + const [grade, setGrade] = useState('县') const ref = useRef() useEffect(() => { ref.current.reload() }, [whichofits, delet]) //打开弹窗 @@ -60,22 +62,6 @@ const TransporTationTable = (props) => { setDelet(res) }) } - //批量导出 - const exports = (ids, counts) => { - // console.log(user); - let reportIds = []; - if (ids.length) - reportIds = ids - else - reportIds = (counts || {}).ids || []; - superagent.post('/_report/http') - .send({ id: reportIds.map(i => Number(i)) }).end((err, res) => { - const resTextIs = res.text.split('/').pop() - window.open( - '/_api/' + - `attachments?src=files/${resTextIs}&filename=${encodeURIComponent(resTextIs)}&token=${user.token}`) - }) - } const columns = { tab1: [ { @@ -1192,7 +1178,7 @@ const TransporTationTable = (props) => { onClick={() => { setRecortd(record) openModal('edit', record) - setTypecard('111') + setTypecard('compile') }} >编辑 { deldata(record.id) }}> @@ -3750,23 +3736,33 @@ const TransporTationTable = (props) => { key: 'tab1', label: { setWhichofits('县') + setDifferentiate('road') + setGrade('县') }}>县道{activeKey === 'tab1'}, }, { key: 'tab2', label: { setWhichofits('乡') + setGrade('乡') + setDifferentiate('road') + }}>乡道{activeKey === 'tab2'}, }, { key: 'tab3', label: { setWhichofits('村') + setDifferentiate('road') + setGrade('村') + }}>村道{activeKey === 'tab3'}, }, { key: 'tab4', label: { setWhichofits('gongcheng') + setDifferentiate('project') + }}>工程一览{activeKey === 'tab4'}, }, ], @@ -3846,7 +3842,7 @@ const TransporTationTable = (props) => { defaultCollapsed: false, optionRender: (searchConfig, formProps, dom) => [ ...dom.reverse(), - { props.exports(rowSelected, counts) }}> + { props.exports(rowSelected,grade,differentiate) }}>
)}
) } - const xuandata1 = undefined + // const xuandata1 = [ + // { + // "id": 26, + // "name": "111", + // "video":null, + // "enable": true + // } + // ] console.log(localStorage.getItem("qndmn"),'七牛') + console.log(xuandata,"宣传") return (
@@ -193,7 +201,7 @@ const Build = (props) => { }} customize={true}>
{/* */} - +

全面建设好农村公路,切实发挥先行官作用

diff --git a/web/client/src/sections/quanju/containers/footer/conserve/chart/pie-chart.js b/web/client/src/sections/quanju/containers/footer/conserve/chart/pie-chart.js index f1460b8a..3796a83c 100644 --- a/web/client/src/sections/quanju/containers/footer/conserve/chart/pie-chart.js +++ b/web/client/src/sections/quanju/containers/footer/conserve/chart/pie-chart.js @@ -62,7 +62,7 @@ const PieChart = (props) => { { type: 'image', style: { - image: 'assets/images/quanju/chart-circle.png', + image: '/assets/images/quanju/chart-circle.png', width: 110, height: 110, align: 'center', diff --git a/web/client/src/sections/quanju/containers/footer/conserve/index.js b/web/client/src/sections/quanju/containers/footer/conserve/index.js index 8d6328c1..7a141fe5 100644 --- a/web/client/src/sections/quanju/containers/footer/conserve/index.js +++ b/web/client/src/sections/quanju/containers/footer/conserve/index.js @@ -19,24 +19,25 @@ const Conserve = (props) => { setLoading(false) setRoadData(res.payload.data || {}) }) - dispatch(getHighways()).then(res => { + dispatch(getHighways()).then(res =>{ setHighwaysData(res.payload.data || []) }) - dispatch(getRoadMaintenances()).then(res => { + dispatch(getRoadMaintenances()).then(res =>{ setRoadMaintenances(res.payload.data || []) }) }, []) return ( -
-
- - -
+
+
+ +
+
) } function mapStateToProps(state) { + // const { auth } = state; return { diff --git a/web/client/src/sections/quanju/containers/footer/conserve/left/left-center.js b/web/client/src/sections/quanju/containers/footer/conserve/left/left-center.js index 94ed8fa9..9aa8b9ea 100644 --- a/web/client/src/sections/quanju/containers/footer/conserve/left/left-center.js +++ b/web/client/src/sections/quanju/containers/footer/conserve/left/left-center.js @@ -227,8 +227,8 @@ const LeftCenter = (props) => { - icon - 可绿化里程总数 + icon + 可绿化里程总数 {totalData.toFixed(3) || 0} diff --git a/web/client/src/sections/quanju/containers/footer/conserve/left/left-top.js b/web/client/src/sections/quanju/containers/footer/conserve/left/left-top.js index 5a3fc468..944fdf81 100644 --- a/web/client/src/sections/quanju/containers/footer/conserve/left/left-top.js +++ b/web/client/src/sections/quanju/containers/footer/conserve/left/left-top.js @@ -204,13 +204,13 @@ const LeftTop = (props) => {
- - { { item?.map(i => (
- icon + icon
{i.name}
{`${i.count}个`}
diff --git a/web/client/src/sections/quanju/containers/footer/conserve/right/right-top.js b/web/client/src/sections/quanju/containers/footer/conserve/right/right-top.js index 11ed88f3..44d92965 100644 --- a/web/client/src/sections/quanju/containers/footer/conserve/right/right-top.js +++ b/web/client/src/sections/quanju/containers/footer/conserve/right/right-top.js @@ -46,7 +46,7 @@ const RightTop = (props) => { { item?.map(i => (
- icon + icon
{i.name}
{`${i.count}${i.unit}`}
diff --git a/web/client/src/sections/quanju/containers/footer/operation/left.js b/web/client/src/sections/quanju/containers/footer/operation/left.js index 2966deaf..175efc1e 100644 --- a/web/client/src/sections/quanju/containers/footer/operation/left.js +++ b/web/client/src/sections/quanju/containers/footer/operation/left.js @@ -5,8 +5,6 @@ import Module from '../../public/module' import { getBusTierList } from '../../../actions/example' import './style.less' - - const Left = (props) => { const [treeData, setTreeData] = useState([]) const [treeDataList, setTreeDataList] = useState([]) @@ -29,12 +27,12 @@ const Left = (props) => { const onChange = (e) => { const { value } = e.target; - let keys = [] - const newExpandedKeys = treeDataList.filter(e => e.key.match(value)) + let titles = [] + const newExpandedKeys = treeDataList.filter(e => e.title != null && e.title.match(value)) newExpandedKeys.forEach(e => { - keys.push(e.key) + titles.push(e.title) }) - setExpandedKeys(keys); + setExpandedKeys(titles); setSearchValue(value); setAutoExpandParent(true); }; @@ -78,51 +76,53 @@ const Left = (props) => { let busTierOpen = [] let dataList = [] let busTierNewList = [] - if (busTier && busTier.data && busTier.data.length > 0) { - busTierNewList.push(busTier && busTier.data && busTier.data[0]) - } - if (busTierNewList.length > 0) { - busTierNewList.forEach((e, index) => { - if (index == 0) { - busTierOpen.push(e.name) - } - busTierList.push({ - key: e.name, - title: e.name, - children: e.child.map(s => { - return { - key: s.name, - title: s.name, - children: s.child.map(i => { - return { - key: i.name, - title: i.name, - children: i.child.map(x => { - return { - key: x.name, - title: x.name, - } - }) - } - }) - } + // Math.ceil(Math.random() * 100); + // if (busTier && busTier.data && busTier.data.length > 0) { + // busTierNewList.push(busTier && busTier.data && busTier.data[0]) + // } + // if (busTierNewList.length > 0) { + // } + busTier && busTier.data && busTier.data.forEach((e, index) => { + if (index == 0) { + busTierOpen.push(e.name) + } + busTierList.push({ + key: e.name, + title: e.name, + children: e.child.map(s => { + return { + key: s.name == '--' || s.name == null ? Math.ceil(Math.random() * 100) : s.name, + title: s.name, + children: s.child.map(i => { + return { + key: i.name == '--' || i.name == null ? Math.ceil(Math.random() * 100) : i.name, + title: i.name, + children: i.child.map(x => { + return { + key: x.name == '--' || x.name == null ? Math.ceil(Math.random() * 100) : x.name, + title: x.name == null ? '--' : x.name, + } + }) + + } + }) + } - }) }) }) - busTierNewList.forEach(e => { - e.child.forEach(i => { - i.child.forEach(s => { - s.child.forEach(x => { - dataList.push({ - key: x.name, - title: x.name - }) + }) + busTier && busTier.data && busTier.data.forEach(e => { + e.child.forEach(i => { + i.child.forEach(s => { + s.child.forEach(x => { + dataList.push({ + key: x.name, + title: x.name }) }) }) }) - } + }) setTreeData(busTierList) setExpandedKeys(busTierOpen) setTreeDataList(dataList) @@ -132,7 +132,7 @@ const Left = (props) => {
- + { dataLists.map((data, index) => (
- +

所属线路

{data.route}

@@ -49,15 +49,15 @@ const Right = () => {
+ }}>
+ }}>
+ }}>
)) diff --git a/web/log/development.txt b/web/log/development.txt index 2bae49ab..e69de29b 100644 --- a/web/log/development.txt +++ b/web/log/development.txt @@ -1,30720 +0,0 @@ -2022-03-11 15:24:58.542 - debug: [FS-LOGGER] Init. -2022-03-11 15:24:58.796 - info: [Router] Inject api: attachment/index -2022-03-11 15:31:30.837 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:4100', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 4100 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://127.0.0.1:4100/project/login', - headers: { - host: '127.0.0.1:4100', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '" Not A;Brand";v="99", "Chromium";v="96", "Google Chrome";v="96"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 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,zh-CN;q=0.9,en-US;q=0.8,en;q=0.7', - cookie: 'Hm_lvt_47cbd117ffe2172b90dbe53c3f3b2f1c=1644892216,1646099503; SL_GWPT_Show_Hide_tmp=undefined; SL_G_WPT_TO=zh; SL_wptGlobTipTmp=undefined; Hm_lpvt_47cbd117ffe2172b90dbe53c3f3b2f1c=1646804937; pepToken=8c365488-ac71-4de6-acf4-43d4fe7eabef' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"654321","p":"456"}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:4100\n' + - ' at new RequestError (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:428:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-03-11 15:31:32.866 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:4100', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 4100 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://127.0.0.1:4100/project/login', - headers: { - host: '127.0.0.1:4100', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '" Not A;Brand";v="99", "Chromium";v="96", "Google Chrome";v="96"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 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,zh-CN;q=0.9,en-US;q=0.8,en;q=0.7', - cookie: 'Hm_lvt_47cbd117ffe2172b90dbe53c3f3b2f1c=1644892216,1646099503; SL_GWPT_Show_Hide_tmp=undefined; SL_G_WPT_TO=zh; SL_wptGlobTipTmp=undefined; Hm_lpvt_47cbd117ffe2172b90dbe53c3f3b2f1c=1646804937; pepToken=8c365488-ac71-4de6-acf4-43d4fe7eabef' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"654321","p":"456"}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:4100\n' + - ' at new RequestError (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:428:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-03-11 15:32:47.799 - debug: [FS-LOGGER] Init. -2022-03-11 15:32:47.982 - info: [Router] Inject api: attachment/index -2022-03-11 15:39:07.350 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://127.0.0.1:14000/enterprises/undefined/members?token=136621db-739e-4817-bbc8-1e48a047178e', - headers: { - host: '127.0.0.1:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not A;Brand";v="99", "Chromium";v="96", "Google Chrome";v="96"', - 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/96.0.4664.110 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/example/e1', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh,zh-CN;q=0.9,en-US;q=0.8,en;q=0.7', - cookie: 'Hm_lvt_47cbd117ffe2172b90dbe53c3f3b2f1c=1644892216,1646099503; SL_GWPT_Show_Hide_tmp=undefined; SL_G_WPT_TO=zh; SL_wptGlobTipTmp=undefined; Hm_lpvt_47cbd117ffe2172b90dbe53c3f3b2f1c=1646804937; pepToken=8c365488-ac71-4de6-acf4-43d4fe7eabef' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:428:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-04-26 16:22:38.937 - debug: [FS-LOGGER] Init. -2022-04-26 16:22:38.994 - info: [Router] Inject api: attachment/index -2022-04-26 16:24:14.763 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://127.0.0.1:14000/login', - headers: { - host: '127.0.0.1:14000', - connection: 'keep-alive', - 'content-length': '55', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - 'content-type': 'application/json', - 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"}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\智慧应急\\trunk\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\智慧应急\\trunk\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\智慧应急\\trunk\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\智慧应急\\trunk\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\智慧应急\\trunk\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-04-26 16:25:48.770 - debug: [FS-LOGGER] Init. -2022-04-26 16:25:48.822 - info: [Router] Inject api: attachment/index -2022-04-27 08:22:44.239 - debug: [FS-LOGGER] Init. -2022-04-27 08:22:44.315 - info: [Router] Inject api: attachment/index -2022-04-28 14:05:23.315 - debug: [FS-LOGGER] Init. -2022-04-28 14:05:23.386 - info: [Router] Inject api: attachment/index -2022-04-29 09:11:40.683 - debug: [FS-LOGGER] Init. -2022-04-29 09:11:40.748 - info: [Router] Inject api: attachment/index -2022-04-29 11:18:28.238 - debug: [FS-LOGGER] Init. -2022-04-29 11:18:28.589 - info: [Router] Inject api: attachment/index -2022-04-29 15:29:15.850 - debug: [FS-LOGGER] Init. -2022-04-29 15:29:15.905 - info: [Router] Inject api: attachment/index -2022-04-29 17:47:10.734 - debug: [FS-LOGGER] Init. -2022-04-29 17:47:11.075 - info: [Router] Inject api: attachment/index -2022-05-05 08:24:36.443 - debug: [FS-LOGGER] Init. -2022-05-05 08:24:36.516 - info: [Router] Inject api: attachment/index -2022-05-05 08:26:00.485 - debug: [FS-LOGGER] Init. -2022-05-05 08:26:00.535 - info: [Router] Inject api: attachment/index -2022-05-05 11:18:26.949 - debug: [FS-LOGGER] Init. -2022-05-05 11:18:26.999 - info: [Router] Inject api: attachment/index -2022-05-05 11:21:27.396 - debug: [FS-LOGGER] Init. -2022-05-05 11:21:27.445 - info: [Router] Inject api: attachment/index -2022-05-05 14:03:43.946 - debug: [FS-LOGGER] Init. -2022-05-05 14:03:44.000 - info: [Router] Inject api: attachment/index -2022-05-05 14:25:10.162 - debug: [FS-LOGGER] Init. -2022-05-05 14:25:10.211 - info: [Router] Inject api: attachment/index -2022-05-05 15:00:00.205 - debug: [FS-LOGGER] Init. -2022-05-05 15:00:00.257 - info: [Router] Inject api: attachment/index -2022-05-05 15:34:21.861 - debug: [FS-LOGGER] Init. -2022-05-05 15:34:22.269 - info: [Router] Inject api: attachment/index -2022-05-05 15:41:59.674 - debug: [FS-LOGGER] Init. -2022-05-05 15:41:59.728 - info: [Router] Inject api: attachment/index -2022-05-05 16:27:48.108 - debug: [FS-LOGGER] Init. -2022-05-05 16:27:48.161 - info: [Router] Inject api: attachment/index -2022-05-05 17:16:49.579 - debug: [FS-LOGGER] Init. -2022-05-05 17:16:49.631 - info: [Router] Inject api: attachment/index -2022-05-06 08:35:09.722 - debug: [FS-LOGGER] Init. -2022-05-06 08:35:09.792 - info: [Router] Inject api: attachment/index -2022-05-06 09:01:25.138 - debug: [FS-LOGGER] Init. -2022-05-06 09:01:25.188 - info: [Router] Inject api: attachment/index -2022-05-06 09:37:38.434 - debug: [FS-LOGGER] Init. -2022-05-06 09:37:38.489 - info: [Router] Inject api: attachment/index -2022-05-06 13:33:53.162 - debug: [FS-LOGGER] Init. -2022-05-06 13:33:53.219 - info: [Router] Inject api: attachment/index -<<<<<<< .mine2022-05-13 13:58:14.928 - debug: [FS-LOGGER] Init. -2022-05-13 13:58:14.991 - info: [Router] Inject api: attachment/index -2022-05-14 08:29:29.594 - debug: [FS-LOGGER] Init. -2022-05-14 08:29:29.674 - info: [Router] Inject api: attachment/index -2022-05-14 09:22:50.473 - debug: [FS-LOGGER] Init. -2022-05-14 09:22:50.524 - info: [Router] Inject api: attachment/index -2022-05-14 09:23:24.744 - debug: [FS-LOGGER] Init. -2022-05-14 09:23:24.796 - info: [Router] Inject api: attachment/index -2022-05-14 09:51:41.277 - debug: [FS-LOGGER] Init. -2022-05-14 09:51:41.353 - info: [Router] Inject api: attachment/index -2022-05-14 10:24:41.265 - debug: [FS-LOGGER] Init. -2022-05-14 10:24:41.338 - info: [Router] Inject api: attachment/index -2022-05-14 14:06:18.857 - debug: [FS-LOGGER] Init. -2022-05-14 14:06:18.911 - info: [Router] Inject api: attachment/index -2022-05-15 08:49:57.570 - debug: [FS-LOGGER] Init. -2022-05-15 08:49:57.646 - info: [Router] Inject api: attachment/index -2022-05-15 11:13:26.408 - debug: [FS-LOGGER] Init. -2022-05-15 11:13:26.463 - info: [Router] Inject api: attachment/index -2022-05-16 08:28:04.125 - debug: [FS-LOGGER] Init. -2022-05-16 08:28:04.201 - info: [Router] Inject api: attachment/index -2022-05-16 17:52:59.089 - debug: [FS-LOGGER] Init. -2022-05-16 17:52:59.158 - info: [Router] Inject api: attachment/index -=======2022-05-13 15:46:53.227 - debug: [FS-LOGGER] Init. -2022-05-13 15:46:53.689 - info: [Router] Inject api: attachment/index -2022-05-14 08:58:22.936 - debug: [FS-LOGGER] Init. -2022-05-14 08:58:23.401 - info: [Router] Inject api: attachment/index -2022-05-15 13:16:42.604 - debug: [FS-LOGGER] Init. -2022-05-15 13:16:42.972 - info: [Router] Inject api: attachment/index -2022-05-16 08:31:34.989 - debug: [FS-LOGGER] Init. -2022-05-16 08:31:35.060 - info: [Router] Inject api: attachment/index ->>>>>>> .theirs2022-05-17 09:54:54.160 - debug: [FS-LOGGER] Init. -2022-05-17 09:54:54.208 - info: [Router] Inject api: attachment/index -2022-05-17 11:40:21.594 - debug: [FS-LOGGER] Init. -2022-05-17 11:40:21.645 - info: [Router] Inject api: attachment/index -2022-05-17 14:11:48.280 - debug: [FS-LOGGER] Init. -2022-05-17 14:11:48.333 - info: [Router] Inject api: attachment/index -2022-05-17 14:15:25.955 - debug: [FS-LOGGER] Init. -2022-05-17 14:15:26.002 - info: [Router] Inject api: attachment/index -2022-05-17 14:38:52.872 - debug: [FS-LOGGER] Init. -2022-05-17 14:38:52.920 - info: [Router] Inject api: attachment/index -2022-05-17 14:53:55.485 - debug: [FS-LOGGER] Init. -2022-05-17 14:53:55.532 - info: [Router] Inject api: attachment/index -2022-05-17 15:33:04.384 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=f8c80199-4602-44e5-94ab-53eaef30a42d', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 15:33:04.388 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=f8c80199-4602-44e5-94ab-53eaef30a42d', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 15:33:04.391 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=f8c80199-4602-44e5-94ab-53eaef30a42d', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 15:33:04.392 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=f8c80199-4602-44e5-94ab-53eaef30a42d', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 15:33:04.393 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=f8c80199-4602-44e5-94ab-53eaef30a42d', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 15:33:04.395 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=f8c80199-4602-44e5-94ab-53eaef30a42d', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:06:14.007 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:06:14.009 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:06:14.012 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:07:58.429 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketOnEnd (node:_http_client:466:9)\n' + - ' at Socket.emit (node:events:538:35)\n' + - ' at endReadableNT (node:internal/streams/readable:1345:12)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:07:58.431 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketOnEnd (node:_http_client:466:9)\n' + - ' at Socket.emit (node:events:538:35)\n' + - ' at endReadableNT (node:internal/streams/readable:1345:12)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:07:58.432 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:07:58.433 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketOnEnd (node:_http_client:466:9)\n' + - ' at Socket.emit (node:events:538:35)\n' + - ' at endReadableNT (node:internal/streams/readable:1345:12)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:07:58.434 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:07:58.436 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.088 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.090 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.091 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.092 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.093 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.094 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.095 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.096 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.097 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.099 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.100 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.101 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.102 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.103 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.104 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.105 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.106 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.107 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.901 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.903 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.904 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.905 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.906 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.907 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.908 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.909 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.910 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.911 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.912 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.913 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.915 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.916 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.916 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.917 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.918 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.920 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.920 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.921 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.923 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.924 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.924 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.925 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.926 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.927 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.928 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:21:43.012 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:21:43.013 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:21:43.015 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:57:45.161 - debug: [FS-LOGGER] Init. -2022-05-17 16:57:45.214 - info: [Router] Inject api: attachment/index -2022-07-18 17:40:02.934 - debug: [FS-LOGGER] Init. -2022-07-18 17:40:02.984 - info: [Router] Inject api: attachment/index -2022-07-19 09:38:20.086 - debug: [FS-LOGGER] Init. -2022-07-19 09:38:20.998 - info: [Router] Inject api: attachment/index -<<<<<<< HEAD -2022-07-21 15:22:04.942 - debug: [FS-LOGGER] Init. -2022-07-21 15:22:05.542 - info: [Router] Inject api: attachment/index -2022-07-21 17:03:00.480 - debug: [FS-LOGGER] Init. -2022-07-21 17:03:01.177 - info: [Router] Inject api: attachment/index -2022-07-21 18:12:39.625 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:8439', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 8439 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.157:8439/enterprises/undefined/members?token=215ed57a-8244-4523-b2ed-5a6b12b51711', - headers: { - host: '10.8.30.157:8439', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 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/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:8439\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -======= -2022-07-20 19:15:55.678 - debug: [FS-LOGGER] Init. -2022-07-20 19:15:56.118 - info: [Router] Inject api: attachment/index -<<<<<<< Updated upstream ->>>>>>> 65cf2722eec21e1d07ce958f4298eec7ae620c85 -<<<<<<< HEAD -2022-07-25 16:13:26.719 - debug: [FS-LOGGER] Init. -2022-07-25 16:26:39.904 - error: [FS-ERRHD] -======= -======= -2022-07-23 15:27:04.168 - debug: [FS-LOGGER] Init. -2022-07-23 15:27:04.699 - info: [Router] Inject api: attachment/index -2022-07-23 16:53:59.811 - error: [FS-ERRHD] ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< HEAD - url: 'https://3024-117-90-36-177.jp.ngrok.io/build/road_state?token=677d4484-e448-4fa6-b944-3a19f5e4b62d', -======= - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=5daa3b44-d8d1-4902-a92d-1a4895094480&level=%E6%9D%91', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', -<<<<<<< HEAD - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '677d4484-e448-4fa6-b944-3a19f5e4b62d', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', -======= - 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/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', -<<<<<<< HEAD - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + -<<<<<<< HEAD - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 16:26:58.908 - error: [FS-ERRHD] -======= - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 10:26:07.826 - error: [FS-ERRHD] ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< HEAD - url: 'https://3024-117-90-36-177.jp.ngrok.io/build/road_state?token=677d4484-e448-4fa6-b944-3a19f5e4b62d', -======= - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=5daa3b44-d8d1-4902-a92d-1a4895094480&level=%E5%8E%BF', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', -<<<<<<< HEAD - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '677d4484-e448-4fa6-b944-3a19f5e4b62d', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', -======= - 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/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', -<<<<<<< HEAD - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + -<<<<<<< HEAD - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 17:10:33.214 - error: [FS-ERRHD] -======= - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 11:28:13.352 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=df45f1e7-883c-4a06-85aa-cf985043c25f&level=%E5%8E%BF', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 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/103.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/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 15:46:29.372 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=df45f1e7-883c-4a06-85aa-cf985043c25f', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'content-length': '1887', - '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', - 'content-type': 'application/json', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'PUT', - body: '{"routeName":"袁渡-进贤文港","routeCode":"X943360121","sectionNo":"005","townshipCode":"360121200000","startingPlaceName":"桥","startStation":"1.849","categoryOfStartingPointAndDividingPoint":"非界点","stopPlaceName":"堤顶","categoryOfDeadCenterAndDividingPoint":"非界点","stopStation":"2.051","sectionType":"双向","serialNumberOfOriginalSection":"你换个","routeLevel":"不能同房","natureOfRoadSection":"正常路段","completionTime":"2003-01","reconstructionTime":"2018-12","natureOfConstruction":"重建","landforms":"平原","natureOfCharges":"非收费","numberOfCulverts":"0","technicalLevel":"三级公路","pavementType":"沥青混凝土","pavementWidth":"6.5","subgradeWidth":"7.5","laneCharacteristics":"双车道","whetherItIsOpenToTrafficInSunnyOrRainyDays":"是","designSpeedPerHour":"30","urbanManagementSectionOrNot":"否","managementAndMaintenanceUnit":"11101360121南昌市南昌县交通局","roadAdministrationUnit":"南昌县交通运输局","alimentation":"列养","sourceOfListedMaintenanceFunds":"燃油税","curingTime":"经常性","greeningMileage":"0.202","greeningMileaged":"0.202","plannedFundCategory":"其它","plannedYear":"2019","planDocumentNo":"赣路县字(2019)14号","planItemUniqueCode":"2018360121005","plannedProjectRouteCode":"X943360121","planProjectName":"黄马-桐源","plannedProjectType":"县道升级改造","completionStatus":"未完工","yearOfCompletion":"2020","reportingUnit":"361011000南昌市交通局","reasonForChange":"无变更","changeTime":"2020-11","whetherMaintenanceManagedHighway":"否","remarks":"2016路网调整","routeCodeOfLastYear":"X943360121","routeNameOfLastYear":"袁渡-进贤文港","startingStationOfLastYear":"1.849","lastYearsEndingPointStakeNumber":"2.051","graphicMileage":"0.202","chainageMileage":"0.202","districtcounty":"南昌县","locationCity":"南昌市","roadId":2800}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 15:52:40.728 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=df45f1e7-883c-4a06-85aa-cf985043c25f&level=%E5%8E%BF', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 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/103.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/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 16:01:11.229 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=df45f1e7-883c-4a06-85aa-cf985043c25f', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'content-length': '1621', - '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', - 'content-type': 'application/json', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'PUT', - body: '{"categoryOfDeadCenterAndDividingPoint":"非界点","stopStation":"2.051","sectionType":"双向","serialNumberOfOriginalSection":"你和","natureOfRoadSection":"正常路段","completionTime":"2003-01","reconstructionTime":"2018-12","natureOfConstruction":"重建","landforms":"平原","natureOfCharges":"非收费","numberOfCulverts":"0","technicalLevel":"三级公路","pavementType":"沥青混凝土","pavementWidth":"6.5","subgradeWidth":"7.5","laneCharacteristics":"双车道","whetherItIsOpenToTrafficInSunnyOrRainyDays":"是","designSpeedPerHour":"30","urbanManagementSectionOrNot":"否","managementAndMaintenanceUnit":"11101360121南昌市南昌县交通局","roadAdministrationUnit":"南昌县交通运输局","alimentation":"列养","sourceOfListedMaintenanceFunds":"燃油税","curingTime":"经常性","greeningMileage":"0.202","greeningMileaged":"0.202","plannedFundCategory":"其它","plannedYear":"2019","planDocumentNo":"赣路县字(2019)14号","planItemUniqueCode":"2018360121005","plannedProjectRouteCode":"X943360121","planProjectName":"黄马-桐源","plannedProjectType":"县道升级改造","completionStatus":"未完工","yearOfCompletion":"2020","reportingUnit":"361011000南昌市交通局","reasonForChange":"无变更","changeTime":"2020-11","whetherMaintenanceManagedHighway":"否","remarks":"2016路网调整","routeCodeOfLastYear":"X943360121","routeNameOfLastYear":"袁渡-进贤文港","startingStationOfLastYear":"1.849","lastYearsEndingPointStakeNumber":"2.051","graphicMileage":"0.202","chainageMileage":"0.202","districtcounty":"南昌县","locationCity":"南昌市","roadId":2800}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 16:11:10.293 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/department?token=df45f1e7-883c-4a06-85aa-cf985043c25f', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 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/103.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/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 16:14:44.623 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=df45f1e7-883c-4a06-85aa-cf985043c25f&level=%E5%8E%BF', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 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/103.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/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 16:20:37.830 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=df45f1e7-883c-4a06-85aa-cf985043c25f', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'content-length': '1803', - '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', - 'content-type': 'application/json', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'PUT', - body: '{"routeName":"袁渡-进贤文港草草草草","routeCode":"X943360121","sectionNo":"004","townshipCode":"360121200000","startingPlaceName":"桥口","startStation":"1.051","categoryOfStartingPointAndDividingPoint":"非界点","stopPlaceName":"桥","categoryOfDeadCenterAndDividingPoint":"非界点","stopStation":"1.849","sectionType":"双向","natureOfRoadSection":"正常路段","completionTime":"2019-11","natureOfConstruction":"新建","landforms":"微丘","natureOfCharges":"非收费","numberOfCulverts":"0","technicalLevel":"三级公路","pavementType":"沥青混凝土","pavementWidth":"6.5","subgradeWidth":"7.5","laneCharacteristics":"双车道","whetherItIsOpenToTrafficInSunnyOrRainyDays":"是","designSpeedPerHour":"30","urbanManagementSectionOrNot":"否","managementAndMaintenanceUnit":"11101360121南昌市南昌县交通局","roadAdministrationUnit":"南昌县交通运输局","alimentation":"列养","sourceOfListedMaintenanceFunds":"其他","curingTime":"经常性","greeningMileage":"0.798","greeningMileaged":"0.798","plannedFundCategory":"其它","plannedYear":"2019","planDocumentNo":"赣路县字(2019)14号","planItemUniqueCode":"2018360121005","plannedProjectRouteCode":"X943360121","planProjectName":"黄马-桐源","plannedProjectType":"县道升级改造","completionStatus":"未完工","yearOfCompletion":"2020","reportingUnit":"361011211南昌县交通局","reasonForChange":"无变更","changeTime":"2020-11","whetherMaintenanceManagedHighway":"否","remarks":"新增道路","routeCodeOfLastYear":"X943360121","routeNameOfLastYear":"袁渡-进贤文港","startingStationOfLastYear":"1.051","lastYearsEndingPointStakeNumber":"1.849","graphicMileage":"0.802","chainageMileage":"0.798","districtcounty":"南昌县","locationCity":"南昌市","level":"县","roadId":2799}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 17:13:48.396 - error: [FS-ERRHD] ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/login', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'content-length': '55', -<<<<<<< HEAD - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.114 Safari/537.36 Edg/103.0.1264.62', -======= - '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', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - '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', -<<<<<<< HEAD - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + -<<<<<<< HEAD - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 19:33:14.728 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.177.60.68:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.177.60.68', - port: 443 -======= - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 17:20:38.059 - debug: [FS-LOGGER] Init. -2022-07-25 17:20:38.539 - info: [Router] Inject api: attachment/index -2022-07-26 08:24:40.399 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< HEAD - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.60.68:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 19:44:17.724 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 21:31:50.491 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 09:31:23.413 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 09:45:24.340 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/build/road_state?token=5177b0f8-8693-42d0-bced-c9f82bc12417', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:03:06.926 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:13:08.793 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/build/road_state?token=5177b0f8-8693-42d0-bced-c9f82bc12417', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:22:55.765 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:28:54.441 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:31:44.233 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:05:17.376 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:25:47.595 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:26:54.234 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:31:38.399 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:32:47.830 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:32:53.702 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:33:31.989 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:34:30.724 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:37:40.347 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:37:56.314 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:39:01.155 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:45:51.476 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:46:42.295 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:46:49.635 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:49:05.976 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:49:59.409 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:50:02.336 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:50:44.803 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:50:55.510 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:51:02.542 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/conserve/statistic?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:51:38.453 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/conserve/statistic?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:52:12.135 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:52:30.917 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:52:51.557 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:55:53.353 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:56:21.605 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:57:51.983 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:57:59.909 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:58:07.737 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:58:39.343 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:59:44.352 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:00:13.758 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:00:29.556 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:02:49.458 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:03:11.150 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:03:55.054 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:06:27.365 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:06:57.285 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:10:37.727 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:12:12.006 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:13:19.972 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:17:03.477 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/conserve/statistic?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:17:23.022 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:19:46.467 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:21:04.386 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:23:37.276 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:24:34.917 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:25:28.568 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:25:53.881 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:27:36.001 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=5177b0f8-8693-42d0-bced-c9f82bc12417', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:27:53.545 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:28:00.553 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=5177b0f8-8693-42d0-bced-c9f82bc12417', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:28:23.515 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=5177b0f8-8693-42d0-bced-c9f82bc12417', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:28:46.863 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=5177b0f8-8693-42d0-bced-c9f82bc12417', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:40:55.481 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:58:09.728 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:58:50.269 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:59:09.075 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:59:38.062 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:59:56.784 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:59:58.544 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:00:19.330 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:00:20.986 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:00:23.433 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:00:39.942 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:00:39.946 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:00:41.684 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:00:41.685 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:01:00.953 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:03:05.868 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:05:04.867 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:05:26.206 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:05:36.978 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:06:00.888 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:06:10.106 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:06:15.381 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:06:16.545 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:06:39.726 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:06:48.057 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:07:26.215 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:08:00.257 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:09:26.353 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:09:52.959 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:10:11.506 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:10:25.777 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:13:41.089 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:14:18.023 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:14:46.577 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:14:59.928 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:15:57.071 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:15:59.349 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/conserve/statistic?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:17:19.019 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:17:25.934 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:17:30.086 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:18:01.836 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:18:07.556 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:18:41.436 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:18:54.267 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:19:09.210 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:22:58.898 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:23:14.668 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:25:18.074 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:28:20.415 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:36:52.345 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:45:59.315 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:49:54.833 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:04:39.532 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:04:40.707 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:04:40.709 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:22:09.664 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:28:27.382 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:28:27.388 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:28:27.389 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:28:27.393 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:30:02.537 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:30:17.508 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:31:24.966 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:38:09.356 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:40:43.928 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:40:43.962 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:40:43.964 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:44:00.820 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:44:01.004 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:45:32.505 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:45:32.510 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:46:12.458 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:46:12.467 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:46:12.470 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:58:58.706 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:04:12.892 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:04:23.109 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:04:23.112 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:05:25.304 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:05:38.379 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:10:03.259 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:14:35.006 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:17:34.476 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:21:01.435 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:28:11.552 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:29:18.090 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:29:18.094 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:29:18.095 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:29:18.096 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:29:18.097 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:29:18.102 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:29:18.103 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:29:18.105 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:30:14.980 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:30:14.984 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:32:33.799 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:35:26.957 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:38:37.150 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:42:43.011 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:44:42.076 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:44:43.835 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:44:43.837 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:44:43.928 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:44:43.930 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:45:20.980 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:45:21.134 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:46:00.276 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:56:04.523 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:56:14.460 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:57:23.977 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:21.654 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:22.025 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:25.060 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:32.062 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:32.631 - error: [FS-ERRHD] -{ - message: 'Error: Client network socket disconnected before secure TLS connection was established', - name: 'RequestError', - cause: { - code: 'ECONNRESET', - path: null, - host: '3024-117-90-36-177.jp.ngrok.io', - port: 443, - localAddress: undefined - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: Client network socket disconnected before secure TLS connection was established\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:34.124 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:39.189 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:40.516 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.177.0.235:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.177.0.235', - port: 443 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.0.235:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:43.081 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.177.0.235:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.177.0.235', - port: 443 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.0.235:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:53.110 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.177.0.235:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.177.0.235', - port: 443 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.0.235:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:57.096 - error: [FS-ERRHD] -{ - message: 'Error: Client network socket disconnected before secure TLS connection was established', - name: 'RequestError', - cause: { - code: 'ECONNRESET', - path: null, - host: '3024-117-90-36-177.jp.ngrok.io', - port: 443, - localAddress: undefined - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: Client network socket disconnected before secure TLS connection was established\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:59.070 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:59.675 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:59:00.238 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.177.53.48:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.177.53.48', - port: 443 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.53.48:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:59:18.733 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.177.53.48:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.177.53.48', - port: 443 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.53.48:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:59:18.735 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.177.53.48:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.177.53.48', - port: 443 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.53.48:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:59:24.071 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:59:24.830 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:59:26.949 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/conserve/statistic?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:59:32.149 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:08:54.658 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:13:54.930 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:15:40.794 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:17:26.854 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:23:21.899 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:26:55.570 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:28:43.543 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:28:44.700 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:28:44.704 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:28:44.707 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:31:33.345 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:32:12.538 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:33:07.854 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:34:11.067 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:34:12.705 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:34:12.706 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:35:20.149 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:35:35.882 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:36:12.902 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:37:54.674 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:39:51.831 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:41:18.189 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:41:55.589 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/build/road_state?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:43:58.004 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:44:09.699 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:44:25.521 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:44:59.643 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:46:12.533 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:46:12.537 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:46:15.642 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:46:51.662 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:47:34.958 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:48:57.031 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:48:59.933 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:49:29.672 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:49:29.687 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:52:41.535 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:56:42.627 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:57:44.721 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:02:33.291 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:07:13.391 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:07:15.767 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:07:15.769 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:08:04.134 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:14:19.167 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:16:32.432 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:32:21.786 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:32:41.558 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:33:36.605 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:42:10.394 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:45:22.643 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:46:23.136 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:48:34.964 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:50:02.409 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:50:51.822 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:50:53.115 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:53:27.667 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:55:28.463 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:55:37.153 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:57:25.485 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:57:36.148 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:00:43.357 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:00:50.962 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:02:19.314 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:02:53.027 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:03:15.054 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:03:23.393 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:03:27.269 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:04:27.760 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:04:29.375 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:04:35.922 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:04:40.266 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:04:49.383 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:08:06.879 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:10:26.322 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:10:51.475 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:11:40.375 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:11:57.822 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:13:02.792 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:15:37.545 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:15:53.416 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:16:00.837 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:16:44.550 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:19:17.435 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:19:24.642 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.176.183.3:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.176.183.3', - port: 443 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.176.183.3:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:19:37.245 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:19:38.483 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.176.183.3:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.176.183.3', - port: 443 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.176.183.3:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:19:45.708 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.177.0.235:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.177.0.235', - port: 443 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.0.235:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:19:54.873 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:20:05.128 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:20:17.088 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 08:52:53.296 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 08:55:02.416 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 09:02:58.014 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 09:16:10.592 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 09:22:21.685 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 10:17:42.286 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 10:43:25.730 - debug: [FS-LOGGER] Init. -2022-07-27 10:58:49.630 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=8b9717fe-80d5-48a4-a364-d78045b3d249', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '8b9717fe-80d5-48a4-a364-d78045b3d249', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', -======= - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 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/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', -<<<<<<< HEAD - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' -======= - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< HEAD - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketOnEnd (_http_client.js:485:9)\n' + - ' at Socket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 10:58:49.634 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=8b9717fe-80d5-48a4-a364-d78045b3d249', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '8b9717fe-80d5-48a4-a364-d78045b3d249', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' 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' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:24:50.233 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/department?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 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/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', -<<<<<<< HEAD - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' -======= - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< HEAD - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketOnEnd (_http_client.js:485:9)\n' + - ' at Socket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 11:03:27.808 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' 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' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:24:50.640 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 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/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', -<<<<<<< HEAD - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' -======= - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< HEAD - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 11:03:27.813 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' 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' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:31:48.455 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/department?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 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/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', -<<<<<<< HEAD - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' -======= - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< HEAD - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' 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' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:31:48.847 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 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/103.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/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' 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' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:33:03.454 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/vehicle?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 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/103.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/fillion/operational', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' 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' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:33:05.740 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/vehicle/specific?token=3de82f98-253d-4ebd-a444-eff69920459b&%E5%87%BA%E7%A7%9F%E8%BD%A6', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 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/103.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/fillion/operational', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' 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' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:33:06.536 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/vehicle/specific?token=3de82f98-253d-4ebd-a444-eff69920459b&%E5%8D%B1%E8%B4%A7', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 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/103.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/fillion/operational', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' 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' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:33:07.314 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/vehicle/business?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 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/103.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/fillion/operational', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' 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' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:33:11.486 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/department?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 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/103.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/fillion/operational', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' 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' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:33:11.816 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/vehicle?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 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/103.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/fillion/operational', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' 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' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:33:57.281 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 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/103.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/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' 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' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:34:32.742 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/department?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 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/103.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/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' 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' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:34:33.166 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 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/103.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/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' 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' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} ->>>>>>> Stashed changes -<<<<<<< Updated upstream ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 -======= -2022-07-26 10:36:17.862 - debug: [FS-LOGGER] Init. -2022-07-26 14:17:07.892 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/department?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - '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/fillion/operational', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' 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' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:17:08.280 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/vehicle?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - '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/fillion/operational', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' 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' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:17:10.564 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/vehicle/specific?token=3de82f98-253d-4ebd-a444-eff69920459b&%E5%87%BA%E7%A7%9F%E8%BD%A6', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - '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/fillion/operational', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' 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' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:17:12.386 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/bridge?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - '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/fillion/bridge', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' 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' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:17:33.973 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/department?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - '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/fillion/bridge', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' 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' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:17:34.427 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/bridge?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - '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/fillion/bridge', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' 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' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:17:37.083 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - '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/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' 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' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:19:12.817 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/department?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - '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/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' 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' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:19:13.254 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - '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/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' 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' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:47:41.611 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: 'ECONNRESET', code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - '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/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' 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' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:47:41.616 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: 'ECONNRESET', code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'content-length': '83', - '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', - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - '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/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'PUT', - body: '{"routeName":"1","routeCode":"1111","sectionNo":"4444","level":"县","roadId":3275}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' 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' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 11:00:11.991 - debug: [FS-LOGGER] Init. ->>>>>>> Stashed changes -<<<<<<< HEAD -2022-07-28 09:52:36.378 - debug: [FS-LOGGER] Init. -2022-07-28 10:26:19.323 - debug: [FS-LOGGER] Init. -2022-07-28 18:37:17.090 - debug: [FS-LOGGER] Init. -2022-07-28 18:47:31.071 - debug: [FS-LOGGER] Init. -2022-07-28 18:48:34.776 - debug: [FS-LOGGER] Init. -======= -2022-07-27 17:24:17.967 - debug: [FS-LOGGER] Init. -2022-07-27 22:47:22.449 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 22:47:22.453 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 22:47:22.455 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 22:47:22.456 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 22:47:22.458 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 22:47:43.524 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 22:47:43.525 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 22:47:43.526 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 22:47:43.527 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:32:58.890 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:32:58.905 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:32:58.906 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:32:58.908 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/conserve/statistic?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:32:58.910 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:32:58.911 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:33:19.939 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:33:19.956 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:33:32.652 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/department', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 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/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:33:44.815 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/login', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - '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,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:35:54.958 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/login', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - '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,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:37:50.933 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:37:50.950 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:37:50.951 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:37:50.952 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:37:50.953 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:37:50.954 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/conserve/statistic?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:38:11.981 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:38:11.997 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:38:33.040 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:38:33.041 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - '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', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:43:20.072 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/conserve/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:43:20.075 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:43:20.077 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:43:20.078 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:43:20.079 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:43:20.084 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:43:41.125 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:43:41.127 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:44:02.188 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:44:02.189 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:14.544 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/conserve/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:14.548 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:14.550 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:14.551 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:14.556 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:14.558 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:35.592 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:35.595 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:53.227 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:53.228 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:53.230 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:53.231 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/conserve/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:53.236 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:53.238 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 09:34:57.419 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 09:34:57.422 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:08:50.687 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:08:50.691 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:09:35.473 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:09:35.475 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:09:35.476 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:10:48.698 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:10:48.699 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:10:48.700 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:11:07.267 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:11:07.269 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:11:07.270 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:36:40.596 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:36:40.600 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:36:40.602 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:36:40.603 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:40:48.574 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:40:48.579 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:40:48.580 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:40:48.582 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:40:48.584 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:40:48.585 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:56:46.234 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:56:46.240 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:56:46.242 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:56:46.244 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:56:46.246 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:56:46.248 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:02:59.817 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:02:59.822 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:02:59.823 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:02:59.825 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:02:59.826 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:02:59.828 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:11:00.606 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:11:00.611 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:11:00.613 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:11:00.614 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:11:00.616 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:15:52.145 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:15:52.151 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:15:52.153 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:15:52.154 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:15:52.158 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:15:52.160 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:26:55.855 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:26:55.859 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:26:55.861 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:29:52.092 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:29:52.096 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:29:52.098 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:29:52.099 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:29:52.101 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:30:08.516 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:30:08.518 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:30:08.520 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:30:08.523 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:30:08.525 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:30:08.526 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:31:01.445 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:31:01.450 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:31:01.451 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:31:01.453 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:31:01.455 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:34:02.569 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:34:02.574 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:34:02.576 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:34:02.578 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:34:02.580 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:41:20.529 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:41:20.534 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:41:20.536 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:41:20.539 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:41:20.542 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:41:20.545 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:43:02.192 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:43:02.196 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:43:02.198 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:43:02.199 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:43:02.201 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:43:02.202 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:49:12.192 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:49:12.196 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:49:12.199 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:49:12.201 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:50:45.276 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:50:45.278 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:50:45.279 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:51:43.844 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:51:43.846 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:51:43.848 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:52:14.520 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:52:14.522 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:52:14.523 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:13:13.418 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:13:13.422 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:13:13.424 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:19:57.528 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:19:57.532 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:19:57.534 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:24:25.429 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:24:25.431 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:24:25.433 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:25:22.552 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:25:22.554 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:32:05.461 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:32:05.464 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:32:05.465 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:32:05.467 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:34:55.768 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:34:55.772 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:34:55.775 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:34:55.777 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:34:55.778 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:39:08.095 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:39:08.101 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:39:08.103 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 15:10:44.368 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/data/god_trans?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 15:10:44.372 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/data/god_trans?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 15:10:44.375 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 15:10:44.377 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 15:10:44.378 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/conserve/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 15:10:44.380 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - '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/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 16:51:10.270 - debug: [FS-LOGGER] Init. -2022-07-28 16:51:11.180 - info: [Router] Inject api: attachment/index ->>>>>>> c5a4c8a87b2e23e891d4276a9cca953058b78bd7 -2022-07-28 19:02:55.701 - debug: [FS-LOGGER] Init. -2022-07-28 19:02:55.796 - info: [Router] Inject api: attachment/index -2022-07-28 19:04:01.860 - debug: [FS-LOGGER] Init. -2022-07-28 19:04:01.936 - info: [Router] Inject api: attachment/index -2022-07-28 20:47:45.618 - debug: [FS-LOGGER] Init. -2022-07-28 20:47:45.710 - info: [Router] Inject api: attachment/index