diff --git a/api/app/lib/controllers/data/index.js b/api/app/lib/controllers/data/index.js index 4dc8cb25..c35714a2 100644 --- a/api/app/lib/controllers/data/index.js +++ b/api/app/lib/controllers/data/index.js @@ -1,109 +1,107 @@ 'use strict'; -const fs = require('fs'); -const xlsxDownload = require('../../../../utils/xlsxDownload.js'); -const moment = require('moment'); -const request = require('superagent'); + +// const { simpleExcelDown } = require('../../../../utils/xlsxDownload'); async function dataExport (ctx) { - try { - const models = ctx.fs.dc.models; - const { userId } = ctx.fs.api - const { exp, ids, roadLevel, municipalType } = ctx.query; + try { + // const models = ctx.fs.dc.models; + // const { userId } = ctx.fs.api + // const { ids } = ctx.query; - if (!exp) { - throw '参数错误'; - } + // const fileList = [ + // { + // n: '道路', + // tableName: 'road', + // defaultKey: ['level'], + // defaultValue: ['村'], + // }, + // { + // n: '道路', + // tableName: 'road', + // defaultKey: ['level'], + // defaultValue: ['县'], + // }, + // { + // n: '道路', + // tableName: 'road', + // defaultKey: ['level'], + // defaultValue: ['乡'], + // }, + // { + // n: '桥梁', + // tableName: 'bridge' + // }, + // { + // n: '运政车辆', + // tableName: 'municipal_vehicle', + // defaultKey: ['type'], + // defaultValue: ['出租车'], + // }, + // { + // n: '运政车辆', + // tableName: 'municipal_vehicle', + // defaultKey: ['type'], + // defaultValue: ['危货'], + // }, + // { + // n: '运政业户', + // tableName: 'municipal_business', + // defaultKey: ['type'], + // defaultValue: ['出租车'], + // }, + // { + // n: '运政业户', + // tableName: 'municipal_business', + // defaultKey: ['type'], + // defaultValue: ['危货'], + // }, + // { + // n: '工程一览', + // tableName: 'project', + // defaultKey: ['done', 'type'], + // defaultValue: [false, 'road'], + // }, + // { + // n: '工程一览', + // tableName: 'project', + // defaultKey: ['done', 'type'], + // defaultValue: [false, 'bridge'], + // }, + // { + // n: '治超', + // tableName: 'overspeed', + // }, + // { + // n: '公交线路', + // tableName: 'bus_line', + // }, + // { + // n: '公交车辆', + // tableName: 'bus_car', + // }, + // ] - const modalList = [ - { - n: '道路', - k: 'road', - tableName: 'Road', - }, - { - n: '桥梁', - k: 'bridge', - tableName: 'Bridge' - }, - { - n: '运政车辆', - k: 'vehicle', - tableName: 'MunicipalVehicle', - }, - { - n: '运政业户', - k: 'business', - tableName: 'MunicipalBusiness', - }, - { - n: '工程一览', - k: 'project', - tableName: 'Project', - }, - { - n: '治超', - k: 'overspeed', - tableName: 'Overspeed', - }, - { - n: '公交线路', - k: 'busLine', - tableName: 'BusLine', - }, - { - n: '公交车辆', - k: 'busCar', - tableName: 'BusCar', - }, - ] + // const exportData = await models.BusCar.destroy({ + // where: { + // id: { $in: ids.split(',') } + // } + // }) - const modalOption = modalList.find(item => item.k == exp); - if (!modalOption) { - throw '参数错误'; - } - - let findOption = { - where: {} - } - if (ids) { - findOption.where.id = { $in: ids.split(',') } - } - if (roadLevel) { - findOption.where.level = roadLevel - } - if (municipalType) { - findOption.where.type = municipalType - } + // const fileName = `摄像头信息列表_${moment().format('YYYYMMDDHHmmss')}` + '.csv' + // const filePath = await simpleExcelDown({ data: exportData, header, fileName: fileName }) + // const fileData = fs.readFileSync(filePath); - const exportData = await models[modalOption.tableName].findAll(findOption) - const tableAttributes = models[modalOption.tableName].tableAttributes - let header = [] - for (let k in tableAttributes) { - if (k != 'id' && tableAttributes[k].comment) { - header.push({ - title: tableAttributes[k].comment || '-', - key: k, - index: tableAttributes[k].index, - }) - } - } - header.sort((a, b) => { return a.index - b.index }) - - const fileName = `${modalOption.n}_${moment().format('YYYYMMDDHHmmss')}` + '.csv' - const filePath = await xlsxDownload.simpleExcelDown({ data: exportData, header, fileName: fileName }) - const fileData = fs.readFileSync(filePath); - - ctx.status = 200; - ctx.set('Content-Type', 'application/x-xls'); - ctx.set('Content-disposition', 'attachment; filename=' + encodeURI(fileName)); - ctx.body = fileData; - } catch (error) { - ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); - ctx.status = 400; - ctx.body = { - message: typeof error == 'string' ? error : undefined - } - } + // ctx.status = 200; + // ctx.set('Content-Type', 'application/x-xls'); + // ctx.set('Content-disposition', 'attachment; filename=' + encodeURI(fileName)); + // ctx.body = fileData; + } catch (error) { + // ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); + // ctx.status = 400; + // ctx.body = { + // message: typeof error == 'string' ? error : undefined + // } + } } async function godTrans (ctx) { @@ -127,6 +125,5 @@ async function godTrans (ctx) { } module.exports = { - dataExport, - godTrans + dataExport }; \ No newline at end of file diff --git a/api/app/lib/controllers/data/vehicle.js b/api/app/lib/controllers/data/vehicle.js index 7c9e2c11..b3ad5dfb 100644 --- a/api/app/lib/controllers/data/vehicle.js +++ b/api/app/lib/controllers/data/vehicle.js @@ -1,239 +1,236 @@ 'use strict'; async function get (ctx) { - try { - const models = ctx.fs.dc.models; - const { type } = ctx.request.body; - const { name } = ctx.query; - - let findOption = { - where: { - type - }, - order: [['id', 'DESC']] - } - if (name) { - findOption.where.name = { - $like: `%${name}%` - } - } - const vehicleRes = await models.Statistic.findAll(findOption) - - ctx.status = 200; - ctx.body = vehicleRes - } catch (error) { - ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); - ctx.status = 400; - ctx.body = { - message: typeof error == 'string' ? error : undefined - } - } + try { + const models = ctx.fs.dc.models; + const { type } = ctx.request.body; + const { name } = ctx.query; + + let findOption = { + where: { + type + } + } + if (name) { + findOption.where.name = { + $like: `%${name}%` + } + } + const vehicleRes = await models.Statistic.findAll(findOption) + + ctx.status = 200; + ctx.body = vehicleRes + } catch (error) { + ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); + ctx.status = 400; + ctx.body = { + message: typeof error == 'string' ? error : undefined + } + } } async function edit (ctx) { - try { - const models = ctx.fs.dc.models; - const { id, name, count, type } = ctx.request.body; - - if (!id) { - await models.Statistic.create({ - name, count, type: type - }) - } else { - await models.Statistic.update({ - name, count, type: type - }, { - where: { - id: id - } - }) - } - - ctx.status = 204 - } catch (error) { - ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); - ctx.status = 400; - ctx.body = { - message: typeof error == 'string' ? error : undefined - } - } + try { + const models = ctx.fs.dc.models; + const { id, name, count, type } = ctx.request.body; + + if (!id) { + await models.Statistic.create({ + name, count, type: type + }) + } else { + await models.Statistic.update({ + name, count, type: type + }, { + where: { + id: id + } + }) + } + + ctx.status = 204 + } catch (error) { + ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); + ctx.status = 400; + ctx.body = { + message: typeof error == 'string' ? error : undefined + } + } } async function del (ctx) { - try { - const models = ctx.fs.dc.models; - const { id } = ctx.params; - - await models.Statistic.destroy({ - where: { - id: id - } - }) - - ctx.status = 204 - } catch (error) { - ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); - ctx.status = 400; - ctx.body = { - message: typeof error == 'string' ? error : undefined - } - } + try { + const models = ctx.fs.dc.models; + const { id } = ctx.params; + + await models.Statistic.destroy({ + where: { + id: id + } + }) + + ctx.status = 204 + } catch (error) { + ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); + ctx.status = 400; + ctx.body = { + message: typeof error == 'string' ? error : undefined + } + } } async function specificGet (ctx) { - try { - const models = ctx.fs.dc.models; - const { type } = ctx.query; - const { nameOfBusinessOwner } = ctx.query; - - let findOption = { - where: { - type - }, - order: [['id', 'DESC']] - } - if (nameOfBusinessOwner) { - findOption.where.nameOfBusinessOwner = { - $like: `%${nameOfBusinessOwner}%` - } - } - - const vehicleRes = await models.MunicipalVehicle.findAll(findOption) - - ctx.status = 200; - ctx.body = vehicleRes - } catch (error) { - ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); - ctx.status = 400; - ctx.body = { - message: typeof error == 'string' ? error : undefined - } - } + try { + const models = ctx.fs.dc.models; + const { type } = ctx.query; + const { nameOfBusinessOwner } = ctx.query; + + let findOption = { + where: { + type + } + } + if (nameOfBusinessOwner) { + findOption.where.nameOfBusinessOwner = { + $like: `%${nameOfBusinessOwner}%` + } + } + + const vehicleRes = await models.MunicipalVehicle.findAll(findOption) + + ctx.status = 200; + ctx.body = vehicleRes + } catch (error) { + ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); + ctx.status = 400; + ctx.body = { + message: typeof error == 'string' ? error : undefined + } + } } async function specificEdit (ctx) { - try { - const models = ctx.fs.dc.models; - const data = ctx.request.body; - - if (!data.vehicleId) { - const vehicleRes = await models.MunicipalVehicle.create(data) - } else { - const vehicleRes = await models.MunicipalVehicle.update(data, { - where: { - id: data.vehicleId - } - }) - } - - ctx.status = 204 - } catch (error) { - ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); - ctx.status = 400; - ctx.body = { - message: typeof error == 'string' ? error : undefined - } - } + try { + const models = ctx.fs.dc.models; + const data = ctx.request.body; + + if (!data.vehicleId) { + const vehicleRes = await models.Vehicle.create(data) + } else { + const vehicleRes = await models.Vehicle.update(data, { + where: { + id: data.vehicleId + } + }) + } + + ctx.status = 204 + } catch (error) { + ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); + ctx.status = 400; + ctx.body = { + message: typeof error == 'string' ? error : undefined + } + } } async function specificDel (ctx) { - try { - const models = ctx.fs.dc.models; - const { vehicleId } = ctx.params; - - const vehicleRes = await models.MunicipalVehicle.destroy({ - where: { - id: vehicleId - } - }) - - ctx.status = 204 - } catch (error) { - ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); - ctx.status = 400; - ctx.body = { - message: typeof error == 'string' ? error : undefined - } - } + try { + const models = ctx.fs.dc.models; + const { vehicleId } = ctx.params; + + const vehicleRes = await models.Vehicle.destroy({ + where: { + id: vehicleId + } + }) + + ctx.status = 204 + } catch (error) { + ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); + ctx.status = 400; + ctx.body = { + message: typeof error == 'string' ? error : undefined + } + } } async function businessGet (ctx) { - try { - const models = ctx.fs.dc.models; - const { nameOfBusinessOwner } = ctx.query; - - let findOption = { - where: { - - }, - order: [['id', 'DESC']] - } - if (nameOfBusinessOwner) { - findOption.where.nameOfBusinessOwner = { - $like: `%${nameOfBusinessOwner}%` - } - } - const businessRes = await models.MunicipalBusiness.findAll(findOption) - - ctx.status = 200; - ctx.body = businessRes - } catch (error) { - ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); - ctx.status = 400; - ctx.body = { - message: typeof error == 'string' ? error : undefined - } - } + try { + const models = ctx.fs.dc.models; + const { nameOfBusinessOwner } = ctx.query; + + let findOption = { + where: { + + } + } + if (nameOfBusinessOwner) { + findOption.where.nameOfBusinessOwner = { + $like: `%${nameOfBusinessOwner}%` + } + } + const businessRes = await models.MunicipalBusiness.findAll(findOption) + + ctx.status = 200; + ctx.body = businessRes + } catch (error) { + ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); + ctx.status = 400; + ctx.body = { + message: typeof error == 'string' ? error : undefined + } + } } async function businessEdit (ctx) { - try { - const models = ctx.fs.dc.models; - const data = ctx.request.body; - - if (!data.businessId) { - await models.MunicipalBusiness.create(data) - } else { - await models.MunicipalBusiness.update(data, { - where: { - id: data.businessId - } - }) - } - - ctx.status = 204 - } catch (error) { - ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); - ctx.status = 400; - ctx.body = { - message: typeof error == 'string' ? error : undefined - } - } + try { + const models = ctx.fs.dc.models; + const data = ctx.request.body; + + if (!data.businessId) { + await models.MunicipalBusiness.create(data) + } else { + await models.MunicipalBusiness.update(data, { + where: { + id: data.businessId + } + }) + } + + ctx.status = 204 + } catch (error) { + ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); + ctx.status = 400; + ctx.body = { + message: typeof error == 'string' ? error : undefined + } + } } async function businessDel (ctx) { - try { - const models = ctx.fs.dc.models; - const { businessId } = ctx.params; - - await models.MunicipalBusiness.destroy({ - where: { - id: businessId - } - }) - - ctx.status = 204 - } catch (error) { - ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); - ctx.status = 400; - ctx.body = { - message: typeof error == 'string' ? error : undefined - } - } + try { + const models = ctx.fs.dc.models; + const { businessId } = ctx.params; + + await models.Vehicle.MunicipalBusiness({ + where: { + id: businessId + } + }) + + ctx.status = 204 + } catch (error) { + ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); + ctx.status = 400; + ctx.body = { + message: typeof error == 'string' ? error : undefined + } + } } module.exports = { - get, edit, del, - specificGet, specificEdit, specificDel, - businessGet, businessEdit, businessDel + get, edit, del, + specificGet, specificEdit, specificDel, + businessGet, businessEdit, businessDel }; \ No newline at end of file diff --git a/weapp/src/packages/changePassword/index.jsx b/weapp/src/packages/changePassword/index.jsx index 69d57b4c..04579469 100644 --- a/weapp/src/packages/changePassword/index.jsx +++ b/weapp/src/packages/changePassword/index.jsx @@ -14,10 +14,10 @@ function Index() { function confirm() { if (!password) { - Taro.showToast({ title: '请输入密码', icon: 'none' }) + Taro.showToast({ title: '请输入密码' }) return } else if (password !== password2) { - Taro.showToast({ title: '两次输入的密码不一致', icon: 'none' }) + Taro.showToast({ title: '两次输入的密码不一致' }) return } else { Taro.showModal({ @@ -50,11 +50,11 @@ function Index() { 新的密码: - setPassword(e.detail.value)} /> + setPassword(e.detail.value)} /> 再次输入新的密码: - setPassword2(e.detail.value)} /> + setPassword2(e.detail.value)} /> 确认 diff --git a/web/client/assets/color.less b/web/client/assets/color.less index 2899426f..1851eb9d 100644 --- a/web/client/assets/color.less +++ b/web/client/assets/color.less @@ -798,19 +798,17 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte .ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed::before, .ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed::after {border-style: dashed none none;} .ant-divider-vertical.ant-divider-dashed {border-width: 0 0 0 1px;} .ant-divider-plain.ant-divider-with-text {color: @text-color;} -.ant-drawer-left.ant-drawer-open .ant-drawer-content-wrapper {box-shadow: 6px 0 16px -8px rgba(0, 0, 0, 0.08), 9px 0 28px 0 rgba(0, 0, 0, 0.05), 12px 0 48px 16px rgba(0, 0, 0, 0.03);} -.ant-drawer-right.ant-drawer-open .ant-drawer-content-wrapper {box-shadow: -6px 0 16px -8px rgba(0, 0, 0, 0.08), -9px 0 28px 0 rgba(0, 0, 0, 0.05), -12px 0 48px 16px rgba(0, 0, 0, 0.03);} -.ant-drawer-top.ant-drawer-open .ant-drawer-content-wrapper {box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.08), 0 9px 28px 0 rgba(0, 0, 0, 0.05), 0 12px 48px 16px rgba(0, 0, 0, 0.03);} -.ant-drawer-bottom.ant-drawer-open .ant-drawer-content-wrapper {box-shadow: 0 -6px 16px -8px rgba(0, 0, 0, 0.08), 0 -9px 28px 0 rgba(0, 0, 0, 0.05), 0 -12px 48px 16px rgba(0, 0, 0, 0.03);} -.ant-drawer-title {color: @heading-color;} -.ant-drawer-content {background-color: @drawer-bg;background-clip: padding-box;border: 0;} +.ant-drawer-mask {background: rgba(0, 0, 0, 0.45);} +.ant-drawer-left .ant-drawer-content {box-shadow: 6px 0 16px -8px rgba(0, 0, 0, 0.08), 9px 0 28px 0 rgba(0, 0, 0, 0.05), 12px 0 48px 16px rgba(0, 0, 0, 0.03);} +.ant-drawer-right .ant-drawer-content {box-shadow: -6px 0 16px -8px rgba(0, 0, 0, 0.08), -9px 0 28px 0 rgba(0, 0, 0, 0.05), -12px 0 48px 16px rgba(0, 0, 0, 0.03);} +.ant-drawer-top .ant-drawer-content {box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.08), 0 9px 28px 0 rgba(0, 0, 0, 0.05), 0 12px 48px 16px rgba(0, 0, 0, 0.03);} +.ant-drawer-bottom .ant-drawer-content {box-shadow: 0 -6px 16px -8px rgba(0, 0, 0, 0.08), 0 -9px 28px 0 rgba(0, 0, 0, 0.05), 0 -12px 48px 16px rgba(0, 0, 0, 0.03);} +.ant-drawer-wrapper-body {background: @drawer-bg;} +.ant-drawer-header {border-bottom: 1px solid @border-color-split;} .ant-drawer-close {color: @text-color-secondary;background: transparent;border: 0;} .ant-drawer-close:focus, .ant-drawer-close:hover {color: @icon-color-hover;} -.ant-drawer-header {color: @text-color;background: @drawer-bg;border-bottom: 1px solid @border-color-split;border-radius: 2px 2px 0 0;} -.ant-drawer-header-close-only {border: none;} +.ant-drawer-title {color: @heading-color;} .ant-drawer-footer {border-top: 1px solid @border-color-split;} -.ant-drawer-mask {background-color: rgba(0, 0, 0, 0.45);} -.ant-drawer .ant-picker-clear {background: @popover-background;} .ant-dropdown-menu-item.ant-dropdown-menu-item-danger {color: #ff4d4f;} .ant-dropdown-menu-item.ant-dropdown-menu-item-danger:hover {color: #fff;background-color: #ff4d4f;} .ant-dropdown {color: @text-color;} @@ -1149,10 +1147,10 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte .ant-mentions-dropdown-menu-item-active {background-color: @item-hover-bg;} .ant-menu-item-danger.ant-menu-item {color: #ff4d4f;} .ant-menu-item-danger.ant-menu-item:hover, .ant-menu-item-danger.ant-menu-item-active {color: #ff4d4f;} -.ant-menu-item-danger.ant-menu-item:active {background: color(~`colorPalette("@{select-clear-background}", 1)`);} +.ant-menu-item-danger.ant-menu-item:active {background: color(~`colorPalette("@{segmented-hover-bg}", 1)`);} .ant-menu-item-danger.ant-menu-item-selected {color: #ff4d4f;} .ant-menu-item-danger.ant-menu-item-selected > a, .ant-menu-item-danger.ant-menu-item-selected > a:hover {color: #ff4d4f;} -.ant-menu:not(.ant-menu-horizontal) .ant-menu-item-danger.ant-menu-item-selected {background-color: color(~`colorPalette("@{select-clear-background}", 1)`);} +.ant-menu:not(.ant-menu-horizontal) .ant-menu-item-danger.ant-menu-item-selected {background-color: color(~`colorPalette("@{segmented-hover-bg}", 1)`);} .ant-menu-inline .ant-menu-item-danger.ant-menu-item::after {border-right-color: #ff4d4f;} .ant-menu-dark .ant-menu-item-danger.ant-menu-item, .ant-menu-dark .ant-menu-item-danger.ant-menu-item:hover, .ant-menu-dark .ant-menu-item-danger.ant-menu-item > a {color: #ff4d4f;} .ant-menu-dark.ant-menu-dark:not(.ant-menu-horizontal) .ant-menu-item-danger.ant-menu-item-selected {color: #fff;background-color: #ff4d4f;} @@ -1722,15 +1720,15 @@ tr.ant-table-expanded-row:hover > td {background: @table-expanded-row-bg;} .ant-tag-checkable:active, .ant-tag-checkable-checked {color: #fff;} .ant-tag-checkable-checked {background-color: @primary-color;} .ant-tag-checkable:active {background-color: color(~`colorPalette("@{primary-color}", 7)`);} -.ant-tag-pink {color: #c41d7f;background: color(~`colorPalette("@{modal-footer-border-color-split}", 1)`);border-color: #ffadd2;} +.ant-tag-pink {color: #c41d7f;background: color(~`colorPalette("@{table-fixed-header-sort-active-bg}", 3)`);border-color: #ffadd2;} .ant-tag-pink-inverse {color: #fff;background: #eb2f96;border-color: #eb2f96;} -.ant-tag-magenta {color: #c41d7f;background: color(~`colorPalette("@{modal-footer-border-color-split}", 1)`);border-color: #ffadd2;} +.ant-tag-magenta {color: #c41d7f;background: color(~`colorPalette("@{table-fixed-header-sort-active-bg}", 3)`);border-color: #ffadd2;} .ant-tag-magenta-inverse {color: #fff;background: #eb2f96;border-color: #eb2f96;} -.ant-tag-red {color: #cf1322;background: color(~`colorPalette("@{select-clear-background}", 1)`);border-color: #ffa39e;} +.ant-tag-red {color: #cf1322;background: color(~`colorPalette("@{segmented-hover-bg}", 1)`);border-color: #ffa39e;} .ant-tag-red-inverse {color: #fff;background: #f5222d;border-color: #f5222d;} .ant-tag-volcano {color: #d4380d;background: #fff2e8;border-color: #ffbb96;} .ant-tag-volcano-inverse {color: #fff;background: #fa541c;border-color: #fa541c;} -.ant-tag-orange {color: #d46b08;background: #fff7e6;border-color: #ffd591;} +.ant-tag-orange {color: #d46b08;background: color(~`colorPalette("@{descriptions-bg}", 1)`);border-color: #ffd591;} .ant-tag-orange-inverse {color: #fff;background: #fa8c16;border-color: #fa8c16;} .ant-tag-yellow {color: #d4b106;background: #feffe6;border-color: #fffb8f;} .ant-tag-yellow-inverse {color: #fff;background: #fadb14;border-color: #fadb14;} @@ -1738,15 +1736,15 @@ tr.ant-table-expanded-row:hover > td {background: @table-expanded-row-bg;} .ant-tag-gold-inverse {color: #fff;background: #faad14;border-color: #faad14;} .ant-tag-cyan {color: #08979c;background: #e6fffb;border-color: #87e8de;} .ant-tag-cyan-inverse {color: #fff;background: #13c2c2;border-color: #13c2c2;} -.ant-tag-lime {color: #7cb305;background: color(~`colorPalette("@{steps-nav-arrow-color}", 1)`);border-color: #eaff8f;} +.ant-tag-lime {color: #7cb305;background: color(~`colorPalette("@{layout-header-background}", 1)`);border-color: #eaff8f;} .ant-tag-lime-inverse {color: #fff;background: #a0d911;border-color: #a0d911;} .ant-tag-green {color: #389e0d;background: #f6ffed;border-color: #b7eb8f;} .ant-tag-green-inverse {color: #fff;background: #52c41a;border-color: #52c41a;} .ant-tag-blue {color: #096dd9;background: color(~`colorPalette("@{pagination-item-input-bg}", 1)`);border-color: color(~`colorPalette("@{pagination-item-input-bg}", 3)`);} .ant-tag-blue-inverse {color: #fff;background: #1890ff;border-color: #1890ff;} -.ant-tag-geekblue {color: #1d39c4;background: color(~`colorPalette("@{modal-content-bg}", 1)`);border-color: #adc6ff;} +.ant-tag-geekblue {color: #1d39c4;background: #f0f5ff;border-color: #adc6ff;} .ant-tag-geekblue-inverse {color: #fff;background: #2f54eb;border-color: #2f54eb;} -.ant-tag-purple {color: #531dab;background: #f9f0ff;border-color: #d3adf7;} +.ant-tag-purple {color: #531dab;background: color(~`colorPalette("@{alert-success-bg-color}", 2)`);border-color: #d3adf7;} .ant-tag-purple-inverse {color: #fff;background: #722ed1;border-color: #722ed1;} .ant-tag-success {color: #52c41a;background: @success-color-deprecated-bg;border-color: @success-color-deprecated-border;} .ant-tag-processing {color: @primary-color;background: @info-color-deprecated-bg;border-color: @info-color-deprecated-border;} diff --git a/web/client/src/components/Upload/index.js b/web/client/src/components/Upload/index.js index eac0a27a..b8ebed84 100644 --- a/web/client/src/components/Upload/index.js +++ b/web/client/src/components/Upload/index.js @@ -7,310 +7,310 @@ import moment from 'moment'; import { PlusOutlined, UploadOutlined, CloseOutlined } from '@ant-design/icons'; class Uploads extends Component { - constructor(props) { - super(props); - this.ApiRoot = localStorage.getItem('tyApiRoot') - this.state = { - fileUploading: false, - fileList: [], - curPreviewPic: '', - delPicIng: false, - removeFilesList: [] - }; - } + constructor(props) { + super(props); + this.ApiRoot = localStorage.getItem('tyApiRoot') + this.state = { + fileUploading: false, + fileList: [], + curPreviewPic: '', + delPicIng: false, + removeFilesList: [] + }; + } - dealName = (uploaded) => { - let realName = uploaded.split('/')[2] - let x1 = realName.split('.') - let x2 = x1[0].split('_') - let showName = `${x2[0]}.${x1[1]}` - return showName - } + dealName = (uploaded) => { + let realName = uploaded.split('/')[2] + let x1 = realName.split('.') + let x2 = x1[0].split('_') + let showName = `${x2[0]}.${x1[1]}` + return showName + } - // setFileList = (value) => { - // let defaultFileList = []; - // defaultFileList = value.map((u, index) => { - // let fileUrl = `${this.ApiRoot}/${u.url}`; - // return { - // uid: -index - 1, - // name: this.dealName(u.url), - // status: 'done', - // storageUrl: u.url, - // url: fileUrl - // }; - // }); - // onChange(defaultFileList) - // this.setState({ - // fileList: defaultFileList - // }); - // }; + // setFileList = (value) => { + // let defaultFileList = []; + // defaultFileList = value.map((u, index) => { + // let fileUrl = `${this.ApiRoot}/${u.url}`; + // return { + // uid: -index - 1, + // name: this.dealName(u.url), + // status: 'done', + // storageUrl: u.url, + // url: fileUrl + // }; + // }); + // onChange(defaultFileList) + // this.setState({ + // fileList: defaultFileList + // }); + // }; - componentDidMount() { - const { value } = this.props; - if (value) { - this.setState(value); - } - } + componentDidMount () { + const { value } = this.props; + if (value) { + this.setState(value); + } + } - componentWillReceiveProps(np) { - const { dispatch, value: thisEditData, onChange } = this.props; - const { value: nextEditData } = np; + componentWillReceiveProps (np) { + const { dispatch, value: thisEditData, onChange } = this.props; + const { value: nextEditData } = np; - const setFileList = () => { - let defaultFileList = []; - defaultFileList = nextEditData.map((u, index) => { - let fileUrl = `${this.ApiRoot}/${u.storageUrl}`; - return { - uid: -index - 1, - name: this.dealName(u.storageUrl), - status: 'done', - storageUrl: u.storageUrl, - url: fileUrl, - size: u.size || -1 - }; - }); - this.setState({ - fileList: defaultFileList - }); - }; + const setFileList = () => { + let defaultFileList = []; + defaultFileList = nextEditData.map((u, index) => { + let fileUrl = `${this.ApiRoot}/${u.storageUrl}`; + return { + uid: -index - 1, + name: this.dealName(u.storageUrl), + status: 'done', + storageUrl: u.storageUrl, + url: fileUrl, + size: u.size || -1 + }; + }); + this.setState({ + fileList: defaultFileList + }); + }; - if (nextEditData && nextEditData.length) { - if (!thisEditData || !this.state.fileList.length) { - setFileList(); - } else if (nextEditData.length != thisEditData.length) { - setFileList(); - } else { - let repeat = true; - for (let i = 0; i < thisEditData.length; i++) { - if (thisEditData[i] != nextEditData[i]) { - repeat = false; - break; - } - } - if (!repeat) { - setFileList(); - } + if (nextEditData && nextEditData.length) { + if (!thisEditData || !this.state.fileList.length) { + setFileList(); + } else if (nextEditData.length != thisEditData.length) { + setFileList(); + } else { + let repeat = true; + for (let i = 0; i < thisEditData.length; i++) { + if (thisEditData[i] != nextEditData[i]) { + repeat = false; + break; + } + } + if (!repeat) { + setFileList(); } - } - // else{ - // this.setState({ - // fileList:[], - // }) - // } - } + } + } + // else{ + // this.setState({ + // fileList:[], + // }) + // } + } - render() { - const UploadPath = { - project: ['txt', 'dwg', 'doc', 'docx', 'xls', 'xlsx', 'pdf', 'png', 'jpg', 'rar', 'zip'], - report: ['doc', 'docx', 'xls', 'xlsx', 'pdf'], - data: ['txt', 'xls', 'xlsx'], - image: ['png', 'jpg', 'svg', 'jpeg'], - three: ['js'], - video: ['mp4'] - }; - /** - * uploadType 【string】 主要区别文件上传路径 以及类型 以 web/routes/attachment/index.js 中 UploadPath 的 key 值为准;默认 project; - * disabled 【boolean】 上传是否可用 - * maxFilesNum 【number】 最大上传数量 - * fileTypes 【array[string]】 可允许上传的文件类型; - * maxFileSize 【number】 单个文件最大大小 M - * listType 【antd】 upload 组件的属性 - * onChange 【function】 文件数量变化时候回调 返回文件 - * value 【array[obj]】 编辑数据 [{url:'xxx', [size:999]}] - * onStateChange 【function】 文件状态改变回调函数 上传中 return { uploading:true/false } - */ - const { - uploadType, - disabled, - maxFilesNum, - fileTypes, - maxFileSize, - listType, - onChange, - value, - showUploadList, - onStateChange - } = this.props; - const { fileList, curPreviewPic, delPicIng, removeFilesList } = this.state; - const that = this; - let uploadType_ = uploadType || 'project'; - let maxFilesNum_ = maxFilesNum || 1; - let defaultFileTypes = fileTypes || UploadPath[uploadType_]; - const uploadProps = { - name: 'checkFile_', - multiple: false, - showUploadList: showUploadList || true, - action: `${this.ApiRoot}/attachments/${uploadType_}`, - listType: listType || 'text', - disabled: disabled, - beforeUpload: (file) => { - if (fileList.length >= maxFilesNum_) { - message.warning(`最多选择${maxFilesNum_}个文件上传`); - return false; - } - if (file.name.length > 60) { - message.warning(`文件名过长(大于60字符),请修改后上传`); - return false; - } - const extNames = file.name.split('.'); - var reg = /^[\.\s\u4e00-\u9fa5a-zA-Z0-9_-]{0,}$/; - if (!reg.exec(file.name)) { - message.warning(`文件名包含除字母、汉字、数字、中划线、下划线之外的字符,请修改后上传`); - return false; - } - let isDAE = false; - if (extNames.length > 0) { - let fileType = extNames[extNames.length - 1].toLowerCase(); - isDAE = defaultFileTypes.some((f) => f == fileType); - } - if (!isDAE) { - message.error(`只能上传 ${defaultFileTypes.join()} 格式的文件!`); - return false; - } - const isLt = file.size / 1024 / 1024 < (maxFileSize || 3); - if (!isLt) { - message.error(`文件必须小于${maxFileSize || 3}MB!`); - return false; - } - this.setState({ - fileUploading: true - }); - if (onStateChange) { - onStateChange({ uploading: true }); - } - }, - onChange(info) { - const status = info.file.status; - if (status === 'uploading') { - that.setState({ - fileList: info.fileList - }); - } - if (status === 'done') { - let { uploaded, url } = info.file.response; - let size = info.file.size; - let nextFileList = fileList; - nextFileList[nextFileList.length - 1] = { - uid: -moment().unix(), - name: that.dealName(uploaded), - status: 'done', - storageUrl: uploaded, - url: url, - size: size - }; - onChange(nextFileList); - that.setState({ - fileUploading: false, - fileList: nextFileList - }); - if (onStateChange) { - onStateChange({ uploading: false }); - } - } else if (status === 'error') { - that.setState({ - fileUploading: false - }); - message.error(`${info.file.name} 上传失败,请重试`); - if (onStateChange) { - onStateChange({ uploading: false }); - } - } - }, - onRemove(file) { - let nextFileList = []; - fileList.map((f, i) => { - if (f.uid != file.uid) { - nextFileList.push(f); - } - }); - let nextRemoveFiles = removeFilesList.concat([file.storageUrl]); - if (curPreviewPic == file.url) { - that.setState({ - curPreviewPic: '' - }); - } - onChange(nextFileList); - that.setState({ - fileList: nextFileList, - removeFilesList: nextRemoveFiles - }); - }, - onPreview(file) { - let filePostfix = file.url.split('.').pop(); - filePostfix = filePostfix.toLowerCase(); - if (UploadPath.image.some((img) => img == filePostfix)) { - that.setState({ - curPreviewPic: file.url - }); - } else { - message.warn('仅支持图片预览'); - } + render () { + const UploadPath = { + project: ['txt', 'dwg', 'doc', 'docx', 'xls', 'xlsx', 'pdf', 'png', 'jpg', 'rar', 'zip'], + report: ['doc', 'docx', 'xls', 'xlsx', 'pdf'], + data: ['txt', 'xls', 'xlsx'], + image: ['png', 'jpg', 'svg', 'jpeg'], + three: ['js'], + video: ['mp4'] + }; + /** + * uploadType 【string】 主要区别文件上传路径 以及类型 以 web/routes/attachment/index.js 中 UploadPath 的 key 值为准;默认 project; + * disabled 【boolean】 上传是否可用 + * maxFilesNum 【number】 最大上传数量 + * fileTypes 【array[string]】 可允许上传的文件类型; + * maxFileSize 【number】 单个文件最大大小 M + * listType 【antd】 upload 组件的属性 + * onChange 【function】 文件数量变化时候回调 返回文件 + * value 【array[obj]】 编辑数据 [{url:'xxx', [size:999]}] + * onStateChange 【function】 文件状态改变回调函数 上传中 return { uploading:true/false } + */ + const { + uploadType, + disabled, + maxFilesNum, + fileTypes, + maxFileSize, + listType, + onChange, + value, + showUploadList, + onStateChange + } = this.props; + const { fileList, curPreviewPic, delPicIng, removeFilesList } = this.state; + const that = this; + let uploadType_ = uploadType || 'project'; + let maxFilesNum_ = maxFilesNum || 1; + let defaultFileTypes = fileTypes || UploadPath[uploadType_]; + const uploadProps = { + name: 'checkFile_', + multiple: false, + showUploadList: showUploadList || true, + action: `${this.ApiRoot}/attachments/${uploadType_}`, + listType: listType || 'text', + disabled: disabled, + beforeUpload: (file) => { + if (fileList.length >= maxFilesNum_) { + message.warning(`最多选择${maxFilesNum_}个文件上传`); + return false; + } + if (file.name.length > 60) { + message.warning(`文件名过长(大于60字符),请修改后上传`); + return false; + } + const extNames = file.name.split('.'); + var reg = /^[\.\s\u4e00-\u9fa5a-zA-Z0-9_-]{0,}$/; + if (!reg.exec(file.name)) { + message.warning(`文件名包含除字母、汉字、数字、中划线、下划线之外的字符,请修改后上传`); + return false; + } + let isDAE = false; + if (extNames.length > 0) { + let fileType = extNames[extNames.length - 1].toLowerCase(); + isDAE = defaultFileTypes.some((f) => f == fileType); + } + if (!isDAE) { + message.error(`只能上传 ${defaultFileTypes.join()} 格式的文件!`); + return false; + } + const isLt = file.size / 1024 / 1024 < (maxFileSize || 3); + if (!isLt) { + message.error(`文件必须小于${maxFileSize || 3}MB!`); + return false; + } + this.setState({ + fileUploading: true + }); + if (onStateChange) { + onStateChange({ uploading: true }); + } + }, + onChange (info) { + const status = info.file.status; + if (status === 'uploading') { + that.setState({ + fileList: info.fileList + }); + } + if (status === 'done') { + let { uploaded, url } = info.file.response; + let size = info.file.size; + let nextFileList = fileList; + nextFileList[nextFileList.length - 1] = { + uid: -moment().unix(), + name: that.dealName(uploaded), + status: 'done', + storageUrl: uploaded, + url: url, + size: size + }; + onChange(nextFileList); + that.setState({ + fileUploading: false, + fileList: nextFileList + }); + if (onStateChange) { + onStateChange({ uploading: false }); + } + } else if (status === 'error') { + that.setState({ + fileUploading: false + }); + message.error(`${info.file.name} 上传失败,请重试`); + if (onStateChange) { + onStateChange({ uploading: false }); + } + } + }, + onRemove (file) { + let nextFileList = []; + fileList.map((f, i) => { + if (f.uid != file.uid) { + nextFileList.push(f); + } + }); + let nextRemoveFiles = removeFilesList.concat([file.storageUrl]); + if (curPreviewPic == file.url) { + that.setState({ + curPreviewPic: '' + }); + } + onChange(nextFileList); + that.setState({ + fileList: nextFileList, + removeFilesList: nextRemoveFiles + }); + }, + onPreview (file) { + let filePostfix = file.url.split('.').pop(); + filePostfix = filePostfix.toLowerCase(); + if (UploadPath.image.some((img) => img == filePostfix)) { + that.setState({ + curPreviewPic: file.url + }); + } else { + message.warn('仅支持图片预览'); } - }; + } + }; - let fileList_ = fileList - // .map(f => { - // if (f.storageUrl) { - // let realName = f.storageUrl.split('/').pop() - // if (f.name != realName) { - // f.name = realName - // } - // } - // return f - // }) + let fileList_ = fileList + // .map(f => { + // if (f.storageUrl) { + // let realName = f.storageUrl.split('/').pop() + // if (f.name != realName) { + // f.name = realName + // } + // } + // return f + // }) - return ( -
- - - { - disabled ? ( - '' - ) : - listType == 'picture-card' ? - ( - fileList.length >= maxFilesNum_ ? null : ( -
- -
上传图片
-
- ) - ) : ( - - ) - } -
- { - curPreviewPic ? ( - -
- 文件预览 - { this.setState({ curPreviewPic: '' }); }} - > - - -
- -
- ) : '' - } -
-
- ); - } + return ( +
+ + + { + disabled ? ( + '' + ) : + listType == 'picture-card' ? + ( + fileList.length >= maxFilesNum_ ? null : ( +
+ +
上传图片
+
+ ) + ) : ( + + ) + } +
+ { + curPreviewPic ? ( + +
+ 文件预览 + { this.setState({ curPreviewPic: '' }); }} + > + + +
+ +
+ ) : '' + } +
+
+ ); + } } -function mapStateToProps(state) { - const { auth } = state - return { - user: auth.user - }; +function mapStateToProps (state) { + const { auth } = state + return { + user: auth.user + }; } export default connect(mapStateToProps)(Uploads); diff --git a/web/client/src/sections/fillion/actions/infor.js b/web/client/src/sections/fillion/actions/infor.js index 2fcc0841..c706563c 100644 --- a/web/client/src/sections/fillion/actions/infor.js +++ b/web/client/src/sections/fillion/actions/infor.js @@ -1,15 +1,15 @@ import { basicAction } from '@peace/utils' import { ApiTable } from '$utils' -export function getDepMessage() { - return dispatch => basicAction({ - type: 'get', - dispatch: dispatch, - actionType: 'GET_DEPARTMENT_MESSAGE', - url: ApiTable.getDepMessage, - msg: { error: '获取部门信息失败' }, - reducer: { name: 'depMessage' } - }); +export function getDepMessage () { + return dispatch => basicAction({ + type: 'get', + dispatch: dispatch, + actionType: 'GET_DEPARTMENT_MESSAGE', + url: ApiTable.getDepMessage, + msg: { error: '获取部门信息失败' }, + reducer: { name: 'depMessage' } + }); } // export function getReportStatistic(query) { // return dispatch => basicAction({ @@ -23,304 +23,316 @@ export function getDepMessage() { // }); // } -export function getOperaTional(query) { - return dispatch => basicAction({ - type: 'get', - dispatch: dispatch, - query: query, - actionType: 'GET_OPERA_TIONAL', - url: ApiTable.getOperaTional, - msg: { error: '获取客运信息失败' }, - - }); +export function getOperaTional (query) { + return dispatch => basicAction({ + type: 'get', + dispatch: dispatch, + query: query, + actionType: 'GET_OPERA_TIONAL', + url: ApiTable.getOperaTional, + msg: { error: '获取客运信息失败' }, + // reducer: { name: 'reportstatistic' } + }); } -export function putOperaTional(query) { - return dispatch => basicAction({ - type: 'put', - dispatch: dispatch, - data: query, - actionType: 'PUT_OPERA_TIONAL', - url: ApiTable.putOperaTional, - msg: { error: '获取车辆信息失败' }, - - }); + +export function putOperaTional (query) { + return dispatch => basicAction({ + type: 'put', + dispatch: dispatch, + data: query, + actionType: 'PUT_OPERA_TIONAL', + url: ApiTable.putOperaTional, + msg: { error: '获取车辆信息失败' }, + // reducer: { name: 'reportstatistic' } + }); } -export function getSpecificVehicle(query) { - return dispatch => basicAction({ - type: 'get', - dispatch: dispatch, - query: query, - actionType: 'GET_SPECIFIC_VEHICLE', - url: ApiTable.getSpecificVehicle, - msg: { error: '获取车辆信息失败' }, - - }); +export function getSpecificVehicle (query) { + return dispatch => basicAction({ + type: 'get', + dispatch: dispatch, + query: query, + actionType: 'GET_SPECIFIC_VEHICLE', + url: ApiTable.getSpecificVehicle, + msg: { error: '获取车辆信息失败' }, + // reducer: { name: 'reportstatistic' } + }); } -export function putSpecificVehicle(query) { - return dispatch => basicAction({ - type: 'put', - dispatch: dispatch, - data: query, - actionType: 'put_SPECIFIC_VEHICLE', - url: ApiTable.putSpecificVehicle, - msg: { error: '编辑车辆信息失败' }, - - }); +export function putSpecificVehicle (query) { + return dispatch => basicAction({ + type: 'put', + dispatch: dispatch, + data: query, + actionType: 'put_SPECIFIC_VEHICLE', + url: ApiTable.putSpecificVehicle, + msg: { error: '编辑车辆信息失败' }, + // reducer: { name: 'reportstatistic' } + }); } -export function putHouseholds(query) { - return dispatch => basicAction({ - type: 'put', - dispatch: dispatch, - data: query, - actionType: 'put_HOUSEHOLDS', - url: ApiTable.putHouseholds, - msg: { error: '编辑业户信息失败' }, - - }); +export function putHouseholds (query) { + return dispatch => basicAction({ + type: 'put', + dispatch: dispatch, + data: query, + actionType: 'put_HOUSEHOLDS', + url: ApiTable.putHouseholds, + msg: { error: '编辑业户信息失败' }, + // reducer: { name: 'reportstatistic' } + }); } -export function getHouseholds(query) { - return dispatch => basicAction({ - type: 'get', - dispatch: dispatch, - query: query, - actionType: 'GET_HOUSEHOLDS', - url: ApiTable.getHouseholds, - msg: { error: '获取业户信息失败' }, - - }); +export function getHouseholds (query) { + return dispatch => basicAction({ + type: 'get', + dispatch: dispatch, + query: query, + actionType: 'GET_HOUSEHOLDS', + url: ApiTable.getHouseholds, + msg: { error: '获取业户信息失败' }, + // reducer: { name: 'reportstatistic' } + }); } -export function getRoadway(query) { - return dispatch => basicAction({ - type: 'get', - dispatch: dispatch, - query: query, - actionType: 'GET_ROADWAY', - url: ApiTable.getRoadway, - msg: { error: '获取道路信息失败' }, - - }); +export function getRoadway (query) { + return dispatch => basicAction({ + type: 'get', + dispatch: dispatch, + query: query, + actionType: 'GET_ROADWAY', + url: ApiTable.getRoadway, + msg: { error: '获取道路信息失败' }, + // reducer: { name: 'reportstatistic' } + }); } -export function putRoadway(query) { - return dispatch => basicAction({ - type: 'put', - dispatch: dispatch, - data: query, - actionType: 'PUT_ROADWAY', - url: ApiTable.putRoadway, - msg: { error: '编辑道路信息失败' }, - - }); +export function putRoadway (query) { + return dispatch => basicAction({ + type: 'put', + dispatch: dispatch, + data: query, + actionType: 'PUT_ROADWAY', + url: ApiTable.putRoadway, + msg: { error: '编辑道路信息失败' }, + // reducer: { name: 'reportstatistic' } + }); } -export function getBridge(query) { - return dispatch => basicAction({ - type: 'get', - dispatch: dispatch, - query: query, - actionType: 'GET_BRIDGE', - url: ApiTable.getBridge, - msg: { error: '获取桥梁信息失败' }, - - }); +export function getBridge (query) { + return dispatch => basicAction({ + type: 'get', + dispatch: dispatch, + query: query, + actionType: 'GET_BRIDGE', + url: ApiTable.getBridge, + msg: { error: '获取桥梁信息失败' }, + // reducer: { name: 'reportstatistic' } + }); } -export function putBridge(query) { - return dispatch => basicAction({ - type: 'put', - dispatch: dispatch, - data: query, - actionType: 'PUT_BRIDGE', - url: ApiTable.putBridge, - msg: { error: '编辑桥梁信息失败' }, - - }); +export function putBridge (query) { + return dispatch => basicAction({ + type: 'put', + dispatch: dispatch, + data: query, + actionType: 'PUT_BRIDGE', + url: ApiTable.putBridge, + msg: { error: '编辑桥梁信息失败' }, + // reducer: { name: 'reportstatistic' } + }); } -export function getProject(query) { - return dispatch => basicAction({ - type: 'get', - dispatch: dispatch, - query: query, - actionType: 'GET_PROJECT', - url: ApiTable.getProject, - msg: { error: '获取工程信息失败' }, - - }); +export function getProject (query) { + return dispatch => basicAction({ + type: 'get', + dispatch: dispatch, + query: query, + actionType: 'GET_PROJECT', + url: ApiTable.getProject, + msg: { error: '获取工程信息失败' }, + // reducer: { name: 'reportstatistic' } + }); } -export function putProject(query) { - return dispatch => basicAction({ - type: 'put', - dispatch: dispatch, - data: query, - actionType: 'GET_PROJECT', - url: ApiTable.putProject, - msg: { error: '编辑工程信息失败' }, - - }); +export function putProject (query) { + return dispatch => basicAction({ + type: 'put', + dispatch: dispatch, + data: query, + actionType: 'GET_PROJECT', + url: ApiTable.putProject, + msg: { error: '编辑工程信息失败' }, + // reducer: { name: 'reportstatistic' } + }); } -export function getHighways(query) { - return dispatch => basicAction({ - type: 'get', - dispatch: dispatch, - query: query, - actionType: 'GET_HIGHWAYS', - url: ApiTable.getHighways, - msg: { error: '获取路政信息失败' }, - - }); +export function getPropagata (query) { + return dispatch => basicAction({ + type: 'get', + dispatch: dispatch, + query: query, + actionType: 'GET_PROPAGATA', + url: ApiTable.getpropagata, + msg: { error: '获取宣传视频信息失败' }, + // reducer: { name: 'reportstatistic' } + }); } -export function putHighways(query) { - return dispatch => basicAction({ - type: 'put', - dispatch: dispatch, - data: query, - actionType: 'GET_HIGHWAYS', - url: ApiTable.putHighways, - msg: { error: '编辑路政信息失败' }, - - }); +export function putAddPropagata (query) { + return dispatch => basicAction({ + type: 'put', + dispatch: dispatch, + data: query, + actionType: 'PUT_PROPAGATA', + url: ApiTable.putpropagata, + msg: { error: '新增宣传视频信息失败' }, + // reducer: { name: 'reportstatistic' } + }); } -export function getCircuit(query) { - return dispatch => basicAction({ - type: 'get', - dispatch: dispatch, - query: query, - actionType: 'GET_CIRCUIT', - url: ApiTable.getCircuit, - msg: { error: '获取线路信息失败' }, - - }); +export function putEditPropagata (query) { + return dispatch => basicAction({ + type: 'put', + dispatch: dispatch, + data: query, + actionType: 'PUT_PROPAGATA', + url: ApiTable.putpropagata, + msg: { error: '编辑宣传视频信息失败' }, + // reducer: { name: 'reportstatistic' } + }); } -export function putCircuit(query) { - return dispatch => basicAction({ - type: 'put', - dispatch: dispatch, - data: query, - actionType: 'PUT_CIRCUIT', - url: ApiTable.putCircuit, - msg: { error: '编辑线路信息失败' }, - - }); +export function delPropagata (query) { + return dispatch => basicAction({ + type: 'del', + dispatch: dispatch, + actionType: 'DEL_PROPAGATA', + url: ApiTable.delpropagata.replace("{publicityId}", query?.publicityId), + msg: { error: '删除宣传视频信息失败' }, + // reducer: { name: 'reportstatistic' } + }); } -export function getVehicle(query) { - return dispatch => basicAction({ - type: 'get', - dispatch: dispatch, - query: query, - actionType: 'GET_VEHICLE', - url: ApiTable.getVehicle, - msg: { error: '获取车辆信息失败' }, - - }); + +export function getHighways (query) { + return dispatch => basicAction({ + type: 'get', + dispatch: dispatch, + query: query, + actionType: 'GET_HIGHWAYS', + url: ApiTable.getHighways, + msg: { error: '获取路政信息失败' }, + // reducer: { name: 'reportstatistic' } + }); } -export function putVehicle(query) { - return dispatch => basicAction({ - type: 'put', - dispatch: dispatch, - data: query, - actionType: 'PUT_VEHICLE', - url: ApiTable.putVehicle, - msg: { error: '编辑车辆信息失败' }, - - }); +export function putHighways (query) { + return dispatch => basicAction({ + type: 'put', + dispatch: dispatch, + data: query, + actionType: 'GET_HIGHWAYS', + url: ApiTable.putHighways, + msg: { error: '编辑路政信息失败' }, + // reducer: { name: 'reportstatistic' } + }); } -export function delRoadway(query) { - return dispatch => basicAction({ - type: 'del', - dispatch: dispatch, - actionType: 'DEL_ROADWAY', - url: ApiTable.delRoadway.replace("{roadId}", query?.roadId), - msg: { error: '删除车辆信息失败' }, - - }); +export function getCircuit (query) { + return dispatch => basicAction({ + type: 'get', + dispatch: dispatch, + query: query, + actionType: 'GET_CIRCUIT', + url: ApiTable.getCircuit, + msg: { error: '获取线路信息失败' }, + // reducer: { name: 'reportstatistic' } + }); } -export function delProject(query) { - return dispatch => basicAction({ - type: 'del', - dispatch: dispatch, - actionType: 'DEL_PROJECT', - url: ApiTable.delProject.replace("{projectId}", query?.projectId), - msg: { error: '删除工程信息失败' }, - - }); +export function putCircuit (query) { + return dispatch => basicAction({ + type: 'put', + dispatch: dispatch, + data: query, + actionType: 'PUT_CIRCUIT', + url: ApiTable.putCircuit, + msg: { error: '编辑线路信息失败' }, + // reducer: { name: 'reportstatistic' } + }); } -export function delBridge(query) { - return dispatch => basicAction({ - type: 'del', - dispatch: dispatch, - actionType: 'DEL_BRIDGE', - url: ApiTable.delBridge.replace("{bridgeId}", query?.bridgeId), - msg: { error: '删除桥梁信息失败' }, - - }); +export function getVehicle (query) { + return dispatch => basicAction({ + type: 'get', + dispatch: dispatch, + query: query, + actionType: 'GET_VEHICLE', + url: ApiTable.getVehicle, + msg: { error: '获取车辆信息失败' }, + // reducer: { name: 'reportstatistic' } + }); } -export function delSpecificVehicle(query) { - return dispatch => basicAction({ - type: 'del', - dispatch: dispatch, - actionType: 'DEL_SPECIFICVENICLE', - url: ApiTable.delSpecificVehicle.replace("{vehicleId}", query?.vehicleId), - msg: { error: '删除车辆信息失败' }, - - }); +export function putVehicle (query) { + return dispatch => basicAction({ + type: 'put', + dispatch: dispatch, + data: query, + actionType: 'PUT_VEHICLE', + url: ApiTable.putVehicle, + msg: { error: '编辑车辆信息失败' }, + // reducer: { name: 'reportstatistic' } + }); } -export function delHouseholds(query) { - return dispatch => basicAction({ - type: 'del', - dispatch: dispatch, - actionType: 'DEL_HOUSEHOLDS', - url: ApiTable.delHouseholds.replace("{businessId}", query?.businessId), - msg: { error: '删除业户信息失败' }, - - }); +export function delRoadway (query) { + return dispatch => basicAction({ + type: 'del', + dispatch: dispatch, + actionType: 'DEL_ROADWAY', + url: ApiTable.delRoadway.replace("{roadId}", query?.roadId), + msg: { error: '删除车辆信息失败' }, + // reducer: { name: 'reportstatistic' } + }); } -export function delCircuit(query) { - return dispatch => basicAction({ - type: 'del', - dispatch: dispatch, - actionType: 'DEL_CIRCUIT', - url: ApiTable.delCircuit.replace("{lineId}", query?.lineId), - msg: { error: '删除运营线路信息失败' }, - - }); +export function delProject (query) { + return dispatch => basicAction({ + type: 'del', + dispatch: dispatch, + actionType: 'DEL_PROJECT', + url: ApiTable.delProject.replace("{projectId}", query?.projectId), + msg: { error: '删除工程信息失败' }, + // reducer: { name: 'reportstatistic' } + }); } -export function delVehicle(query) { - return dispatch => basicAction({ - type: 'del', - dispatch: dispatch, - actionType: 'DEL_VEHICLE', - url: ApiTable.delVehicle.replace("{carId}", query?.carId), - msg: { error: '删除车辆信息失败' }, - - }); +export function delBridge (query) { + return dispatch => basicAction({ + type: 'del', + dispatch: dispatch, + actionType: 'DEL_BRIDGE', + url: ApiTable.delBridge.replace("{bridgeId}", query?.bridgeId), + msg: { error: '删除桥梁信息失败' }, + // reducer: { name: 'reportstatistic' } + }); } - -export function getPurchase(query) { - return dispatch => basicAction({ - type: 'get', - dispatch: dispatch, - query: query, - actionType: 'GET_PURCHASE', - url: ApiTable.getPurchase, - msg: { error: '获取治超信息失败' }, - - }); +export function delSpecificVehicle (query) { + return dispatch => basicAction({ + type: 'del', + dispatch: dispatch, + actionType: 'DEL_SPECIFICVENICLE', + url: ApiTable.delSpecificVehicle.replace("{vehicleId}", query?.vehicleId), + msg: { error: '删除车辆信息失败' }, + // reducer: { name: 'reportstatistic' } + }); +} +export function delHouseholds (query) { + return dispatch => basicAction({ + type: 'del', + dispatch: dispatch, + actionType: 'DEL_HOUSEHOLDS', + url: ApiTable.delHouseholds.replace("{businessId}", query?.businessId), + msg: { error: '删除业户信息失败' }, + // reducer: { name: 'reportstatistic' } + }); +} +export function delCircuit (query) { + return dispatch => basicAction({ + type: 'del', + dispatch: dispatch, + actionType: 'DEL_CIRCUIT', + url: ApiTable.delCircuit.replace("{lineId}", query?.lineId), + msg: { error: '删除运营线路信息失败' }, + // reducer: { name: 'reportstatistic' } + }); } -export function putPurchase(query) { - return dispatch => basicAction({ - type: 'put', - dispatch: dispatch, - data: query, - actionType: 'PUT_PURCHASE', - url: ApiTable.putPurchase, - msg: { error: '获取治超信息失败' }, - - }); +export function delVehicle (query) { + return dispatch => basicAction({ + type: 'del', + dispatch: dispatch, + actionType: 'DEL_VEHICLE', + url: ApiTable.delVehicle.replace("{carId}", query?.carId), + msg: { error: '删除车辆信息失败' }, + // reducer: { name: 'reportstatistic' } + }); } -export function delPurchase(query) { - return dispatch => basicAction({ - type: 'del', - dispatch: dispatch, - actionType: 'DEL_PURCHASE', - url: ApiTable.delPurchase.replace("{overspeedId}", query?.overspeedId), - msg: { error: '删除车辆信息失败' }, - - }); -} \ No newline at end of file diff --git a/web/client/src/sections/fillion/components/infor/details.js b/web/client/src/sections/fillion/components/infor/details.js index 73b24c7d..f6a107c8 100644 --- a/web/client/src/sections/fillion/components/infor/details.js +++ b/web/client/src/sections/fillion/components/infor/details.js @@ -2,11 +2,11 @@ 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 { putRoadway, putSpecificVehicle, putHouseholds, putCircuit, putVehicle, putPurchase } from "../../actions/infor" +import { putRoadway, putSpecificVehicle, putHouseholds,putCircuit,putVehicle } from "../../actions/infor" import { putBridge } from "../../actions/infor" 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, engineering } = props const [newlys, setNewlys] = useState() //必填数据 const [newlysay, setNewlysay] = useState() //处理hou const [records, setRecords] = useState()//处理 @@ -65,13 +65,6 @@ const UserModal = (props) => { setNewlys(array?.splice(0, 2)) setNewlysay(array) } - if (rewkeys === 'zhichao') { - _.forIn(data, function (value, key) { - array.push({ name: value, type: key }) - }); - setNewlys(array?.splice(0, 2)) - setNewlysay(array) - } }, []) useEffect(() => { const arr = [] @@ -124,13 +117,6 @@ const UserModal = (props) => { setRecordsay(arr.splice(1, 2)) // setEstablishment(arr.splice(-1, 1)) setRecords(arr) - } if (rewkeys === 'zhichao') { - _.forIn(recortd, function (value, key) { - arr.push({ value: value, type: key }) - }); - setRecordsay(arr.splice(1, 2)) - // setEstablishment(arr.splice(-1, 1)) - setRecords(arr) } }, [recortd]) useEffect(() => { @@ -252,25 +238,6 @@ const UserModal = (props) => { return true } } - if (rewkeys === 'zhichao') { - if (typecard == '111') { - setDelet(values) - const query = { ...values, overspeedId: records?.[0]?.value || '' } - dispatch(putPurchase(query)).then((res) => { - - setMonitor(res) - }) - return true - } else { - setDelet(values) - const query = { ...values } - dispatch(putPurchase(query)).then((res) => { - - setMonitor(res) - }) - return true - } - } } else { return false } }} diff --git a/web/client/src/sections/fillion/components/infor/videoUpload.js b/web/client/src/sections/fillion/components/infor/videoUpload.js new file mode 100644 index 00000000..40df283c --- /dev/null +++ b/web/client/src/sections/fillion/components/infor/videoUpload.js @@ -0,0 +1,215 @@ +import React, { useState, useEffect } from 'react'; +import { connect } from 'react-redux'; +import { Modal, Form, Button, Input } from 'antd'; +import Uploads from "../../../../components/Upload/index" +import { putAddPropagata } from '../../actions/infor'; +import { putEditPropagata } from '../../actions/infor'; +import { getPropagata } from '../../actions/infor'; + + +const VideoUpload = (props) => { + const [counts, setCounts] = useState()//shuju + + //获取数据 + // useEffect(() => { + // const vedio = dispatch(getPropagata()).then((res) => { + // setCounts(res.payload.data) + // console.log(res.payload.data) + // }) + // }, []) + + const { dispatch, record } = props + // console.log(record); + const [success, setSuccess] = useState() //状态 + const [form] = Form.useForm(); + + //弹窗 + const [isModalVisible, setIsModalVisible] = useState(false); + // const [video1, videoAddress] = useState() + const showModal = () => { + setIsModalVisible(true); + }; + + // const idArr = record.map((item) => { item.id }) + // console.log(idArr); + + //新增 + const handleOkAdd = () => { + form.validateFields().then((values) => { + const videoAddress = values.video.map((item) => { + return item.storageUrl.concat() + }) + const videoname = values.videoname + const data = { name: videoname, video: videoAddress } + dispatch(putAddPropagata(data)).then((res) => { + setSuccess(res.success) + console.log(data); + }) + setIsModalVisible(false); + } + ); + }; + //编辑 + const handleOkEdit = (record) => { + console.log(record); + console.log(record.id); + form.validateFields().then((values) => { + console.log(values); + const videoAddress = values.video.map((item) => { + return item.storageUrl.concat() + }) + // const videoname = form.getFieldsValue('videoname') + const videoname = values.username ? (!values.username) : record.name + const id = record.id + const video = record.video + + const data = { publicityId: id, name: videoname, video: videoAddress } + dispatch(putEditPropagata(data)).then((res) => { + setSuccess(res.success) + console.log(data); + }) + } + ); + setIsModalVisible(false); + }; + + + + const handleCancel = () => { + setIsModalVisible(false); + }; + + const onFinish = (values) => { + console.log('Success:', values); + }; + + const onFinishFailed = (errorInfo) => { + console.log('Failed:', errorInfo); + }; + + + return ( +
+ { + props.type_ys ?
+ +
+ + + + + + + +
+
+
+ : +
+ handleOkEdit(record)} onCancel={handleCancel}> +
+ + + + + + + +
+
+
+ } +
+ ) +} + + + +function mapStateToProps (state) { + const { depMessage } = state; + const pakData = (dep) => { + return dep.map((d) => { + return { + title: d.name, + value: d.id, + children: pakData(d.subordinate) + } + }) + } + let depData = pakData(depMessage.data || []) + return { + loading: depMessage.isRequesting, + depData, + }; +} +export default connect(mapStateToProps)(VideoUpload); \ No newline at end of file diff --git a/web/client/src/sections/fillion/components/operationalTable.js b/web/client/src/sections/fillion/components/operationalTable.js index 119e1629..3539b117 100644 --- a/web/client/src/sections/fillion/components/operationalTable.js +++ b/web/client/src/sections/fillion/components/operationalTable.js @@ -9,2097 +9,2099 @@ import HightModal from './highways/highwaysdata'; const OperaTionalTable = (props) => { - const { dispatch, user, depData, depMessage, depLoading } = props - const [rowSelected, setRowSelected] = useState([]) - - const [sitename, setSitename] = useState()//场所名称 - const [counts, setCounts] = useState()//shuju - const [modalVisible, setModalVisible] = useState(false); - const [modalVisibleyilan, setModalVisibleyilan] = useState(false); - const [modalRecord, setModalRecord] = useState(); - const [typecard, setTypecard] = useState(); - const [activeKey, setActiveKey] = useState('tab1'); - const [recortd, setRecortd] = useState() - const [rewkeys, setRewkeys] = useState('keyun') - const [delet, setDelet] = useState() - - const ref = useRef() - useEffect(() => { ref.current.reload() }, [rewkeys, activeKey, delet]) - //打开弹窗 - const openModal = (type, record) => { - setModalVisible(true); - // setModalType(type); - if (type == 'edit') { - setModalRecord(record); - } else { - setModalRecord(null); - } - } - const deldata = (id) => { // 出租危货 - const query = { - vehicleId: id - } - dispatch(delSpecificVehicle(query)).then((res) => { - setDelet(res) - }) - } - - const deldatas = (id) => { // 业户 - const query = { - businessId: id - } - dispatch(delHouseholds(query)).then((res) => { - setDelet(res) - }) - } - //打开弹窗 - const hightModal = (type, record) => { - setModalVisibleyilan(true); - // setModalType(type); - if (type == 'edit') { - setModalRecord(record); - } 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 = { - tab1: [ - { - title: '类型', - dataIndex: 'placeName', - fixed: 'left', - width: 120, - options: 1, - backgroundColor: "#ffffff", - search: false, - - fieldProps: { - - placeholder: '请输入道路名称进行搜索', - getPopupContainer: (triggerNode) => triggerNode.parentNode, - }, - render: (dom, record) => { - return record.name - }, - }, - { - title: '数量', - search: false, - dataIndex: 'containers', - - fixed: 'left', - width: 120, - render: (dom, record) => { - return record.count - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, - { - title: '操作', - dataIndex: 'creatTime', - valueType: 'dateTimeRange', - hideInSearch: true, - width: 120, - fixed: 'right', - render: (dom, record) => { - return
- - } - }, - - ], tab2: [ - { - title: '业户名称', - dataIndex: 'placeName', - fixed: 'left', - width: 120, - options: 1, - backgroundColor: "#ffffff", - fieldProps: { - onChange: (value, cs) => { - setSitename(value.currentTarget.value) - }, - placeholder: '请输入业户称进行搜索', - getPopupContainer: (triggerNode) => triggerNode.parentNode, - }, - render: (dom, record) => { - return record.nameOfBusinessOwner - }, - }, - { - title: '车籍地', - search: false, - dataIndex: 'containers', - - fixed: 'left', - width: 120, - render: (dom, record) => { - return record.vehicleRegistry - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, - { - title: '车牌号', - search: false, - dataIndex: 'time2', - valueType: 'dateRange1', - // align: 'right', - width: 120, - render: (dom, record) => { - return record.licensePlateNumber - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, - { - title: '燃料类型', - search: false, - dataIndex: 'time3', - valueType: 'dateRange2', - - - - width: 120, - render: (dom, record) => { - return record.fuelType - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '住址', - search: false, - dataIndex: 'time4', - valueType: 'dateRange3', - - - width: 120, - render: (dom, record) => { - return record.address - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '经济性质', - search: false, - dataIndex: 'time5', - valueType: 'dateRange4', - - - width: 120, - render: (dom, record) => { - return record.economicNature - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '核定载客位数', - search: false, - dataIndex: 'time6', - valueType: 'dateRange5', - - - width: 120, - render: (dom, record) => { - return record.approvedPassengerCapacity - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '核定载质量', - search: false, - dataIndex: 'time7', - valueType: 'dateRange6', - - - width: 120, - render: (dom, record) => { - return record.approvedLoadMass - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '车辆车轴数', - search: false, - dataIndex: 'time8', - valueType: 'dateRange7', - - - width: 120, - render: (dom, record) => { - return record.numberOfVehicleAxles - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '车辆厂牌', - search: false, - dataIndex: 'time9', - valueType: 'dateRange8', - - - width: 140, - - render: (dom, record) => { - return record.vehicleBrand - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '经营范围', - search: false, - dataIndex: 'time10', - valueType: 'dateRange9', - - - width: 140, - - render: (dom, record) => { - return record.natureOfBusiness - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '车辆营运状态', - search: false, - dataIndex: 'time11', - valueType: 'dateRange10', - - - width: 140, - - render: (dom, record) => { - return record.vehicleOperationStatus - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '客车类型与等级', - search: false, - dataIndex: 'time12', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.busTypeAndClass - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '年审结果', - search: false, - dataIndex: 'time13', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.annualReviewResults - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '本次年审日期', - search: false, - dataIndex: 'time14', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.dateOfThisAnnualReview - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '下次年审日期', - search: false, - dataIndex: 'time15', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.dateOfNextAnnualReview - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '注册登记日期', - search: false, - dataIndex: 'time16', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.dateOfRegistration - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '运力来源', - search: false, - dataIndex: 'time17', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.sourceOfTransportationCapacity - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '有效期起', - search: false, - dataIndex: 'time18', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.fromTheExpiryDate - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '有效期止', - search: false, - dataIndex: 'time19', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.expiryDate - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '发动机排量', - search: false, - dataIndex: 'time20', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.engineDisplacement - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '发动机号', - search: false, - dataIndex: 'time21', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.engineNumber - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '车辆发动机功率', - search: false, - dataIndex: 'time22', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.vehicleEnginePower - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '经营许可证号', - search: false, - dataIndex: 'time23', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.businessLicenseNo - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '车牌颜色', - search: false, - dataIndex: 'time24', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.licensePlateColor - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '车辆总质量', - search: false, - dataIndex: 'time25', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.totalVehicleMass - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '车辆准牵引总质量', - search: false, - dataIndex: 'time26', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.totalQuasiTractionMassOfVehicle - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '道路运输证号', - search: false, - dataIndex: 'time27', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.roadTransportCertificateNo - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '车辆车高', - search: false, - dataIndex: 'time28', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.vehicleHeight - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '车辆车长', - search: false, - dataIndex: 'time29', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.vehicleConductor - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '车辆车宽', - search: false, - dataIndex: 'time30', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.vehicleWidth - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '车辆类型', - search: false, - dataIndex: 'time31', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.vehicleType - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '行驶证车辆类型', - search: false, - dataIndex: 'time30', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.vehicleTypeWithDrivingLicense - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '车辆轴距', - search: false, - dataIndex: 'time31', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.vehicleWheelbase - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '等级评定日期', - search: false, - dataIndex: 'time32', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.ratingDate - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '技术评定等级', - search: false, - dataIndex: 'time33', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.technicalEvaluationGrade - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '下次等级评定日期', - search: false, - dataIndex: 'time34', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.nextRatingDate - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '创建日期', - search: false, - dataIndex: 'time35', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.creationDate - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, - { - title: '操作', - dataIndex: 'creatTime55', - valueType: 'dateTimeRange', - hideInSearch: true, - width: 120, - fixed: 'right', - render: (dom, record) => { - return
+ + } + }, + + ], tab2: [ + { + title: '业户名称', + dataIndex: 'placeName', + fixed: 'left', + width: 120, + options: 1, + backgroundColor: "#ffffff", + fieldProps: { + onChange: (value, cs) => { + setSitename(value.currentTarget.value) + }, + placeholder: '请输入业户称进行搜索', + getPopupContainer: (triggerNode) => triggerNode.parentNode, + }, + render: (dom, record) => { + return record.nameOfBusinessOwner + }, + }, + { + title: '车籍地', + search: false, + dataIndex: 'containers', + + fixed: 'left', + width: 120, + render: (dom, record) => { + return record.vehicleRegistry + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, + { + title: '车牌号', + search: false, + dataIndex: 'time2', + valueType: 'dateRange', + // align: 'right', + width: 120, + render: (dom, record) => { + return record.licensePlateNumber + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, + { + title: '燃料类型', + search: false, + dataIndex: 'time3', + valueType: 'dateRange', + + + + width: 120, + render: (dom, record) => { + return record.fuelType + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '住址', + search: false, + dataIndex: 'time4', + valueType: 'dateRange', + + + width: 120, + render: (dom, record) => { + return record.address + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '经济性质', + search: false, + dataIndex: 'time5', + valueType: 'dateRange', + + + width: 120, + render: (dom, record) => { + return record.economicNature + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '核定载客位数', + search: false, + dataIndex: 'time6', + valueType: 'dateRange', + + + width: 120, + render: (dom, record) => { + return record.approvedPassengerCapacity + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '核定载质量', + search: false, + dataIndex: 'time7', + valueType: 'dateRange', + + + width: 120, + render: (dom, record) => { + return record.approvedLoadMass + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '车辆车轴数', + search: false, + dataIndex: 'time8', + valueType: 'dateRange', + + + width: 120, + render: (dom, record) => { + return record.numberOfVehicleAxles + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '车辆厂牌', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.vehicleBrand + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '经营范围', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.natureOfBusiness + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '车辆营运状态', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.vehicleOperationStatus + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '客车类型与等级', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.busTypeAndClass + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '年审结果', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.annualReviewResults + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '本次年审日期', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.dateOfThisAnnualReview + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '下次年审日期', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.dateOfNextAnnualReview + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '注册登记日期', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.dateOfRegistration + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '运力来源', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.sourceOfTransportationCapacity + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '有效期起', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.fromTheExpiryDate + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '有效期止', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.expiryDate + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '发动机排量', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.engineDisplacement + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '发动机号', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.engineNumber + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '车辆发动机功率', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.vehicleEnginePower + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '经营许可证号', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.businessLicenseNo + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '车牌颜色', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.licensePlateColor + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '车辆总质量', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.totalVehicleMass + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '车辆准牵引总质量', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.totalQuasiTractionMassOfVehicle + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '道路运输证号', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.roadTransportCertificateNo + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '车辆车高', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.vehicleHeight + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '车辆车长', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.vehicleConductor + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '车辆车宽', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.vehicleWidth + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '车辆类型', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.vehicleType + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '行驶证车辆类型', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.vehicleTypeWithDrivingLicense + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '车辆轴距', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.vehicleWheelbase + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '等级评定日期', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.ratingDate + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '技术评定等级', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.technicalEvaluationGrade + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '下次等级评定日期', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.nextRatingDate + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '创建日期', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.creationDate + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, + { + title: '操作', + dataIndex: 'creatTime', + valueType: 'dateTimeRange', + hideInSearch: true, + width: 120, + fixed: 'right', + render: (dom, record) => { + return
+ + } + }, + { + key: "direction", + hideInTable: true, + dataIndex: "direction", + order: 6, + renderFormItem: (item, { type, defaultRender, ...rest }, form, record) => { + return ( +
+ { deldata(record.id) }}> - -
- - } - }, - { - key: "direction", - hideInTable: true, - dataIndex: "direction", - order: 6, - renderFormItem: (item, { type, defaultRender, ...rest }, form, record) => { - return ( -
- -
- - - ); - }, - }, - ], tab3: [ - { - title: '业户名称', - dataIndex: 'placeName', - fixed: 'left', - width: 120, - options: 1, - backgroundColor: "#ffffff", - fieldProps: { - onChange: (value, cs) => { - setSitename(value.currentTarget.value) - }, - placeholder: '请输入业户称进行搜索', - getPopupContainer: (triggerNode) => triggerNode.parentNode, - }, - render: (dom, record) => { - return record.nameOfBusinessOwner - }, - }, { - title: '品名', - search: false, - dataIndex: 'containers', - - fixed: 'left', - width: 120, - render: (dom, record) => { - return record.productName - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, - { - title: '车籍地', - search: false, - dataIndex: 'containers', - - fixed: 'left', - width: 120, - render: (dom, record) => { - return record.vehicleRegistry - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, - { - title: '车牌号', - search: false, - dataIndex: 'time2', - valueType: 'dateRange', - // align: 'right', - width: 120, - render: (dom, record) => { - return record.licensePlateNumber - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, - { - title: '燃料类型', - search: false, - dataIndex: 'time3', - valueType: 'dateRange', - - - - width: 120, - render: (dom, record) => { - return record.fuelType - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '住址', - search: false, - dataIndex: 'time4', - valueType: 'dateRange', - - - width: 120, - render: (dom, record) => { - return record.address - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '经济性质', - search: false, - dataIndex: 'time5', - valueType: 'dateRange', - - - width: 120, - render: (dom, record) => { - return record.economicNature - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '核定载客位数', - search: false, - dataIndex: 'time6', - valueType: 'dateRange', - - - width: 120, - render: (dom, record) => { - return record.approvedPassengerCapacity - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '核定载质量', - search: false, - dataIndex: 'time7', - valueType: 'dateRange', - - - width: 120, - render: (dom, record) => { - return record.approvedLoadMass - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '车辆车轴数', - search: false, - dataIndex: 'time8', - valueType: 'dateRange', - - - width: 120, - render: (dom, record) => { - return record.numberOfVehicleAxles - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '车辆厂牌', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.vehicleBrand - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '经营范围', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.natureOfBusiness - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '车辆营运状态', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.vehicleOperationStatus - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '客车类型与等级', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.busTypeAndClass - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '年审结果', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.annualReviewResults - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '本次年审日期', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.dateOfThisAnnualReview - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '下次年审日期', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.dateOfNextAnnualReview - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '注册登记日期', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.dateOfRegistration - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '运力来源', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.sourceOfTransportationCapacity - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '有效期起', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.fromTheExpiryDate - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '有效期止', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.expiryDate - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '发动机排量', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.engineDisplacement - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '发动机号', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.engineNumber - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '车辆发动机功率', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.vehicleEnginePower - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '经营许可证号', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.businessLicenseNo - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '车牌颜色', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.licensePlateColor - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '车辆总质量', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.totalVehicleMass - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '车辆准牵引总质量', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.totalQuasiTractionMassOfVehicle - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '道路运输证号', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.roadTransportCertificateNo - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '车辆车高', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.vehicleHeight - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '车辆车长', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.vehicleConductor - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '车辆车宽', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.vehicleWidth - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '车辆类型', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.vehicleType - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '行驶证车辆类型', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.vehicleTypeWithDrivingLicense - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '车辆轴距', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.vehicleWheelbase - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '等级评定日期', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.ratingDate - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '技术评定等级', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.technicalEvaluationGrade - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '下次等级评定日期', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.nextRatingDate - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '创建日期', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.creationDate - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, - { - title: '操作', - dataIndex: 'creatTime', - valueType: 'dateTimeRange', - hideInSearch: true, - width: 120, - fixed: 'right', - render: (dom, record) => { - return
+
+ + + ); + }, + }, + ], tab3: [ + { + title: '业户名称', + dataIndex: 'placeName', + fixed: 'left', + width: 120, + options: 1, + backgroundColor: "#ffffff", + fieldProps: { + onChange: (value, cs) => { + setSitename(value.currentTarget.value) + }, + placeholder: '请输入业户称进行搜索', + getPopupContainer: (triggerNode) => triggerNode.parentNode, + }, + render: (dom, record) => { + return record.nameOfBusinessOwner + }, + }, { + title: '品名', + search: false, + dataIndex: 'containers', + + fixed: 'left', + width: 120, + render: (dom, record) => { + return record.productName + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, + { + title: '车籍地', + search: false, + dataIndex: 'containers', + + fixed: 'left', + width: 120, + render: (dom, record) => { + return record.vehicleRegistry + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, + { + title: '车牌号', + search: false, + dataIndex: 'time2', + valueType: 'dateRange', + // align: 'right', + width: 120, + render: (dom, record) => { + return record.licensePlateNumber + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, + { + title: '燃料类型', + search: false, + dataIndex: 'time3', + valueType: 'dateRange', + + + + width: 120, + render: (dom, record) => { + return record.fuelType + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '住址', + search: false, + dataIndex: 'time4', + valueType: 'dateRange', + + + width: 120, + render: (dom, record) => { + return record.address + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '经济性质', + search: false, + dataIndex: 'time5', + valueType: 'dateRange', + + + width: 120, + render: (dom, record) => { + return record.economicNature + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '核定载客位数', + search: false, + dataIndex: 'time6', + valueType: 'dateRange', + + + width: 120, + render: (dom, record) => { + return record.approvedPassengerCapacity + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '核定载质量', + search: false, + dataIndex: 'time7', + valueType: 'dateRange', + + + width: 120, + render: (dom, record) => { + return record.approvedLoadMass + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '车辆车轴数', + search: false, + dataIndex: 'time8', + valueType: 'dateRange', + + + width: 120, + render: (dom, record) => { + return record.numberOfVehicleAxles + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '车辆厂牌', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.vehicleBrand + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '经营范围', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.natureOfBusiness + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '车辆营运状态', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.vehicleOperationStatus + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '客车类型与等级', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.busTypeAndClass + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '年审结果', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.annualReviewResults + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '本次年审日期', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.dateOfThisAnnualReview + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '下次年审日期', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.dateOfNextAnnualReview + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '注册登记日期', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.dateOfRegistration + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '运力来源', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.sourceOfTransportationCapacity + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '有效期起', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.fromTheExpiryDate + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '有效期止', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.expiryDate + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '发动机排量', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.engineDisplacement + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '发动机号', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.engineNumber + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '车辆发动机功率', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.vehicleEnginePower + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '经营许可证号', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.businessLicenseNo + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '车牌颜色', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.licensePlateColor + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '车辆总质量', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.totalVehicleMass + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '车辆准牵引总质量', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.totalQuasiTractionMassOfVehicle + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '道路运输证号', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.roadTransportCertificateNo + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '车辆车高', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.vehicleHeight + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '车辆车长', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.vehicleConductor + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '车辆车宽', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.vehicleWidth + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '车辆类型', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.vehicleType + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '行驶证车辆类型', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.vehicleTypeWithDrivingLicense + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '车辆轴距', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.vehicleWheelbase + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '等级评定日期', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.ratingDate + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '技术评定等级', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.technicalEvaluationGrade + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '下次等级评定日期', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.nextRatingDate + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '创建日期', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.creationDate + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, + { + title: '操作', + dataIndex: 'creatTime', + valueType: 'dateTimeRange', + hideInSearch: true, + width: 120, + fixed: 'right', + render: (dom, record) => { + return
+ + } + }, + { + key: "direction", + hideInTable: true, + dataIndex: "direction", + order: 6, + renderFormItem: (item, { type, defaultRender, ...rest }, form, record) => { + return ( +
+ { deldata(record.id) }}> - -
- - } - }, - { - key: "direction", - hideInTable: true, - dataIndex: "direction", - order: 6, - renderFormItem: (item, { type, defaultRender, ...rest }, form, record) => { - return ( -
- -
- - - ); - }, - }, - ], tab4: [ - { - title: '业户名称', - dataIndex: 'placeName', - fixed: 'left', - width: 120, - options: 1, - backgroundColor: "#ffffff", - fieldProps: { - onChange: (value, cs) => { - setSitename(value.currentTarget.value) - }, - placeholder: '请输入业户称进行搜索', - getPopupContainer: (triggerNode) => triggerNode.parentNode, - }, - render: (dom, record) => { - return record.nameOfBusinessOwner - }, - }, - { - title: '品名', - search: false, - dataIndex: 'containers', - - fixed: 'left', - width: 120, - render: (dom, record) => { - return record.productName - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, - { - title: '信用社会代码', - search: false, - dataIndex: 'time2', - valueType: 'dateRange', - // align: 'right', - width: 120, - render: (dom, record) => { - return record.creditSocialCode - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, - { - title: '行政区划', - search: false, - dataIndex: 'time3', - valueType: 'dateRange', - - - - width: 120, - render: (dom, record) => { - return record.administrativeDivision - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '经济性质', - search: false, - dataIndex: 'time4', - valueType: 'dateRange', - - - width: 120, - render: (dom, record) => { - return record.economicNature - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '地址', - search: false, - dataIndex: 'time5', - valueType: 'dateRange', - - - width: 120, - render: (dom, record) => { - return record.address - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '联系电话', - search: false, - dataIndex: 'time6', - valueType: 'dateRange', - - - width: 120, - render: (dom, record) => { - return record.contactNumber - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '电子邮箱', - search: false, - dataIndex: 'time7', - valueType: 'dateRange', - - - width: 120, - render: (dom, record) => { - return record.email - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '法定代表人', - search: false, - dataIndex: 'time8', - valueType: 'dateRange', - - - width: 120, - render: (dom, record) => { - return record.legalRepresentative - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '法人证件类型', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.typeOfLegalPersonCertificate - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '运输性质', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.natureOfTransportation - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '法人证件号码', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.legalPersonCertificateNumber - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '法定代表人电话', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.telephoneNumberOfLegalRepresentative - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '经营业户负责人姓名', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.nameOfThePersonInChargeOfTheBusiness - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '经营业户负责人电话号码', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.telephoneNumberOfThePersonInChargeOfTheBusiness - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '经办人', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.handledBy - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '经办人电话', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.phoneNumberOfHandler - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '经营范围', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 440, - - render: (dom, record) => { - return record.natureOfBusiness - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '经营状态', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.businessStatus - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '经营许可证号', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.businessLicenseNo - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '有效期起', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.fromTheExpiryDate - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '有效期止', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.expiryDate - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '发证机构', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.issuingAuthority - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '核发日期', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.dateOfIssuance - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '证照类别', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.licenseCategory - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '证照发放类型', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.licenseIssuanceType - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '共有车辆数', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.numberOfSharedVehicles - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, { - title: '创建日期', - search: false, - dataIndex: 'time9', - valueType: 'dateRange', - - - width: 140, - - render: (dom, record) => { - return record.creationDate - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, - { - title: '操作', - dataIndex: 'creatTime', - valueType: 'dateTimeRange', - hideInSearch: true, - width: 120, - fixed: 'right', - render: (dom, record) => { - return
+
+ + + ); + }, + }, + ], tab4: [ + { + title: '业户名称', + dataIndex: 'placeName', + fixed: 'left', + width: 120, + options: 1, + backgroundColor: "#ffffff", + fieldProps: { + onChange: (value, cs) => { + setSitename(value.currentTarget.value) + }, + placeholder: '请输入业户称进行搜索', + getPopupContainer: (triggerNode) => triggerNode.parentNode, + }, + render: (dom, record) => { + return record.nameOfBusinessOwner + }, + }, + { + title: '品名', + search: false, + dataIndex: 'containers', + + fixed: 'left', + width: 120, + render: (dom, record) => { + return record.productName + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, + { + title: '信用社会代码', + search: false, + dataIndex: 'time2', + valueType: 'dateRange', + // align: 'right', + width: 120, + render: (dom, record) => { + return record.creditSocialCode + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, + { + title: '行政区划', + search: false, + dataIndex: 'time3', + valueType: 'dateRange', + + + + width: 120, + render: (dom, record) => { + return record.administrativeDivision + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '经济性质', + search: false, + dataIndex: 'time4', + valueType: 'dateRange', + + + width: 120, + render: (dom, record) => { + return record.economicNature + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '地址', + search: false, + dataIndex: 'time5', + valueType: 'dateRange', + + + width: 120, + render: (dom, record) => { + return record.address + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '联系电话', + search: false, + dataIndex: 'time6', + valueType: 'dateRange', + + + width: 120, + render: (dom, record) => { + return record.contactNumber + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '电子邮箱', + search: false, + dataIndex: 'time7', + valueType: 'dateRange', + + + width: 120, + render: (dom, record) => { + return record.email + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '法定代表人', + search: false, + dataIndex: 'time8', + valueType: 'dateRange', + + + width: 120, + render: (dom, record) => { + return record.legalRepresentative + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '法人证件类型', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.typeOfLegalPersonCertificate + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '运输性质', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.natureOfTransportation + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '法人证件号码', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.legalPersonCertificateNumber + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '法定代表人电话', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.telephoneNumberOfLegalRepresentative + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '经营业户负责人姓名', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.nameOfThePersonInChargeOfTheBusiness + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '经营业户负责人电话号码', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.telephoneNumberOfThePersonInChargeOfTheBusiness + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '经办人', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.handledBy + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '经办人电话', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.phoneNumberOfHandler + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '经营范围', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 440, + + render: (dom, record) => { + return record.natureOfBusiness + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '经营状态', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.businessStatus + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '经营许可证号', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.businessLicenseNo + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '有效期起', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.fromTheExpiryDate + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '有效期止', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.expiryDate + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '发证机构', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.issuingAuthority + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '核发日期', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.dateOfIssuance + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '证照类别', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.licenseCategory + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '证照发放类型', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.licenseIssuanceType + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '共有车辆数', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.numberOfSharedVehicles + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, { + title: '创建日期', + search: false, + dataIndex: 'time9', + valueType: 'dateRange', + + + width: 140, + + render: (dom, record) => { + return record.creationDate + }, + fieldProps: { + getPopupContainer: (triggerNode) => triggerNode.parentNode, + } + }, + { + title: '操作', + dataIndex: 'creatTime', + valueType: 'dateTimeRange', + hideInSearch: true, + width: 120, + fixed: 'right', + render: (dom, record) => { + return
+ + } + }, + { + key: "direction", + hideInTable: true, + dataIndex: "direction", + order: 6, + renderFormItem: (item, { type, defaultRender, ...rest }, form, record) => { + return ( +
+ { deldatas(record.id) }}> - -
- - } - }, - { - key: "direction", - hideInTable: true, - dataIndex: "direction", - order: 6, - renderFormItem: (item, { type, defaultRender, ...rest }, form, record) => { - return ( -
- -
- - - ); - }, - }, - ] - } - return ( - -
- setActiveKey(key), - items: [ - { - key: 'tab1', - label: { - setRewkeys('keyun') - }}>客运{activeKey === 'tab1'}, - }, - { - key: 'tab2', - label: { - { - setRewkeys('chuzu') - } - }}>出租车{activeKey === 'tab2'}, - - }, - { - key: 'tab3', - label: { - { - setRewkeys('weihuo') - } - }}>危险货运{activeKey === 'tab3'}, - - }, { - key: 'tab4', - label: { - setRewkeys('yehu') - }}>业户{activeKey === 'tab4'}, - - }, - ], + > + 导入 + +
+ + + ); + }, + }, + ] + } + return ( + +
+ setActiveKey(key), + items: [ + { + key: 'tab1', + label: { + setRewkeys('keyun') + }}>客运{activeKey === 'tab1'}, + }, + { + key: 'tab2', + label: { + { + setRewkeys('chuzu') + } + }}>出租车{activeKey === 'tab2'}, + }, - }} - scroll={{ x: 800 }} - options={false} - ref={c => { finishedProductTable = c; }} - style={{ width: "100% ", overflow: "auto", height: '760px' }} - rowKey='id' - rowSelection={{ - selectedRowKeys: rowSelected, - onChange: (selectedRowKeys) => { - setRowSelected(selectedRowKeys); + { + key: 'tab3', + label: { + { + setRewkeys('weihuo') + } + }}>危险货运{activeKey === 'tab3'}, + + }, { + key: 'tab4', + label: { + setRewkeys('yehu') + }}>业户{activeKey === 'tab4'}, + }, - }} - onReset={(v) => { - setSitename('') - }} - columns={columns[activeKey]} - - dataSource={counts || []} - request={async (params, sort, filter) => { - if (rewkeys == 'keyun') { - const query = {} - setRowSelected([]); - const res = await dispatch(getOperaTional(query)); - setCounts(res.payload.data) - return { - ...res, - total: res.payload.data ? res.payload.data.count : 0 - } - } - if (rewkeys == 'chuzu') { - const query = { - type: '出租车', - nameOfBusinessOwner: sitename - } - setRowSelected([]); - const res = await dispatch(getSpecificVehicle(query)); - setCounts(res.payload.data) - return { - ...res, - total: res.payload.data ? res.payload.data.count : 0 - } - } - if (rewkeys == 'weihuo') { - const query = { - type: '危货', - nameOfBusinessOwner: sitename - } - setRowSelected([]); - const res = await dispatch(getSpecificVehicle(query)); - setCounts(res.payload.data) - return { - ...res, - total: res.payload.data ? res.payload.data.count : 0 - } - } - if (rewkeys == 'yehu') { - const query = { - nameOfBusinessOwner: sitename - } - setRowSelected([]); - const res = await dispatch(getHouseholds(query)); - setCounts(res.payload.data) - return { - ...res, - total: res.payload.data ? res.payload.data.count : 0 - } - } - }} - search={{ - defaultCollapsed: false, - optionRender: (searchConfig, formProps, dom) => [ - ...dom.reverse(), - ['tab2', 'tab3', 'tab4'].includes(activeKey) ? { props.exports(rowSelected, counts) }}> - - : null - - ], - }} - - > -
- {modalVisible ? : ''} - {modalVisibleyilan ? : ''} -
- ) + ], + }, + }} + scroll={{ x: 800 }} + options={false} + ref={c => { finishedProductTable = c; }} + style={{ width: "100% ", overflow: "auto", height: '760px' }} + rowKey='key' + rowSelection={{ + selectedRowKeys: rowSelected, + onChange: (selectedRowKeys) => { + setRowSelected(selectedRowKeys); + }, + }} + onReset={(v) => { + setSitename('') + }} + columns={columns[activeKey]} + + dataSource={counts || []} + request={async (params, sort, filter) => { + if (rewkeys == 'keyun') { + const query = {} + setRowSelected([]); + const res = await dispatch(getOperaTional(query)); + setCounts(res.payload.data) + return { + ...res, + total: res.payload.data ? res.payload.data.count : 0 + } + } + if (rewkeys == 'chuzu') { + const query = { + type: '出租车', + nameOfBusinessOwner: sitename + } + setRowSelected([]); + const res = await dispatch(getSpecificVehicle(query)); + setCounts(res.payload.data) + return { + ...res, + total: res.payload.data ? res.payload.data.count : 0 + } + } + if (rewkeys == 'weihuo') { + const query = { + type: '危货', + nameOfBusinessOwner: sitename + } + setRowSelected([]); + const res = await dispatch(getSpecificVehicle(query)); + setCounts(res.payload.data) + return { + ...res, + total: res.payload.data ? res.payload.data.count : 0 + } + } + if (rewkeys == 'yehu') { + const query = { + nameOfBusinessOwner: sitename + } + setRowSelected([]); + const res = await dispatch(getHouseholds(query)); + setCounts(res.payload.data) + return { + ...res, + total: res.payload.data ? res.payload.data.count : 0 + } + } + }} + search={{ + defaultCollapsed: false, + optionRender: (searchConfig, formProps, dom) => [ + ...dom.reverse(), + ['tab2', 'tab3', 'tab4'].includes(activeKey) ? { props.exports(rowSelected, counts) }}> + + : null + + ], + }} + + > + + {modalVisible ? : ''} + {modalVisibleyilan ? : ''} +
+ ) } const date = { - "nameOfBusinessOwner": "业户名称", - "productName": "品名", - "vehicleRegistry": "车籍地", - "licensePlateNumber": "车牌号", - "fuelType": "燃料类型", - "address": "住址", - "economicNature": "经济性质", - "approvedPassengerCapacity": "核定载客位数", - "approvedLoadMass": "核定载质量", - "numberOfVehicleAxles": "车辆车轴数", - "vehicleBrand": "车辆厂牌", - "natureOfBusiness": "经营范围", - "vehicleOperationStatus": "车辆营运状态", - "busTypeAndClass": "客车类型与等级", - "annualReviewResults": "年审结果", - "dateOfThisAnnualReview": "本次年审日期", - "dateOfNextAnnualReview": "下次年审日期", - "dateOfRegistration": "注册登记日期", - "sourceOfTransportationCapacity": "运力来源", - "fromTheExpiryDate": "有效期起", - "expiryDate": "有效期止", - "engineDisplacement": "发动机排量", - "engineNumber": "发动机号", - "vehicleEnginePower": "车辆发动机功率", - "businessLicenseNo": "经营许可证号", - "licensePlateColor": "车牌颜色", - "totalVehicleMass": "车辆总质量", - "totalQuasiTractionMassOfVehicle": "车辆准牵引总质量", - "roadTransportCertificateNo": "道路运输证号", - "vehicleHeight": "车辆车高", - "vehicleConductor": "车辆车长", - "vehicleWidth": "车辆车宽", - "vehicleType": "车辆类型", - "vehicleTypeWithDrivingLicense": "行驶证车辆类型", - "vehicleWheelbase": "车辆轴距", - "ratingDate": "等级评定日期", - "technicalEvaluationGrade": "技术评定等级", - "nextRatingDate": "下次等级评定日期", - "creationDate": "创建日期" + "nameOfBusinessOwner": "业户名称", + "productName": "品名", + "vehicleRegistry": "车籍地", + "licensePlateNumber": "车牌号", + "fuelType": "燃料类型", + "address": "住址", + "economicNature": "经济性质", + "approvedPassengerCapacity": "核定载客位数", + "approvedLoadMass": "核定载质量", + "numberOfVehicleAxles": "车辆车轴数", + "vehicleBrand": "车辆厂牌", + "natureOfBusiness": "经营范围", + "vehicleOperationStatus": "车辆营运状态", + "busTypeAndClass": "客车类型与等级", + "annualReviewResults": "年审结果", + "dateOfThisAnnualReview": "本次年审日期", + "dateOfNextAnnualReview": "下次年审日期", + "dateOfRegistration": "注册登记日期", + "sourceOfTransportationCapacity": "运力来源", + "fromTheExpiryDate": "有效期起", + "expiryDate": "有效期止", + "engineDisplacement": "发动机排量", + "engineNumber": "发动机号", + "vehicleEnginePower": "车辆发动机功率", + "businessLicenseNo": "经营许可证号", + "licensePlateColor": "车牌颜色", + "totalVehicleMass": "车辆总质量", + "totalQuasiTractionMassOfVehicle": "车辆准牵引总质量", + "roadTransportCertificateNo": "道路运输证号", + "vehicleHeight": "车辆车高", + "vehicleConductor": "车辆车长", + "vehicleWidth": "车辆车宽", + "vehicleType": "车辆类型", + "vehicleTypeWithDrivingLicense": "行驶证车辆类型", + "vehicleWheelbase": "车辆轴距", + "ratingDate": "等级评定日期", + "technicalEvaluationGrade": "技术评定等级", + "nextRatingDate": "下次等级评定日期", + "creationDate": "创建日期" } const data = { - "nameOfBusinessOwner": "业户名称", - "productName": "品名", - "creditSocialCode": "信用社会代码", - "administrativeDivision": "行政区划", - "economicNature": "经济性质", - "address": "地址", - "contactNumber": "联系电话", - "email": "电子邮箱", - "legalRepresentative": "法定代表人", - "typeOfLegalPersonCertificate": "法人证件类型", - "natureOfTransportation": "运输性质", - "legalPersonCertificateNumber": "法人证件号码", - "telephoneNumberOfLegalRepresentative": "法定代表人电话", - "nameOfThePersonInChargeOfTheBusiness": "经营业户负责人姓名", - "telephoneNumberOfThePersonInChargeOfTheBusiness": "经营业户负责人电话号码", - "handledBy": "经办人", - "phoneNumberOfHandler": "经办人电话", - "natureOfBusiness": "经营范围", - "businessStatus": "经营状态", - "businessLicenseNo": "经营许可证号", - "fromTheExpiryDate": "有效期起", - "expiryDate": "有效期止", - "issuingAuthority": "发证机构", - "dateOfIssuance": "核发日期", - "licenseCategory": "证照类别", - "licenseIssuanceType": "证照发放类型", - "numberOfSharedVehicles": "共有车辆数", - "creationDate": "创建日期", - 'type': '类型' + "nameOfBusinessOwner": "业户名称", + "productName": "品名", + "creditSocialCode": "信用社会代码", + "administrativeDivision": "行政区划", + "economicNature": "经济性质", + "address": "地址", + "contactNumber": "联系电话", + "email": "电子邮箱", + "legalRepresentative": "法定代表人", + "typeOfLegalPersonCertificate": "法人证件类型", + "natureOfTransportation": "运输性质", + "legalPersonCertificateNumber": "法人证件号码", + "telephoneNumberOfLegalRepresentative": "法定代表人电话", + "nameOfThePersonInChargeOfTheBusiness": "经营业户负责人姓名", + "telephoneNumberOfThePersonInChargeOfTheBusiness": "经营业户负责人电话号码", + "handledBy": "经办人", + "phoneNumberOfHandler": "经办人电话", + "natureOfBusiness": "经营范围", + "businessStatus": "经营状态", + "businessLicenseNo": "经营许可证号", + "fromTheExpiryDate": "有效期起", + "expiryDate": "有效期止", + "issuingAuthority": "发证机构", + "dateOfIssuance": "核发日期", + "licenseCategory": "证照类别", + "licenseIssuanceType": "证照发放类型", + "numberOfSharedVehicles": "共有车辆数", + "creationDate": "创建日期", + 'type': '类型' } -function mapStateToProps(state) { - const { auth, depMessage } = state; - const pakData = (dep) => { - return dep.map((d) => { - return { - title: d.name, - value: d.id, - // children: d.type >= 2 ? [] : pakData(d.subordinate) - children: pakData(d.subordinate) - } - }) - } - let depData = pakData(depMessage.data || []) - return { - user: auth.user, - depMessage: depMessage.data || [], - depLoading: depMessage.isRequesting, - depData, - }; +function mapStateToProps (state) { + const { auth, depMessage } = state; + const pakData = (dep) => { + return dep.map((d) => { + return { + title: d.name, + value: d.id, + // children: d.type >= 2 ? [] : pakData(d.subordinate) + children: pakData(d.subordinate) + } + }) + } + let depData = pakData(depMessage.data || []) + return { + user: auth.user, + depMessage: depMessage.data || [], + depLoading: depMessage.isRequesting, + depData, + }; } export default connect(mapStateToProps)(OperaTionalTable); \ No newline at end of file diff --git a/web/client/src/sections/fillion/components/promotionalTable.js b/web/client/src/sections/fillion/components/promotionalTable.js index 3b8a42b9..17b4740f 100644 --- a/web/client/src/sections/fillion/components/promotionalTable.js +++ b/web/client/src/sections/fillion/components/promotionalTable.js @@ -1,169 +1,201 @@ -import React, { useEffect, useState } from 'react'; +import React, { useEffect, useState, useRef } from 'react'; import { connect } from 'react-redux'; -import { Spin, Button, Popconfirm, Badge } from 'antd'; +import { Spin, Button, Popconfirm, Switch } from 'antd'; import ProTable from '@ant-design/pro-table'; import './protable.less' -import moment from 'moment'; -import { getReportStatistic } from "../actions/infor" +import VideoUpload from './infor/videoUpload'; +import { getPropagata } from '../actions/infor'; +import { putEditPropagata } from '../actions/infor'; +import { delPropagata } from '../actions/infor'; + const promotionalTable = (props) => { - const { dispatch, user, depData, depMessage, depLoading } = props - const [rowSelected, setRowSelected] = useState([]) - const [regionId, setRegionId] = useState()//区域id - const [placeType, setPlaceType] = useState()//场所 - const [day, setDay] = useState([moment('2022-03-01').format('YYYY-MM-DD'), moment().format('YYYY-MM-DD')])//日期 - const [sitename, setSitename] = useState()//场所名称 - const [counts, setCounts] = useState()//shuju - - - const columns = - [{ - title: '序号', - search: false, - dataIndex: 'containers', - - fixed: 'left', - width: 120, - render: (dom, record) => { - return record.address - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, + const { dispatch, } = props + const [rowSelected, setRowSelected] = useState([]) + const [counts, setCounts] = useState()//shuju + const [success, setSuccess] = useState() + const [delet, setDelet] = useState() + // console.log(record); + + + const ref = useRef() + useEffect(() => { ref.current.reload() }, [delet]) + + + const onClickEnable = (record) => { + console.log(record); + const id = record.id + const name = record.name + const video = record.video + + const enable = true ? record.enable == false : true + const data = ({ publicityId: id, name: name, video: video, enable: enable }) + console.log(data); + dispatch(putEditPropagata(data)).then((res) => { + setSuccess(res.success) + console.log(data); + }) + } + // const ref = useRef() + // useEffect(() => { ref.current.reload() }, [modalVisible, modalVisibleyilan, whichofits, delet])//刷新数据 + + + + const columns = + [{ + title: '序号', + search: false, + dataIndex: 'containers', + fixed: 'left', + width: 120, + render: (dom, record) => { + for (let i = 0; i < record.lenght; i += 1) { + return i } - }, - { - title: '视频名称', - dataIndex: 'placeName', - fixed: 'left', - width: 120, - options: 1, - backgroundColor: "#ffffff", - fieldProps: { - onChange: (value, cs) => { - setSitename(value.currentTarget.value) - }, - placeholder: '请输入视频名称进行搜索', - getPopupContainer: (triggerNode) => triggerNode.parentNode, - }, - }, - - { - title: '修改时间', - search: false, - dataIndex: 'time2', - valueType: 'dateRange', - // align: 'right', - width: 120, - render: (dom, record) => { - return record.address - }, - fieldProps: { - getPopupContainer: (triggerNode) => triggerNode.parentNode, - } - }, - { - key: "direction", - hideInTable: true, - dataIndex: "direction", - order: 6, - renderFormItem: (item, { type, defaultRender, ...rest }, form) => { - return ( -
-
- - - ); - }, - }, - ] - return ( - -
- { finishedProductTable = c; }} - style={{ width: "100% ", overflow: "auto", height: '760px' }} - rowKey='id' - onReset={(v) => { - const { id } = depMessage[0] - console.log(id) - setRegionId(id) - setPlaceType(-1) - setDay([moment('2022-03-01').format('YYYY-MM-DD'), moment().format('YYYY-MM-DD')]) - setSitename('') - }} - rowSelection={{ - selectedRowKeys: rowSelected, - onChange: (selectedRowKeys) => { - setRowSelected(selectedRowKeys); - }, - }} - columns={columns} - - dataSource={(counts || {}).rows || []} - request={async (params) => { + } + }, + { + title: '视频名称', + dataIndex: 'videoName', + fixed: 'left', + search: false, + width: 120, + options: 1, + render: (dom, record) => { + // console.log('record',record) + return record.name + } + }, + { + title: '是否展示', + dataIndex: 'shuffling', + valueType: 'shufflingRange', + search: false, + width: 120, + fixed: 'right', + render: (dom, record) => { + return
+ + onClickEnable(record)} defaultChecked={true ? record.enable == true : false} />
+ } + }, + { + title: '操作', + dataIndex: 'creatTime', + valueType: 'dateTimeRange', + hideInSearch: true, + width: 120, + fixed: 'right', + render: (dom, record) => { + return
+ + handleRemove(record) */ + () => { const query = { - // startDate: day[0], - // endDate: day[1], - // placeType: placeType, - // regionId: regionId, - // placeName: sitename, - // limit: params.pageSize, - // offset: ((params.current ? params.current : 1) - 1) * params.pageSize + publicityId: record.id } - setRowSelected([]); - const res = await dispatch(getReportStatistic(query)); - setCounts(res.payload.data) - return { - ...res, - total: res.payload.data ? res.payload.data.count : 0 - } - }} - // search={{ - // defaultCollapsed: false, - // optionRender: (searchConfig, formProps, dom) => [ - // ...dom.reverse(), - // { props.exports(rowSelected, counts) }}> - // - // - // ], - // }} - - > -
- - - ) + dispatch(delPropagata(query)).then((res) => { + setDelet(res) + console.log(res); + // if (res.success) { + // message.success("记录删除成功"); + // handelRefresh() + // } else { + // message.error("记录删除失败") + // } + }) + } + } + + > + + +
+ + } + }, + { + key: "direction", + hideInTable: true, + dataIndex: "direction", + order: 6, + renderFormItem: (item, { type, defaultRender, ...rest }, form, record) => { + return ( +
+ +
+ ); + }, + }, + ] + + //获取数据 + useEffect(() => { + const vedio = dispatch(getPropagata()).then((res) => { + setCounts(res.payload.data) + console.log(res.payload.data) + }) + }, []) + + + return ( + + +
+ { + setRowSelected(selectedRowKeys); + }, + }} + form={{ + submitter: false, + }} + columns={columns} + dataSource={counts || []} + request={async (params) => { + const query = { + limit: params.pageSize, + offset: ((params.current ? params.current : 1) - 1) * params.pageSize + } + setRowSelected([]); + }} + > +
+
+ ) } -function mapStateToProps(state) { - const { auth, depMessage } = state; - const pakData = (dep) => { - return dep.map((d) => { - return { - title: d.name, - value: d.id, - // children: d.type >= 2 ? [] : pakData(d.subordinate) - children: pakData(d.subordinate) - } - }) - } - let depData = pakData(depMessage.data || []) - return { - user: auth.user, - depMessage: depMessage.data || [], - depLoading: depMessage.isRequesting, - depData, - }; + +function mapStateToProps (state) { + + const { auth, depMessage } = state; + const pakData = (dep) => { + return dep.map((d) => { + return { + title: d.name, + value: d.id, + // children: d.type >= 2 ? [] : pakData(d.subordinate) + children: pakData(d.subordinate) + } + }) + } + let depData = pakData(depMessage.data || []) + return { + user: auth.user, + depMessage: depMessage.data || [], + depLoading: depMessage.isRequesting, + depData, + }; } export default connect(mapStateToProps)(promotionalTable); \ No newline at end of file diff --git a/web/client/src/sections/quanju/containers/footer/build/index.js b/web/client/src/sections/quanju/containers/footer/build/index.js index aab783e0..34020c7d 100644 --- a/web/client/src/sections/quanju/containers/footer/build/index.js +++ b/web/client/src/sections/quanju/containers/footer/build/index.js @@ -120,9 +120,7 @@ const Build = (props) => { -
- - {buildingnumber&&buildingnumber.buildedRoad!==0&&totalgongli!==0?
+ {buildingnumber&&buildingnumber.buildedRoad!==0&&totalgongli!==0?
{/* */} @@ -141,7 +139,6 @@ const Build = (props) => {
{buildingnumber?.buildedRoad || 0}
:} -
`${values.name}${datas.processed}条`, + formatter: (values) => ` ${values.name}${datas.processed}个`, }, title: { text: `${(datas.processed*100/datas.total).toFixed(2)}%`, diff --git a/web/client/src/utils/webapi.js b/web/client/src/utils/webapi.js index 037c8bc5..32701a99 100644 --- a/web/client/src/utils/webapi.js +++ b/web/client/src/utils/webapi.js @@ -3,112 +3,267 @@ import { ProxyRequest } from "@peace/utils"; export const GodTransRequest = new ProxyRequest("_godTrans"); export const ApiTable = { - login: 'login', - logout: 'logout', - - getEnterprisesMembers: 'enterprises/{enterpriseId}/members', - - //组织管理-用户管理-部门 - getDepMessage: 'department', - createDepMessage: 'department', - updateDepMessage: 'department', - delDepMessage: 'department/{depId}', - //组织管理-用户管理-用户 - getDepUser: 'department/{depId}/user', - createUser: 'department/user', - updateUser: 'department/user/{userId}', - delUser: 'department/user/{userIds}', - - resetPwd: 'department/user/{userId}/password', - - - //用户权限 - getResource: 'resource', - getUserResource: 'user/resource', - postUserRes: 'user/resource', - - //报表配置 - allAreas: 'allAreas', - addReportConfig: 'report/config', - getReportConfig: 'report/config', - editReportConfig: 'report/{reportId}/config', - delReportConfig: 'report/{reportId}/config', - - // 报表编辑 - getReportRectify: 'report/rectify', - getReportRectifyDetail: 'report/rectify/detail', - compileReportRectifyDetail: 'report/rectify/detail', - getReportList: 'report/list', - getReportDetail: 'report/{reportId}/detail', - getUsers: 'user', - - - //运政管理 - getOperaTional: 'vehicle', putOperaTional: 'vehicle', - getSpecificVehicle: 'vehicle/specific', putSpecificVehicle: 'vehicle/specific', delSpecificVehicle: 'vehicle/{vehicleId}/specific', - getHouseholds: 'vehicle/business', putHouseholds: 'vehicle/business', delHouseholds: 'vehicle/business/{businessId}', - getRoadway: 'road', - // 获取运政统计 - getYunZheng: "transportation/statistic", - //桥梁管理 - getBridge: 'bridge', - putBridge: 'bridge', - delBridge: 'bridge/{bridgeId}', - //工程数据 - getProject: 'project', - putProject: 'project', - delProject: 'project/{projectId}', - //道路数据 - getRoadway: 'road', - putRoadway: 'road', - delRoadway: 'road/{roadId}', - //道路统计 - getBgroadstatistics: "build/road_state", - - //治超监测点处理数据 - getzhichaomanager: 'manage/overspeed/processed', - - //获取治超详情数据 - getzhichaodetail: '/manage/overspeed', - // 获取道路养护统计及列表 - getroadmaintain: "conserve/statistic", - // 获取治超详情列 - getzhichaoList: "manage/overspeed", - - //大屏运营 —— 公交车辆层级信息 - getBusTier: '/operation/car_level', - - //获取路政列表 - getHighways: 'road_manage', putHighways: 'road_manage', - - //获取道路养护统计及列表 - getRoadMaintenance: 'conserve/statistic', - - //获取宣传数据 - getpropagata: 'publicity', - // <<<<<<< HEAD - // //公交信息 - // getCircuit: 'bus/line', putCircuit: 'bus/line', delCircuit: 'bus/line/{lineId}', - // getVehicle: 'bus/car', putVehicle: 'bus/car', delVehicle: 'bus/car/{carId}', - // ======= - //公交信息 - getCircuit: 'bus/line', putCircuit: 'bus/line', delCircuit: 'bus/line/{lineId}', - getVehicle: 'bus/car', putVehicle: 'bus/car', delVehicle: 'bus/car/{carId}', - - - // 获取道路拥堵指数 - getgodshuju: "data/god_trans", - - //治超管理 - getPurchase: 'overspeed', - putPurchase: 'overspeed', - delPurchase: 'overspeed/{overspeedId}', - // >>>>>>> a3fe9bee43370f1e5ceb69dcdef1b9b7cbf9c84c + login: 'login', + logout: 'logout', + + getEnterprisesMembers: 'enterprises/{enterpriseId}/members', + + //组织管理-用户管理-部门 + getDepMessage: 'department', + createDepMessage: 'department', + updateDepMessage: 'department', + delDepMessage: 'department/{depId}', + //组织管理-用户管理-用户 + getDepUser: 'department/{depId}/user', + createUser: 'department/user', + updateUser: 'department/user/{userId}', + delUser: 'department/user/{userIds}', + + resetPwd: 'department/user/{userId}/password', + + + //用户权限 + getResource: 'resource', + getUserResource: 'user/resource', + postUserRes: 'user/resource', + + //报表配置 + allAreas: 'allAreas', + addReportConfig: 'report/config', + getReportConfig: 'report/config', + editReportConfig: 'report/{reportId}/config', + delReportConfig: 'report/{reportId}/config', + + // 报表编辑 + getReportRectify: 'report/rectify', + getReportRectifyDetail: 'report/rectify/detail', + compileReportRectifyDetail: 'report/rectify/detail', + getReportList: 'report/list', + getReportDetail: 'report/{reportId}/detail', + getUsers: 'user', + + + //运政管理 + getOperaTional: 'vehicle', putOperaTional: 'vehicle', + getSpecificVehicle: 'vehicle/specific', putSpecificVehicle: 'vehicle/specific', delSpecificVehicle: 'vehicle/{vehicleId}/specific', + getHouseholds: 'vehicle/business', putHouseholds: 'vehicle/business', delHouseholds: 'vehicle/business/{businessId}', + getRoadway: 'road', + // 获取运政统计 + getYunZheng: "transportation/statistic", + //桥梁管理 + getBridge: 'bridge', + putBridge: 'bridge', + delBridge: 'bridge/{bridgeId}', + //工程数据 + getProject: 'project', + putProject: 'project', + delProject: 'project/{projectId}', + //道路数据 + getRoadway: 'road', + putRoadway: 'road', + delRoadway: 'road/{roadId}', + //道路统计 + getBgroadstatistics: "build/road_state", + + //治超监测点处理数据 + getzhichaomanager: 'manage/overspeed/processed', + + //获取治超详情数据 + getzhichaodetail: '/manage/overspeed', + // 获取道路养护统计及列表 + getroadmaintain: "conserve/statistic", + // 获取治超详情列 + getzhichaoList: "manage/overspeed", + + //大屏运营 —— 公交车辆层级信息 + getBusTier: '/operation/car_level', + + //获取路政列表 + getHighways: 'road_manage', putHighways: 'road_manage', + + //获取道路养护统计及列表 + getRoadMaintenance: 'conserve/statistic', + + //获取宣传数据 + getpropagata: 'publicity',putpropagata:'publicity',delpropagata:'/publicity/{publicityId}', + + //公交信息 + getCircuit: 'bus/line', putCircuit: 'bus/line', delCircuit: 'bus/line/{lineId}', + getVehicle: 'bus/car', putVehicle: 'bus/car', delVehicle: 'bus/car/{carId}', + + + + + //治超管理 + getPurchase: 'overspeed', + putPurchase: 'overspeed', + delPurchase: 'overspeed/{overspeedId}', + login: 'login', + logout: 'logout', + + getEnterprisesMembers: 'enterprises/{enterpriseId}/members', + + //组织管理-用户管理-部门 + getDepMessage: 'department', + createDepMessage: 'department', + updateDepMessage: 'department', + delDepMessage: 'department/{depId}', + //组织管理-用户管理-用户 + getDepUser: 'department/{depId}/user', + createUser: 'department/user', + updateUser: 'department/user/{userId}', + delUser: 'department/user/{userIds}', + + resetPwd: 'department/user/{userId}/password', + + + //用户权限 + getResource: 'resource', + getUserResource: 'user/resource', + postUserRes: 'user/resource', + + //报表配置 + allAreas: 'allAreas', + addReportConfig: 'report/config', + getReportConfig: 'report/config', + editReportConfig: 'report/{reportId}/config', + delReportConfig: 'report/{reportId}/config', + + // 报表编辑 + getReportRectify: 'report/rectify', + getReportRectifyDetail: 'report/rectify/detail', + compileReportRectifyDetail: 'report/rectify/detail', + getReportList: 'report/list', + getReportDetail: 'report/{reportId}/detail', + getUsers: 'user', + + + //运政管理 + getOperaTional: 'vehicle', putOperaTional: 'vehicle', + getSpecificVehicle: 'vehicle/specific', putSpecificVehicle: 'vehicle/specific', delSpecificVehicle: 'vehicle/{vehicleId}/specific', + getHouseholds: 'vehicle/business', putHouseholds: 'vehicle/business', delHouseholds: 'vehicle/business/{businessId}', + getRoadway: 'road', + // 获取运政统计 + getYunZheng: "transportation/statistic", + //桥梁管理 + getBridge: 'bridge', + putBridge: 'bridge', + delBridge: 'bridge/{bridgeId}', + //工程数据 + getProject: 'project', + putProject: 'project', + delProject: 'project/{projectId}', + //道路数据 + getRoadway: 'road', + putRoadway: 'road', + delRoadway: 'road/{roadId}', + //道路统计 + getBgroadstatistics: "build/road_state", + + //治超监测点处理数据 + getzhichaomanager: 'manage/overspeed/processed', + + //获取治超详情数据 + getzhichaodetail: '/manage/overspeed', + // 获取道路养护统计及列表 + getroadmaintain: "conserve/statistic", + // 获取治超详情列 + getzhichaoList: "manage/overspeed", + + //大屏运营 —— 公交车辆层级信息 + getBusTier: '/operation/car_level', + + //获取路政列表 + getHighways: 'road_manage', putHighways: 'road_manage', + + //获取道路养护统计及列表 + getRoadMaintenance: 'conserve/statistic', + + //获取宣传数据 + getpropagata: 'publicity', + login: 'login', + logout: 'logout', + + getEnterprisesMembers: 'enterprises/{enterpriseId}/members', + + //组织管理-用户管理-部门 + getDepMessage: 'department', + createDepMessage: 'department', + updateDepMessage: 'department', + delDepMessage: 'department/{depId}', + //组织管理-用户管理-用户 + getDepUser: 'department/{depId}/user', + createUser: 'department/user', + updateUser: 'department/user/{userId}', + delUser: 'department/user/{userIds}', + + resetPwd: 'department/user/{userId}/password', + + + //用户权限 + getResource: 'resource', + getUserResource: 'user/resource', + postUserRes: 'user/resource', + + //报表配置 + allAreas: 'allAreas', + addReportConfig: 'report/config', + getReportConfig: 'report/config', + editReportConfig: 'report/{reportId}/config', + delReportConfig: 'report/{reportId}/config', + + // 报表编辑 + getReportRectify: 'report/rectify', + getReportRectifyDetail: 'report/rectify/detail', + compileReportRectifyDetail: 'report/rectify/detail', + getReportList: 'report/list', + getReportDetail: 'report/{reportId}/detail', + getUsers: 'user', + + + //运政管理 + getOperaTional: 'vehicle', + getSpecificVehicle: 'vehicle/specific', + getHouseholds: 'vehicle/business', + getRoadway: 'road', + //桥梁管理 + getBridge: 'bridge', + putBridge: 'bridge', + //工程数据 + getProject: 'project', + putProject: 'project', + + //道路统计 + getBgroadstatistics: "build/road_state", + + //治超监测点处理数据 + getzhichaomanager: 'manage/overspeed/processed', + + //获取治超详情数据 + getzhichaodetail: '/manage/overspeed', + + //大屏运营 —— 公交车辆层级信息 + getBusTier: '/operation/car_level', + + //获取路政列表 + getHighways: 'road_manage', + + //获取道路养护统计及列表 + getRoadMaintenance: 'conserve/statistic', + + //获取宣传数据 + getpropagata: 'publicity', + + //编辑/新增宣传数据 + putpropagata: 'publicity', + //公交信息 + getCircuit: 'bus/line', putCircuit: 'bus/line', delCircuit: 'bus/line/{lineId}', + getVehicle: 'bus/car', putVehicle: 'bus/car', delVehicle: 'bus/car/{carId}', }; export const RouteTable = { - apiRoot: '/api/root', - fileUpload: '/_upload/new', - cleanUpUploadTrash: '/_upload/cleanup', + apiRoot: '/api/root', + fileUpload: '/_upload/new', + cleanUpUploadTrash: '/_upload/cleanup', }; \ No newline at end of file diff --git a/web/log/development.txt b/web/log/development.txt index a4666e68..d5400a45 100644 --- a/web/log/development.txt +++ b/web/log/development.txt @@ -3483,15 +3483,37 @@ 2022-07-20 19:15:56.118 - info: [Router] Inject api: attachment/index <<<<<<< Updated upstream >>>>>>> 65cf2722eec21e1d07ce958f4298eec7ae620c85 +<<<<<<< Updated upstream +======= +<<<<<<< Updated upstream +>>>>>>> Stashed changes <<<<<<< HEAD 2022-07-25 16:13:26.719 - debug: [FS-LOGGER] Init. 2022-07-25 16:26:39.904 - error: [FS-ERRHD] ======= +<<<<<<< Updated upstream +======= +======= +<<<<<<< Updated upstream +>>>>>>> Stashed changes +>>>>>>> Stashed changes ======= 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] +<<<<<<< Updated upstream +>>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 +======= +<<<<<<< Updated upstream >>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 +======= +======= +2022-07-25 15:13:42.256 - debug: [FS-LOGGER] Init. +2022-07-25 15:13:42.320 - info: [Router] Inject api: attachment/index +2022-07-25 15:38:44.180 - error: [FS-ERRHD] +>>>>>>> Stashed changes +>>>>>>> Stashed changes +>>>>>>> Stashed changes { message: 'Error: socket hang up', name: 'RequestError', @@ -3499,11 +3521,27 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream +<<<<<<< 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 +======= +<<<<<<< Updated upstream <<<<<<< 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 +======= +<<<<<<< Updated upstream + url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=5daa3b44-d8d1-4902-a92d-1a4895094480&level=%E6%9D%91', +======= + url: 'https://3024-117-90-36-177.jp.ngrok.io/bridge?token=98d387e9-72b0-40aa-aa19-d59fc939b5ff', +>>>>>>> Stashed changes +>>>>>>> Stashed changes +>>>>>>> Stashed changes headers: { host: '3024-117-90-36-177.jp.ngrok.io', connection: 'keep-alive', @@ -3528,12 +3566,25 @@ 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', +<<<<<<< Updated upstream +======= +<<<<<<< Updated upstream +>>>>>>> Stashed changes <<<<<<< HEAD referer: 'http://localhost:5000/quanju', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' ======= +<<<<<<< Updated upstream +======= +======= +<<<<<<< Updated upstream +>>>>>>> Stashed changes +>>>>>>> Stashed changes referer: 'http://localhost:5000/fillion/transportation', +======= + referer: 'http://localhost:5000/fillion/bridge', +>>>>>>> Stashed changes 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9' >>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 @@ -3550,6 +3601,10 @@ }, response: undefined, stack: 'RequestError: Error: socket hang up\n' + +<<<<<<< Updated upstream +======= +<<<<<<< Updated upstream +>>>>>>> Stashed changes <<<<<<< 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' + @@ -3565,20 +3620,47 @@ } 2022-07-25 16:26:58.908 - error: [FS-ERRHD] ======= +<<<<<<< Updated upstream +======= +======= +<<<<<<< Updated upstream +>>>>>>> Stashed changes +>>>>>>> Stashed changes ' 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 new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at 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)' } +<<<<<<< Updated upstream 2022-07-25 10:26:07.826 - error: [FS-ERRHD] +<<<<<<< Updated upstream +>>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 +======= +<<<<<<< Updated upstream >>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 +======= +======= +2022-07-25 17:02:36.573 - debug: [FS-LOGGER] Init. +2022-07-25 17:04:02.936 - debug: [FS-LOGGER] Init. +2022-07-25 17:37:34.307 - error: [FS-ERRHD] +>>>>>>> Stashed changes +>>>>>>> Stashed changes +>>>>>>> Stashed changes { message: 'Error: socket hang up', name: 'RequestError', @@ -3586,15 +3668,35 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream +<<<<<<< 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 +======= +<<<<<<< Updated upstream <<<<<<< 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 +======= +<<<<<<< Updated upstream + url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=5daa3b44-d8d1-4902-a92d-1a4895094480&level=%E5%8E%BF', +======= + url: 'https://3024-117-90-36-177.jp.ngrok.io/department?token=9fd08492-433d-4ddf-ad83-bfd864e63bfc', +>>>>>>> Stashed changes +>>>>>>> Stashed changes +>>>>>>> Stashed changes 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"', +<<<<<<< Updated upstream +======= +<<<<<<< Updated upstream +>>>>>>> Stashed changes <<<<<<< 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', @@ -3604,23 +3706,58 @@ 'sec-ch-ua-platform': '"Windows"', expires: '-1', ======= +<<<<<<< Updated upstream +======= +======= +<<<<<<< Updated upstream +>>>>>>> Stashed changes +>>>>>>> Stashed changes 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"', +<<<<<<< Updated upstream >>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 +======= +<<<<<<< Updated upstream +>>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 +======= +======= + 'sec-ch-ua-mobile': '?0', + 'user-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: '9fd08492-433d-4ddf-ad83-bfd864e63bfc', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes +>>>>>>> Stashed changes +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', +<<<<<<< Updated upstream +======= +<<<<<<< Updated upstream +>>>>>>> Stashed changes <<<<<<< HEAD referer: 'http://localhost:5000/quanju', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' ======= +<<<<<<< Updated upstream +======= +======= +<<<<<<< Updated upstream +>>>>>>> Stashed changes +>>>>>>> Stashed changes referer: 'http://localhost:5000/fillion/transportation', +======= + referer: 'http://localhost:5000/fillion/promotional', +>>>>>>> Stashed changes 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9' >>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 @@ -3637,6 +3774,10 @@ }, response: undefined, stack: 'RequestError: Error: socket hang up\n' + +<<<<<<< Updated upstream +======= +<<<<<<< Updated upstream +>>>>>>> Stashed changes <<<<<<< 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' + @@ -3652,19 +3793,37 @@ } 2022-07-25 17:10:33.214 - error: [FS-ERRHD] ======= +<<<<<<< Updated upstream +======= +======= +<<<<<<< Updated upstream +>>>>>>> Stashed changes +>>>>>>> Stashed changes ' 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 new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at 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)' } +<<<<<<< Updated upstream 2022-07-25 11:28:13.352 - error: [FS-ERRHD] +======= +2022-07-25 19:22:34.962 - error: [FS-ERRHD] +>>>>>>> Stashed changes { message: 'Error: socket hang up', name: 'RequestError', @@ -3672,22 +3831,40 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=df45f1e7-883c-4a06-85aa-cf985043c25f&level=%E5%8E%BF', +======= + url: 'https://3024-117-90-36-177.jp.ngrok.io/department?token=9fd08492-433d-4ddf-ad83-bfd864e63bfc', +>>>>>>> Stashed changes 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"', +<<<<<<< Updated upstream 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"', +======= + 'sec-ch-ua-mobile': '?0', + 'user-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: '9fd08492-433d-4ddf-ad83-bfd864e63bfc', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', +<<<<<<< Updated upstream referer: 'http://localhost:5000/fillion/transportation', +======= + referer: 'http://localhost:5000/fillion/promotional', +>>>>>>> Stashed changes 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9' }, @@ -3703,19 +3880,32 @@ }, response: undefined, stack: 'RequestError: Error: socket hang up\n' + +<<<<<<< Updated upstream ' 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 new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at 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)' } +<<<<<<< Updated upstream 2022-07-25 15:46:29.372 - error: [FS-ERRHD] +======= +2022-07-26 14:17:21.455 - error: [FS-ERRHD] +>>>>>>> Stashed changes { message: 'Error: socket hang up', name: 'RequestError', @@ -3723,6 +3913,7 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream 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', @@ -3742,13 +3933,37 @@ 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/fillion/transportation', +======= + url: 'https://3024-117-90-36-177.jp.ngrok.io/publicity?token=f5dae5cd-d101-43ba-89bd-3289a3ce5870', + 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: 'f5dae5cd-d101-43ba-89bd-3289a3ce5870', + 'sec-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/promotional', +>>>>>>> Stashed changes 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, +<<<<<<< Updated upstream 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}', +======= + method: 'GET', + body: '[object Object]', +>>>>>>> Stashed changes simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -3757,19 +3972,32 @@ }, response: undefined, stack: 'RequestError: Error: socket hang up\n' + +<<<<<<< Updated upstream ' 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 new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at 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)' } +<<<<<<< Updated upstream 2022-07-25 15:52:40.728 - error: [FS-ERRHD] +======= +2022-07-26 14:17:27.274 - error: [FS-ERRHD] +>>>>>>> Stashed changes { message: 'Error: socket hang up', name: 'RequestError', @@ -3777,22 +4005,40 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=df45f1e7-883c-4a06-85aa-cf985043c25f&level=%E5%8E%BF', +======= + url: 'https://3024-117-90-36-177.jp.ngrok.io/department?token=f5dae5cd-d101-43ba-89bd-3289a3ce5870', +>>>>>>> Stashed changes 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"', +<<<<<<< Updated upstream 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"', +======= + 'sec-ch-ua-mobile': '?0', + 'user-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: 'f5dae5cd-d101-43ba-89bd-3289a3ce5870', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', +<<<<<<< Updated upstream referer: 'http://localhost:5000/fillion/transportation', +======= + referer: 'http://localhost:5000/fillion/promotional', +>>>>>>> Stashed changes 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9' }, @@ -3808,19 +4054,32 @@ }, response: undefined, stack: 'RequestError: Error: socket hang up\n' + +<<<<<<< Updated upstream ' 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 new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at 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)' } +<<<<<<< Updated upstream 2022-07-25 16:01:11.229 - error: [FS-ERRHD] +======= +2022-07-26 14:28:18.208 - error: [FS-ERRHD] +>>>>>>> Stashed changes { message: 'Error: socket hang up', name: 'RequestError', @@ -3828,6 +4087,7 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream 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', @@ -3847,13 +4107,37 @@ 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/fillion/transportation', +======= + url: 'https://3024-117-90-36-177.jp.ngrok.io/publicity?token=f5dae5cd-d101-43ba-89bd-3289a3ce5870', + 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: 'f5dae5cd-d101-43ba-89bd-3289a3ce5870', + 'sec-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/promotional', +>>>>>>> Stashed changes 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, +<<<<<<< Updated upstream 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}', +======= + method: 'GET', + body: '[object Object]', +>>>>>>> Stashed changes simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -3862,19 +4146,32 @@ }, response: undefined, stack: 'RequestError: Error: socket hang up\n' + +<<<<<<< Updated upstream ' 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 new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at 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)' } +<<<<<<< Updated upstream 2022-07-25 16:11:10.293 - error: [FS-ERRHD] +======= +2022-07-26 14:41:20.032 - error: [FS-ERRHD] +>>>>>>> Stashed changes { message: 'Error: socket hang up', name: 'RequestError', @@ -3882,22 +4179,40 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, +<<<<<<< Updated upstream url: 'https://3024-117-90-36-177.jp.ngrok.io/department?token=df45f1e7-883c-4a06-85aa-cf985043c25f', +======= + url: 'https://3024-117-90-36-177.jp.ngrok.io/department?token=f5dae5cd-d101-43ba-89bd-3289a3ce5870', +>>>>>>> Stashed changes 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"', +<<<<<<< Updated upstream 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"', +======= + 'sec-ch-ua-mobile': '?0', + 'user-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: 'f5dae5cd-d101-43ba-89bd-3289a3ce5870', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', +<<<<<<< Updated upstream referer: 'http://localhost:5000/fillion/transportation', +======= + referer: 'http://localhost:5000/fillion/promotional', +>>>>>>> Stashed changes 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9' }, @@ -3913,6 +4228,7 @@ }, response: undefined, stack: 'RequestError: Error: socket hang up\n' + +<<<<<<< Updated upstream ' 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' + @@ -19962,12 +20278,23 @@ }, response: undefined, stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + +======= +<<<<<<< Updated upstream +>>>>>>> Stashed changes ' 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 new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + ' at Socket.emit (events.js:314:20)\n' + @@ -19975,36 +20302,54 @@ ' 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] +<<<<<<< Updated upstream +======= +<<<<<<< Updated upstream +2022-07-25 16:14:44.623 - error: [FS-ERRHD] +======= +2022-07-26 15:14:20.784 - error: [FS-ERRHD] +>>>>>>> Stashed changes { - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', + message: 'Error: socket hang up', name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, + cause: { code: 'ECONNRESET' }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/vehicle/business?token=3de82f98-253d-4ebd-a444-eff69920459b', +<<<<<<< Updated upstream + url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=df45f1e7-883c-4a06-85aa-cf985043c25f&level=%E5%8E%BF', +======= + url: 'https://3024-117-90-36-177.jp.ngrok.io/department?token=f5dae5cd-d101-43ba-89bd-3289a3ce5870', +>>>>>>> Stashed changes headers: { - host: '10.8.30.7:14000', + 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"', +<<<<<<< Updated upstream 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"', +======= + 'sec-ch-ua-mobile': '?0', + 'user-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: 'f5dae5cd-d101-43ba-89bd-3289a3ce5870', + 'sec-ch-ua-platform': '"Windows"', + expires: '-1', +>>>>>>> Stashed changes accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/operational', +<<<<<<< Updated upstream + referer: 'http://localhost:5000/fillion/transportation', +======= + referer: 'http://localhost:5000/fillion/promotional', +>>>>>>> Stashed changes 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9' }, @@ -20019,57 +20364,93 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + + stack: 'RequestError: Error: socket hang up\n' + +<<<<<<< Updated upstream ' 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 new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\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-26 08:33:11.486 - error: [FS-ERRHD] +<<<<<<< Updated upstream +2022-07-25 16:20:37.830 - error: [FS-ERRHD] +======= +2022-07-26 15:50:24.375 - debug: [FS-LOGGER] Init. +2022-07-26 16:01:57.214 - debug: [FS-LOGGER] Init. +2022-07-26 16:04:55.264 - error: [FS-ERRHD] +>>>>>>> Stashed changes { - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', + message: 'Error: socket hang up', name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, + cause: { code: 'ECONNRESET' }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/department?token=3de82f98-253d-4ebd-a444-eff69920459b', +<<<<<<< Updated upstream + url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=df45f1e7-883c-4a06-85aa-cf985043c25f', headers: { - host: '10.8.30.7:14000', + 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', +======= + url: 'https://3024-117-90-36-177.jp.ngrok.io/publicity?token=f5dae5cd-d101-43ba-89bd-3289a3ce5870', + 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: 'f5dae5cd-d101-43ba-89bd-3289a3ce5870', 'sec-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', + referer: 'http://localhost:5000/fillion/promotional', +>>>>>>> Stashed changes 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9' }, encoding: null, followRedirect: true, +<<<<<<< Updated upstream + 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}', +======= method: 'GET', body: '[object Object]', +>>>>>>> Stashed changes simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -20077,57 +20458,105 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + + stack: 'RequestError: Error: socket hang up\n' + +<<<<<<< Updated upstream ' 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 new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\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-26 08:33:11.816 - error: [FS-ERRHD] +<<<<<<< Updated upstream +2022-07-25 17:13:48.396 - error: [FS-ERRHD] +<<<<<<< Updated upstream +>>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 +======= +======= +2022-07-26 16:06:51.862 - error: [FS-ERRHD] +>>>>>>> Stashed changes +>>>>>>> Stashed changes { - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', + message: 'Error: socket hang up', name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, + cause: { code: 'ECONNRESET' }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/vehicle?token=3de82f98-253d-4ebd-a444-eff69920459b', +<<<<<<< Updated upstream + url: 'https://3024-117-90-36-177.jp.ngrok.io/login', headers: { - host: '10.8.30.7:14000', + 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"', - expires: '-1', + 'sec-ch-ua-mobile': '?0', + 'user-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', +======= + url: 'https://3024-117-90-36-177.jp.ngrok.io/department?token=f5dae5cd-d101-43ba-89bd-3289a3ce5870', + 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: 'f5dae5cd-d101-43ba-89bd-3289a3ce5870', 'sec-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', + referer: 'http://localhost:5000/fillion/promotional', +>>>>>>> Stashed changes '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, +<<<<<<< Updated upstream + method: 'POST', + body: '{"username":"SuperAdmin","password":"123456","p":"456"}', +======= method: 'GET', body: '[object Object]', +>>>>>>> Stashed changes simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -20135,21 +20564,59 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + + stack: 'RequestError: Error: socket hang up\n' + +<<<<<<< Updated upstream +<<<<<<< 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 +======= +======= +<<<<<<< Updated upstream +>>>>>>> Stashed changes ' 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 new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + +>>>>>>> Stashed changes ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\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-26 08:33:57.281 - error: [FS-ERRHD] +<<<<<<< Updated upstream +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', @@ -20159,28 +20626,31 @@ syscall: 'connect', address: '10.8.30.7', port: 14000 +>>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', +<<<<<<< HEAD + url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', headers: { - host: '10.8.30.7:14000', + 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', + 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + 'sec-ch-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', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 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/fillion/transportation', + referer: 'http://localhost:5000/quanju', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -20193,20 +20663,16046 @@ 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)' -} + 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)' +} +>>>>>>> Stashed changes +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', @@ -20221,7 +36717,65 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/department?token=3de82f98-253d-4ebd-a444-eff69920459b', + 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', @@ -20265,7 +36819,19 @@ ' 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] +>>>>>>> Stashed changes +<<<<<<< Updated upstream +>>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 +======= +<<<<<<< Updated upstream +======= +<<<<<<< HEAD +======= +>>>>>>> Stashed changes +======= +>>>>>>> Stashed changes +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', @@ -20279,17 +36845,372 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', + 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', @@ -20323,12 +37244,7 @@ ' 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] +2022-07-26 14:19:12.817 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -20358,7 +37274,7 @@ 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/operational', + referer: 'http://localhost:5000/fillion/transportation', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9' }, @@ -20387,7 +37303,7 @@ ' 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] +2022-07-26 14:19:13.254 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -20401,7 +37317,7 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/vehicle?token=3de82f98-253d-4ebd-a444-eff69920459b', + 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', @@ -20417,7 +37333,7 @@ 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/operational', + referer: 'http://localhost:5000/fillion/transportation', 'accept-encoding': 'gzip, deflate, br', 'accept-language': 'zh-CN,zh;q=0.9' }, @@ -20446,39 +37362,150 @@ ' 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] +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. +<<<<<<< Updated upstream +======= +>>>>>>> 8c961ddab5af3f0c4990e9be53f5da76d10fc848 +>>>>>>> Stashed changes +>>>>>>> Stashed changes +<<<<<<< Updated upstream +2022-07-27 17:24:17.967 - debug: [FS-LOGGER] Init. +2022-07-27 22:47:22.449 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', + message: 'Error: read ECONNRESET', name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, + cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, 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', + 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", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows 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: '3de82f98-253d-4ebd-a444-eff69920459b', + 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/fillion/operational', + referer: 'http://localhost:5000/quanju', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -20491,35 +37518,29 @@ 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' + + 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-26 14:17:12.386 - error: [FS-ERRHD] +2022-07-27 22:47:22.453 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', + message: 'Error: read ECONNRESET', name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, + cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/bridge?token=3de82f98-253d-4ebd-a444-eff69920459b', + 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', @@ -20528,16 +37549,16 @@ 'user-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', + 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/fillion/bridge', + referer: 'http://localhost:5000/quanju', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -20550,53 +37571,47 @@ 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' + + 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-26 14:17:33.973 - error: [FS-ERRHD] +2022-07-27 22:47:22.455 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', + message: 'Error: read ECONNRESET', name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, + cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/department?token=3de82f98-253d-4ebd-a444-eff69920459b', + 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", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows 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: '3de82f98-253d-4ebd-a444-eff69920459b', + 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/fillion/bridge', + referer: 'http://localhost:5000/quanju', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -20609,35 +37624,29 @@ 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' + + 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-26 14:17:34.427 - error: [FS-ERRHD] +2022-07-27 22:47:22.456 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', + message: 'Error: read ECONNRESET', name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, + cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/bridge?token=3de82f98-253d-4ebd-a444-eff69920459b', + 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', @@ -20646,16 +37655,16 @@ 'user-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', + 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/fillion/bridge', + referer: 'http://localhost:5000/quanju', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -20668,53 +37677,47 @@ 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' + + 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-26 14:17:37.083 - error: [FS-ERRHD] +2022-07-27 22:47:22.458 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', + message: 'Error: read ECONNRESET', name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, + cause: { errno: -4077, 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', + 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", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows 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: '3de82f98-253d-4ebd-a444-eff69920459b', + 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/fillion/transportation', + referer: 'http://localhost:5000/quanju', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -20727,26 +37730,26 @@ 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' + + 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-26 14:19:12.817 - error: [FS-ERRHD] +2022-07-27 22:47:43.524 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', cause: { - errno: 'ETIMEDOUT', + errno: -4039, code: 'ETIMEDOUT', syscall: 'connect', address: '10.8.30.7', @@ -20755,25 +37758,25 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/department?token=3de82f98-253d-4ebd-a444-eff69920459b', + 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", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows 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: '3de82f98-253d-4ebd-a444-eff69920459b', + 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/fillion/transportation', + referer: 'http://localhost:5000/quanju', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -20787,25 +37790,25 @@ }, 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 new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:315:20)\n' + + ' 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-26 14:19:13.254 - error: [FS-ERRHD] +2022-07-27 22:47:43.525 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', cause: { - errno: 'ETIMEDOUT', + errno: -4039, code: 'ETIMEDOUT', syscall: 'connect', address: '10.8.30.7', @@ -20814,7 +37817,7 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', + 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', @@ -20823,16 +37826,16 @@ 'user-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', + 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/fillion/transportation', + referer: 'http://localhost:5000/quanju', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -20846,28 +37849,34 @@ }, 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 new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:315:20)\n' + + ' 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-26 16:47:41.611 - error: [FS-ERRHD] +2022-07-27 22:47:43.526 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', - cause: { errno: 'ECONNRESET', code: 'ECONNRESET', syscall: 'read' }, + 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/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', + 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', @@ -20876,16 +37885,16 @@ 'user-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', + 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/fillion/transportation', + referer: 'http://localhost:5000/quanju', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -20898,55 +37907,58 @@ 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' + + 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-26 16:47:41.616 - error: [FS-ERRHD] +2022-07-27 22:47:43.527 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', - cause: { errno: 'ECONNRESET', code: 'ECONNRESET', syscall: 'read' }, + 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/road?token=3de82f98-253d-4ebd-a444-eff69920459b', + 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', - 'content-length': '83', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-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', + 'user-agent': 'Mozilla/5.0 (Windows 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: '3de82f98-253d-4ebd-a444-eff69920459b', + token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', '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', + referer: 'http://localhost:5000/quanju', 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, - method: 'PUT', - body: '{"routeName":"1","routeCode":"1111","sectionNo":"4444","level":"县","roadId":3275}', + method: 'GET', + body: '[object Object]', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -20954,32 +37966,35 @@ 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' + + 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 11:00:11.991 - debug: [FS-LOGGER] Init. ->>>>>>> Stashed changes -2022-07-27 17:24:17.967 - debug: [FS-LOGGER] Init. -2022-07-27 22:47:22.449 - error: [FS-ERRHD] +2022-07-28 08:32:58.890 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + 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', + 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', @@ -21010,7 +38025,7 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + + 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' + @@ -21024,24 +38039,30 @@ ' 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] +2022-07-28 08:32:58.905 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + 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', + 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", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows 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: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', @@ -21050,7 +38071,7 @@ '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' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -21063,7 +38084,7 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + + 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' + @@ -21077,15 +38098,21 @@ ' 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] +2022-07-28 08:32:58.906 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + 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', + 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', @@ -21116,7 +38143,7 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + + 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' + @@ -21130,24 +38157,30 @@ ' 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] +2022-07-28 08:32:58.908 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + 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', + 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", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows 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: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', @@ -21156,7 +38189,7 @@ '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' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -21169,7 +38202,7 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + + 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' + @@ -21183,15 +38216,21 @@ ' 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] +2022-07-28 08:32:58.910 - error: [FS-ERRHD] { - message: 'Error: read ECONNRESET', + message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + 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', + 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', @@ -21222,7 +38261,7 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + + 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' + @@ -21236,7 +38275,7 @@ ' 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] +2022-07-28 08:32:58.911 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -21250,7 +38289,7 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', + 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', @@ -21295,7 +38334,7 @@ ' 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] +2022-07-28 08:33:19.939 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -21309,16 +38348,16 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + 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", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows 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: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', @@ -21327,7 +38366,7 @@ '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' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -21354,7 +38393,7 @@ ' 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] +2022-07-28 08:33:19.956 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -21368,16 +38407,16 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + 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", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows 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: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', + token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', @@ -21386,7 +38425,7 @@ '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' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -21413,7 +38452,7 @@ ' 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] +2022-07-28 08:33:32.652 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -21427,23 +38466,22 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', + 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"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + expires: '-1', '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-mobile': '?0', + 'user-agent': 'Mozilla/5.0 (Windows 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"', - expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + 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' }, @@ -21472,7 +38510,7 @@ ' 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] +2022-07-28 08:33:44.815 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -21486,30 +38524,32 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', + 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', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', '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/quanju', + 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: 'GET', - body: '[object Object]', + method: 'POST', + body: '{"username":"SuperAdmin","password":"123456","p":"456"}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -21531,7 +38571,7 @@ ' 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] +2022-07-28 08:35:54.958 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -21545,30 +38585,32 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', + 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', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', '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/quanju', + 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: 'GET', - body: '[object Object]', + method: 'POST', + body: '{"username":"SuperAdmin","password":"123456","p":"456"}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -21590,7 +38632,7 @@ ' 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] +2022-07-28 08:37:50.933 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -21604,16 +38646,16 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', + 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", "Microsoft Edge";v="103", "Chromium";v="103"', + '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.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-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: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', + token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', @@ -21622,7 +38664,7 @@ 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/quanju', 'accept-encoding': 'gzip, deflate, br', - '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,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -21649,7 +38691,7 @@ ' 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] +2022-07-28 08:37:50.950 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -21663,16 +38705,16 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/conserve/statistic?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', + 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", "Microsoft Edge";v="103", "Chromium";v="103"', + '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.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-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: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', + token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', @@ -21681,7 +38723,7 @@ 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/quanju', 'accept-encoding': 'gzip, deflate, br', - '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,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -21708,7 +38750,7 @@ ' 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] +2022-07-28 08:37:50.951 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -21722,16 +38764,16 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', + 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", "Microsoft Edge";v="103", "Chromium";v="103"', + '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.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-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: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', + token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', @@ -21740,7 +38782,7 @@ 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/quanju', 'accept-encoding': 'gzip, deflate, br', - '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,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -21767,7 +38809,7 @@ ' 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] +2022-07-28 08:37:50.952 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -21781,16 +38823,16 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', + 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", "Microsoft Edge";v="103", "Chromium";v="103"', + '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.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-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: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', + token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', @@ -21799,7 +38841,7 @@ 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/quanju', 'accept-encoding': 'gzip, deflate, br', - '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,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -21826,7 +38868,7 @@ ' 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] +2022-07-28 08:37:50.953 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -21840,16 +38882,16 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', + 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", "Microsoft Edge";v="103", "Chromium";v="103"', + '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.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-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: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', + token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', @@ -21858,7 +38900,7 @@ 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/quanju', 'accept-encoding': 'gzip, deflate, br', - '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,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -21885,7 +38927,7 @@ ' 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] +2022-07-28 08:37:50.954 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -21899,16 +38941,16 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', + 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", "Microsoft Edge";v="103", "Chromium";v="103"', + '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.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-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: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', + token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', @@ -21917,7 +38959,7 @@ 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/quanju', 'accept-encoding': 'gzip, deflate, br', - '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,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -21944,7 +38986,7 @@ ' 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] +2022-07-28 08:38:11.981 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -21958,24 +39000,25 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/department', + 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", "Microsoft Edge";v="103", "Chromium";v="103"', - expires: '-1', + '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', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', + 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/', + referer: 'http://localhost:5000/quanju', 'accept-encoding': 'gzip, deflate, br', - '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,ja;q=0.8' }, encoding: null, followRedirect: true, @@ -22002,7 +39045,7 @@ ' 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] +2022-07-28 08:38:11.997 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -22016,32 +39059,30 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/login', + 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', - 'content-length': '55', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + '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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'content-type': 'application/json', + 'user-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: '*/*', - origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', + referer: 'http://localhost:5000/quanju', 'accept-encoding': 'gzip, deflate, br', - '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,ja;q=0.8' }, encoding: null, followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', + method: 'GET', + body: '[object Object]', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -22063,7 +39104,7 @@ ' 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] +2022-07-28 08:38:33.040 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -22077,32 +39118,30 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/login', + 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', - 'content-length': '55', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', + '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.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'content-type': 'application/json', + 'user-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: '*/*', - origin: 'http://localhost:5000', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', + referer: 'http://localhost:5000/quanju', 'accept-encoding': 'gzip, deflate, br', - '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,ja;q=0.8' }, encoding: null, followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', + method: 'GET', + body: '[object Object]', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -22124,7 +39163,7 @@ ' 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] +2022-07-28 08:38:33.041 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -22138,7 +39177,7 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', + 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', @@ -22183,7 +39222,7 @@ ' 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] +2022-07-28 08:43:20.072 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -22197,16 +39236,16 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', + 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", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows 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: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', + token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', @@ -22215,7 +39254,7 @@ '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' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -22242,7 +39281,7 @@ ' 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] +2022-07-28 08:43:20.075 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -22256,16 +39295,16 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', + 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", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows 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: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', + token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', @@ -22274,7 +39313,7 @@ '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' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -22301,7 +39340,7 @@ ' 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] +2022-07-28 08:43:20.077 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -22315,16 +39354,16 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', + 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", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows 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: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', + token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', @@ -22333,7 +39372,7 @@ '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' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -22360,7 +39399,7 @@ ' 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] +2022-07-28 08:43:20.078 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -22374,16 +39413,16 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', + 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", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows 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: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', + token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', @@ -22392,7 +39431,7 @@ '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' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -22419,7 +39458,7 @@ ' 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] +2022-07-28 08:43:20.079 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -22433,16 +39472,16 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/conserve/statistic?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', + 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", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows 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: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', + token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', @@ -22451,7 +39490,7 @@ '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' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -22478,7 +39517,7 @@ ' 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] +2022-07-28 08:43:20.084 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -22492,16 +39531,16 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', + 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", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows 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: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', + token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', @@ -22510,7 +39549,7 @@ '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' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -22537,7 +39576,7 @@ ' 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] +2022-07-28 08:43:41.125 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -22551,16 +39590,16 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', + 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", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows 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: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', + token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', @@ -22569,7 +39608,7 @@ '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' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -22596,7 +39635,7 @@ ' 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] +2022-07-28 08:43:41.127 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -22610,16 +39649,16 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', + 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", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows 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: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', + token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', @@ -22628,7 +39667,7 @@ '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' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -22655,7 +39694,7 @@ ' 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] +2022-07-28 08:44:02.188 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -22669,16 +39708,16 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', + 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", "Google Chrome";v="103", "Chromium";v="103"', + 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', + 'user-agent': 'Mozilla/5.0 (Windows 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: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', + token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', @@ -22687,7 +39726,7 @@ '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' + 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' }, encoding: null, followRedirect: true, @@ -22714,7 +39753,7 @@ ' 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] +2022-07-28 08:44:02.189 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -22728,7 +39767,7 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/conserve/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', + 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', @@ -22773,7 +39812,7 @@ ' 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] +2022-07-28 08:47:14.544 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -22787,7 +39826,7 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', + 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', @@ -22832,7 +39871,7 @@ ' 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] +2022-07-28 08:47:14.548 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -22846,7 +39885,7 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', + 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', @@ -22891,7 +39930,7 @@ ' 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] +2022-07-28 08:47:14.550 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -22950,7 +39989,7 @@ ' 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] +2022-07-28 08:47:14.551 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -23009,7 +40048,7 @@ ' 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] +2022-07-28 08:47:14.556 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -23068,7 +40107,7 @@ ' 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] +2022-07-28 08:47:14.558 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -23082,7 +40121,7 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', + 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', @@ -23127,7 +40166,7 @@ ' 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] +2022-07-28 08:47:35.592 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -23186,7 +40225,7 @@ ' 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] +2022-07-28 08:47:35.595 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -23245,7 +40284,7 @@ ' 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] +2022-07-28 08:47:53.227 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -23259,7 +40298,7 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', + 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', @@ -23304,7 +40343,7 @@ ' 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] +2022-07-28 08:47:53.228 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -23318,7 +40357,7 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/conserve/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', + 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', @@ -23363,7 +40402,7 @@ ' 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] +2022-07-28 08:47:53.230 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -23422,7 +40461,7 @@ ' 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] +2022-07-28 08:47:53.231 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -23436,7 +40475,7 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', + 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', @@ -23481,7 +40520,7 @@ ' 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] +2022-07-28 08:47:53.236 - error: [FS-ERRHD] { message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', name: 'RequestError', @@ -23495,7 +40534,172 @@ error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', + 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', @@ -23526,7 +40730,7 @@ transform2xxOnly: false }, response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + + 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' + @@ -23540,30 +40744,29 @@ ' 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] +======= +2022-07-27 18:08:42.681 - debug: [FS-LOGGER] Init. +>>>>>>> Stashed changes +2022-07-28 10:07:47.322 - debug: [FS-LOGGER] Init. +2022-07-28 10:07:47.633 - info: [Router] Inject api: attachment/index +2022-07-28 10:09:37.852 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', + message: 'Error: read ECONNRESET', name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, + cause: { errno: 'ECONNRESET', code: 'ECONNRESET', syscall: 'read' }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', + url: 'http://10.8.30.7:14000/manage/overspeed?token=a65552ac-21ca-41a7-9e40-e13e91095bdf', 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': '".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.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-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: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', + token: 'a65552ac-21ca-41a7-9e40-e13e91095bdf', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', @@ -23572,7 +40775,7 @@ 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/quanju', 'accept-encoding': 'gzip, deflate, br', - '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' }, encoding: null, followRedirect: true, @@ -23585,44 +40788,38 @@ 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' + + stack: 'RequestError: Error: read ECONNRESET\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' 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-28 08:47:14.558 - error: [FS-ERRHD] +2022-07-28 10:09:37.859 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', + message: 'Error: read ECONNRESET', name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, + cause: { errno: 'ECONNRESET', code: 'ECONNRESET', syscall: 'read' }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', + url: 'http://10.8.30.7:14000/manage/overspeed?token=a65552ac-21ca-41a7-9e40-e13e91095bdf', 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': '".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.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-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: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', + token: 'a65552ac-21ca-41a7-9e40-e13e91095bdf', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', @@ -23631,7 +40828,7 @@ 'sec-fetch-dest': 'empty', referer: 'http://localhost:5000/quanju', 'accept-encoding': 'gzip, deflate, br', - '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' }, encoding: null, followRedirect: true, @@ -23644,53 +40841,49 @@ 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' + + stack: 'RequestError: Error: read ECONNRESET\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' 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-28 08:47:35.592 - error: [FS-ERRHD] +2022-07-28 11:13:45.214 - debug: [FS-LOGGER] Init. +2022-07-28 11:13:46.128 - info: [Router] Inject api: attachment/index +2022-07-28 11:43:04.846 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', + message: 'Error: read ECONNRESET', name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, + cause: { errno: 'ECONNRESET', code: 'ECONNRESET', syscall: 'read' }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', + url: 'http://10.8.30.7:14000/department?token=d01f7dcf-f7bb-472f-beb9-c5151d5e1734', 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': '".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.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-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: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', + token: 'd01f7dcf-f7bb-472f-beb9-c5151d5e1734', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/fillion/promotional', 'accept-encoding': 'gzip, deflate, br', - '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' }, encoding: null, followRedirect: true, @@ -23703,53 +40896,47 @@ 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' + + stack: 'RequestError: Error: read ECONNRESET\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' 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-28 08:47:35.595 - error: [FS-ERRHD] +2022-07-28 11:43:04.854 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', + message: 'Error: read ECONNRESET', name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, + cause: { errno: 'ECONNRESET', 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', + url: 'http://10.8.30.7:14000/publicity?token=d01f7dcf-f7bb-472f-beb9-c5151d5e1734', 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': '".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.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-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: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', + token: 'd01f7dcf-f7bb-472f-beb9-c5151d5e1734', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/fillion/promotional', 'accept-encoding': 'gzip, deflate, br', - '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' }, encoding: null, followRedirect: true, @@ -23762,53 +40949,47 @@ 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' + + stack: 'RequestError: Error: read ECONNRESET\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' 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-28 08:47:53.227 - error: [FS-ERRHD] +2022-07-28 11:51:46.528 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', + message: 'Error: read ECONNRESET', name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, + cause: { errno: 'ECONNRESET', 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', + url: 'http://10.8.30.7:14000/publicity?token=d01f7dcf-f7bb-472f-beb9-c5151d5e1734', 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': '".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.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-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: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', + token: 'd01f7dcf-f7bb-472f-beb9-c5151d5e1734', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/fillion/promotional', 'accept-encoding': 'gzip, deflate, br', - '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' }, encoding: null, followRedirect: true, @@ -23821,53 +41002,47 @@ 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' + + stack: 'RequestError: Error: read ECONNRESET\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' 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-28 08:47:53.228 - error: [FS-ERRHD] +2022-07-28 11:51:46.536 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', + message: 'Error: read ECONNRESET', name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, + cause: { errno: 'ECONNRESET', 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', + url: 'http://10.8.30.7:14000/department?token=d01f7dcf-f7bb-472f-beb9-c5151d5e1734', 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': '".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.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-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: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', + token: 'd01f7dcf-f7bb-472f-beb9-c5151d5e1734', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/fillion/promotional', 'accept-encoding': 'gzip, deflate, br', - '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' }, encoding: null, followRedirect: true, @@ -23880,53 +41055,47 @@ 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' + + stack: 'RequestError: Error: read ECONNRESET\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' 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-28 08:47:53.230 - error: [FS-ERRHD] +2022-07-28 11:51:46.540 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', + message: 'Error: read ECONNRESET', name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, + cause: { errno: 'ECONNRESET', 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', + url: 'http://10.8.30.7:14000/publicity?token=d01f7dcf-f7bb-472f-beb9-c5151d5e1734', 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': '".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.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-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: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', + token: 'd01f7dcf-f7bb-472f-beb9-c5151d5e1734', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/fillion/promotional', 'accept-encoding': 'gzip, deflate, br', - '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' }, encoding: null, followRedirect: true, @@ -23939,53 +41108,47 @@ 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' + + stack: 'RequestError: Error: read ECONNRESET\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' 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-28 08:47:53.231 - error: [FS-ERRHD] +2022-07-28 11:51:46.544 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', + message: 'Error: read ECONNRESET', name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, + cause: { errno: 'ECONNRESET', 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', + url: 'http://10.8.30.7:14000/department?token=d01f7dcf-f7bb-472f-beb9-c5151d5e1734', 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': '".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.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-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: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', + token: 'd01f7dcf-f7bb-472f-beb9-c5151d5e1734', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/fillion/promotional', 'accept-encoding': 'gzip, deflate, br', - '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' }, encoding: null, followRedirect: true, @@ -23998,53 +41161,47 @@ 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' + + stack: 'RequestError: Error: read ECONNRESET\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' 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-28 08:47:53.236 - error: [FS-ERRHD] +2022-07-28 11:51:46.548 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', + message: 'Error: read ECONNRESET', name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, + cause: { errno: 'ECONNRESET', code: 'ECONNRESET', syscall: 'read' }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', + url: 'http://10.8.30.7:14000/department?token=d01f7dcf-f7bb-472f-beb9-c5151d5e1734', 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': '".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.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-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: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', + token: 'd01f7dcf-f7bb-472f-beb9-c5151d5e1734', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/fillion/promotional', 'accept-encoding': 'gzip, deflate, br', - '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' }, encoding: null, followRedirect: true, @@ -24057,58 +41214,55 @@ 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' + + stack: 'RequestError: Error: read ECONNRESET\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' 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-28 08:47:53.238 - error: [FS-ERRHD] +2022-07-28 11:51:46.552 - error: [FS-ERRHD] { - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', + message: 'Error: read ECONNRESET', name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, + cause: { errno: 'ECONNRESET', code: 'ECONNRESET', syscall: 'read' }, error: { '$ref': '$["cause"]' }, options: { jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', + url: 'http://10.8.30.7:14000/publicity?token=d01f7dcf-f7bb-472f-beb9-c5151d5e1734', 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"', + 'content-length': '133', + '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.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-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: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', + token: 'd01f7dcf-f7bb-472f-beb9-c5151d5e1734', '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/quanju', + referer: 'http://localhost:5000/fillion/promotional', 'accept-encoding': 'gzip, deflate, br', - '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' }, encoding: null, followRedirect: true, - method: 'GET', - body: '[object Object]', + method: 'PUT', + body: '{"name":"1","video":["project/0a0ec3f8-0c9a-4a06-9210-d7fd0edad409/220223_104306-多端开发介绍和课程导读接口文档.zip"]}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -24116,47 +41270,47 @@ 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' + + stack: 'RequestError: Error: read ECONNRESET\n' + + ' at new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' 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-28 09:34:57.419 - error: [FS-ERRHD] +2022-07-28 11:51:46.556 - error: [FS-ERRHD] { message: 'Error: read ECONNRESET', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { errno: 'ECONNRESET', 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', + url: 'http://10.8.30.7:14000/publicity?token=d01f7dcf-f7bb-472f-beb9-c5151d5e1734', 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': '".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.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-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: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', + token: 'd01f7dcf-f7bb-472f-beb9-c5151d5e1734', 'sec-ch-ua-platform': '"Windows"', expires: '-1', accept: '*/*', 'sec-fetch-site': 'same-origin', 'sec-fetch-mode': 'cors', 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', + referer: 'http://localhost:5000/fillion/promotional', 'accept-encoding': 'gzip, deflate, br', - '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' }, encoding: null, followRedirect: true, @@ -24170,51 +41324,54 @@ }, 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 new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' 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-28 09:34:57.422 - error: [FS-ERRHD] +2022-07-28 13:34:58.754 - error: [FS-ERRHD] { message: 'Error: read ECONNRESET', name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, + cause: { errno: 'ECONNRESET', 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', + url: 'http://10.8.30.7:14000/publicity?token=d01f7dcf-f7bb-472f-beb9-c5151d5e1734', 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"', + 'content-length': '31', + '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.5060.134 Safari/537.36 Edg/103.0.1264.71', + 'user-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: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', + token: 'd01f7dcf-f7bb-472f-beb9-c5151d5e1734', '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/quanju', + referer: 'http://localhost:5000/fillion/promotional', 'accept-encoding': 'gzip, deflate, br', - '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' }, encoding: null, followRedirect: true, - method: 'GET', - body: '[object Object]', + method: 'PUT', + body: '{"name":"1231","video":["11."]}', simple: false, resolveWithFullResponse: true, callback: [Function: RP$callback], @@ -24223,19 +41380,20 @@ }, 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 new RequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + + ' at Request.plumbing.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + + ' at Request.RP$callback [as _callback] (E:\\code_git\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + + ' at self.callback (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + + ' at Request.emit (events.js:314:20)\n' + + ' at Request.onRequestError (E:\\code_git\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + + ' 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)' } +<<<<<<< Updated upstream 2022-07-28 10:08:50.687 - error: [FS-ERRHD] { message: 'Error: read ECONNRESET', @@ -30704,3 +47862,7 @@ } 2022-07-28 16:51:10.270 - debug: [FS-LOGGER] Init. 2022-07-28 16:51:11.180 - info: [Router] Inject api: attachment/index +======= +2022-07-28 15:08:36.754 - debug: [FS-LOGGER] Init. +2022-07-28 15:08:37.225 - info: [Router] Inject api: attachment/index +>>>>>>> Stashed changes diff --git a/web/routes/attachment/index.js b/web/routes/attachment/index.js index 08b8e007..2ce91d27 100644 --- a/web/routes/attachment/index.js +++ b/web/routes/attachment/index.js @@ -18,7 +18,8 @@ const ext = { module.exports = { entry: function (app, router, opts) { const getApiRoot = async function (ctx) { - const { apiUrl, qndmn } = opts; + const { apiUrl } = opts; + ctx.status = 200; ctx.body = { root: apiUrl, qndmn }; };