diff --git a/api/.vscode/launch.json b/api/.vscode/launch.json index eaa8220c..35dd29e4 100644 --- a/api/.vscode/launch.json +++ b/api/.vscode/launch.json @@ -13,8 +13,8 @@ "NODE_ENV": "development" }, "args": [ - "-p 14000", - "-f http://localhost:14000", + "-p 4000", + "-f http://localhost:4000", "-g postgres://postgres:123@10.8.30.32:5432/highways4good", "--qnak XuDgkao6cL0HidoMAPnA5OB10Mc_Ew08mpIfRJK5", "--qnsk yewcieZLzKZuDfig0wLZ9if9jKp2P_1jd3CMJPSa", diff --git a/api/app/lib/controllers/file/index.js b/api/app/lib/controllers/file/index.js new file mode 100644 index 00000000..8870da3e --- /dev/null +++ b/api/app/lib/controllers/file/index.js @@ -0,0 +1,237 @@ +'use strict'; + +const request = require('superagent'); +const moment = require('moment'); + +async function createProjectDir(ctx, next) { + let error = { message: '新增项目目录失败' }, rs = null; + const { roadName } = ctx.query; + + try { + const models = ctx.fs.dc.models; + + rs = await models.FileRoad.create({ + roadName + }) + error = null; + } catch (err) { + ctx.status = 500; + ctx.body = { detail: err, ...error }; + } + + if (error) { + ctx.status = 400; + ctx.body = { ...error }; + } else { + ctx.status = 200; + ctx.body = { message: '新增项目目录成功!', result: rs }; + } +} + +async function getFileDirs(ctx, next) { + let error = { message: '查询项目目录失败' }, rslt = null; + + try { + const models = ctx.fs.dc.models; + + rslt = await models.FileRoad.findAll({ + // include: [{ + // model: models.FileType + // }] + }) + error = null; + } catch (err) { + ctx.status = 500; + ctx.body = { detail: err, ...error }; + } + + if (error) { + ctx.status = 400; + ctx.body = { ...error }; + } else { + ctx.status = 200; + ctx.body = rslt; + } +} + +async function delFileDir(ctx, next) { + let error = { message: '文件夹删除失败' }; + let rslt = [], fileDirIds = []; + + try { + const { id } = ctx.query, // type == parent / child + models = ctx.fs.dc.models; + const transaction = await ctx.fs.dc.orm.transaction(); + + await models.FileRoad.destroy({ where: { rId: id }, transaction }) + await models.Files.destroy({ where: { roadId: id }, transaction }) + + await transaction.commit(); + + error = null; + } catch (err) { + await transaction.rollback(); + ctx.status = 500; + ctx.body = { detail: err, ...error }; + } + + if (error) { + ctx.status = 400; + ctx.body = { ...error }; + } else { + ctx.status = 200; + ctx.body = { message: '文件夹删除成功' }; + } +} + +async function uploadFile(ctx, next) { + let error = { message: '文件上传失败' }, rslt = null; + const { typeId, userId, userName, fileSize, fileName, fileUrl, fileExt, roadId } = ctx.request.body + try { + const models = ctx.fs.dc.models; + + rslt = await models.Files.create({ + fId: typeId, + uploaderId: userId, + roadId, + createDate: moment().format('YYYY-MM-DD HH:mm:ss'), + fileSize, + fileName, + fileUrl, + fileExt, + uploaderName: userName, + isDelete: false + }) + error = null; + } catch (err) { + ctx.status = 500; + ctx.body = { detail: err, ...error }; + } + + if (error) { + ctx.status = 400; + ctx.body = { ...error }; + } else { + ctx.status = 200; + ctx.body = { message: '文件上传成功', rslt }; + } +} + +async function deleteFile(ctx, next) { + let error = { message: '文件删除失败' }, rslt = null; + const { id } = ctx.query; + try { + const models = ctx.fs.dc.models; + + rslt = await models.Files.update({ + isDelete: true + }, { + where: { id: id } + }) + error = null; + } catch (err) { + ctx.status = 500; + ctx.body = { detail: err, ...error }; + } + + if (error) { + ctx.status = 400; + ctx.body = { ...error }; + } else { + ctx.status = 200; + ctx.body = { message: '文件删除成功', rslt }; + } +} + +async function getFileList(ctx, next) { + let error = { message: '文件上传失败' }, rslt = { list: [], counter: 0, type: '' }; + const { fId, limit, offset, searchTxt, roadId } = ctx.query; + let limit_ = limit, offset_ = offset; + if (limit == null || limit < 0) { + limit_ = 10; + } + if (offset == null || offset < 0) { + offset_ = 0; + } + try { + const models = ctx.fs.dc.models; + let queryOptions = { isDelete: false } + if (searchTxt && searchTxt.trim() != '') { + queryOptions.fileName = { $like: `%${searchTxt}%` } + } + if (fId) { + queryOptions.fId = fId + } + + if (roadId) { + queryOptions.roadId = roadId + } + + rslt.type = await models.FileType.findOne({ + where: { fId } + }) + + rslt.list = await models.Files.findAll({ + where: queryOptions, + offset: offset_, + limit: limit_, + order: [ + ['id', 'DESC'] + ] + }) + rslt.counter = await models.Files.count({ + where: queryOptions + }) + error = null; + } catch (err) { + ctx.status = 500; + ctx.body = { detail: err, ...error }; + } + + if (error) { + ctx.status = 400; + ctx.body = { ...error }; + } else { + ctx.status = 200; + ctx.body = rslt; + } +} + +function updateStructDir(opts) { + + return async function (ctx, next) { + let error = { message: '文件夹名称更新失败' }; + const models = ctx.fs.dc.models; + const { id, name } = ctx.query; + try { + await models.FileRoad.update({ roadName: name }, { + where: { + id: id + }, + }) + + error = null; + } catch (err) { + ctx.status = 500; + ctx.body = { detail: err, ...error }; + } + + if (error) { + ctx.status = 400; + ctx.body = { ...error }; + } else { + ctx.status = 200; + ctx.body = { message: '文件夹名称更新成功' }; + } + } +} + +module.exports = { + uploadFile, + deleteFile, + getFileList, + createProjectDir, + delFileDir, + getFileDirs, + updateStructDir, +} \ No newline at end of file diff --git a/api/app/lib/index.js b/api/app/lib/index.js index ba30ac57..c4715290 100644 --- a/api/app/lib/index.js +++ b/api/app/lib/index.js @@ -26,7 +26,7 @@ module.exports.models = function (dc) { // dc = { orm: Sequelize对象, ORM: Seq require(`./models/${filename}`)(dc) }); - const { User, Department, Report } = dc.models; + const { User, Department, Report, FileType, Road, Files, FileRoad } = dc.models; // 定义外键 User.belongsTo(Department, { foreignKey: 'departmentId', targetKey: 'id' }); Department.hasMany(User, { foreignKey: 'departmentId', sourceKey: 'id' }); @@ -34,4 +34,10 @@ module.exports.models = function (dc) { // dc = { orm: Sequelize对象, ORM: Seq // 定义外键 Report.belongsTo(User, { foreignKey: 'userId', targetKey: 'id' }); User.hasMany(Report, { foreignKey: 'userId', sourceKey: 'id' }); + + Files.belongsTo(FileType, { foreignKey: 'fId', targetKey: 'fId' }); + FileType.hasMany(Files, { foreignKey: 'fId', targetKey: 'fId' }); + + // Files.belongsTo(Road, { foreignKey: 'roadId', targetKey: 'id' }); + // Road.hasMany(Files, { foreignKey: 'roadId', targetKey: 'id' }); }; diff --git a/api/app/lib/models/file-road.js b/api/app/lib/models/file-road.js new file mode 100644 index 00000000..b7f35592 --- /dev/null +++ b/api/app/lib/models/file-road.js @@ -0,0 +1,31 @@ +'use strict'; + +module.exports = function (dc) { + const FileRoad = dc.orm.define( + 'fileRoad', + { + rId: { + field: 'id', + type: dc.ORM.INTEGER, + primaryKey: true, + autoIncrement: true, + allowNull: false + }, + roadName: { + field: 'road_name', + type: dc.ORM.STRING, + }, + originalData: { + field: 'original_data', + type: dc.ORM.STRING, + }, + }, + { + tableName: 'file_road' + } + ); + + dc.models.FileRoad = FileRoad; + + return FileRoad; +}; diff --git a/api/app/lib/models/file-type.js b/api/app/lib/models/file-type.js new file mode 100644 index 00000000..2f8e7dbd --- /dev/null +++ b/api/app/lib/models/file-type.js @@ -0,0 +1,32 @@ +'use strict'; + +module.exports = function (dc) { + const FileType = dc.orm.define( + 'fileType', + { + fId: { + field: 'id', + type: dc.ORM.INTEGER, + primaryKey: true, + autoIncrement: true, + allowNull: false + }, + fileType: { + field: 'file_type', + type: dc.ORM.STRING, + }, + rId: { + field: 'file_road', + type: dc.ORM.INTEGER, + allowNull: false + }, + }, + { + tableName: 'file_type' + } + ); + + dc.models.FileType = FileType; + + return FileType; +}; diff --git a/api/app/lib/models/files.js b/api/app/lib/models/files.js new file mode 100644 index 00000000..387fd681 --- /dev/null +++ b/api/app/lib/models/files.js @@ -0,0 +1,73 @@ +'use strict'; + +module.exports = function (dc) { + const Files = dc.orm.define( + 'files', + { + id: { + field: 'id', + type: dc.ORM.INTEGER, + primaryKey: true, + autoIncrement: true, + allowNull: false + }, + fId: { + field: 'file_type', + type: dc.ORM.INTEGER + }, + roadId: { + field: 'road_id', + type: dc.ORM.INTEGER + }, + uploaderId: { + field: 'uploader_id', + type: dc.ORM.INTEGER + }, + uploaderName: { + field: 'uploader_name', + type: dc.ORM.INTEGER + }, + startDate: { + field: 'start_date', + type: dc.ORM.DATE, + }, + endDate: { + field: 'end_date', + type: dc.ORM.DATE, + }, + createDate: { + field: 'create_date', + type: dc.ORM.DATE, + }, + fileSize: { + field: 'file_size', + type: dc.ORM.INTEGER, + }, + fileName: { + field: 'file_name', + type: dc.ORM.STRING, + }, + + fileUrl: { + field: 'file_url', + type: dc.ORM.STRING, + }, + fileExt: { + field: 'file_ext', + type: dc.ORM.STRING, + }, + isDelete: { + field: 'is_delete', + type: dc.ORM.BOOLEAN, + }, + + }, + { + tableName: 'files' + } + ); + + dc.models.Files = Files; + + return Files; +}; diff --git a/api/app/lib/routes/file/index.js b/api/app/lib/routes/file/index.js new file mode 100644 index 00000000..7998ed5f --- /dev/null +++ b/api/app/lib/routes/file/index.js @@ -0,0 +1,21 @@ +'use strict'; + +const pan = require('../../controllers/file'); + +module.exports = function (app, router, opts, panCode) { + + router.get('/create/struct/dir', pan.createProjectDir); + + router.get('/get/file/dirs', pan.getFileDirs); + + router.get('/netdisk-files/dir/delete', pan.delFileDir); + + router.get('/netdisk-files/struct/dir/update', pan.updateStructDir(opts)) + + router.post('/netdisk-files/upload', pan.uploadFile); + + router.get('/netdisk-files/delete', pan.deleteFile); + + router.get('/netdisk-files/query', pan.getFileList); + +}; \ No newline at end of file diff --git a/api/log/development.log b/api/log/development.log index 2542724b..58b473fe 100644 --- a/api/log/development.log +++ b/api/log/development.log @@ -10656,3 +10656,6 @@ headers: {} 2022-07-28 18:34:55.231 - error: path: /publicity, error: TypeError: values.map is not a function 2022-07-28 18:35:45.669 - error: path: /publicity, error: TypeError: values.map is not a function 2022-07-28 18:37:40.324 - error: path: /publicity, error: TypeError: values.map is not a function +2022-07-28 21:48:22.652 - debug: [FS-LOGGER] Init. +2022-07-28 21:48:22.760 - info: [FS-ATTACHMENT] Inject attachment mw into router. +2022-07-28 21:48:22.760 - info: [FS-AUTH] Inject auth and api mv into router. diff --git a/api/package.json b/api/package.json index 4dab3cf4..45bde8c4 100644 --- a/api/package.json +++ b/api/package.json @@ -5,7 +5,7 @@ "main": "server.js", "scripts": { "test": "set DEBUG=true&&\"node_modules/.bin/mocha\" --harmony --reporter spec app/test/*.test.js", - "start": "set NODE_ENV=development&&node server -p 14000 -g postgres://postgres:123@10.8.30.32:5432/yinjiguanli -f http://localhost:14000", + "start": "set NODE_ENV=development&&node server -p 4000 -g postgres://postgres:123@10.8.30.32:5432/highways4good -f http://localhost:14000", "start:linux": "export NODE_ENV=development&&node server -p 4000 -g postgres://FashionAdmin:123456@10.8.30.39:5432/pm1", "automate": "sequelize-automate -c sequelize-automate.config.js" }, diff --git a/web/Dockerfile b/web/Dockerfile index 9e05d4b0..e5ae3ee8 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -10,6 +10,7 @@ RUN npm config set registry=http://10.8.30.22:7000 RUN echo "{\"time\":\"$BUILD_TIMESTAMP\",\"build\": \"$BUILD_NUMBER\",\"revision\": \"$SVN_REVISION_1\",\"URL\":\"$SVN_URL_1\"}" > version.json RUN npm cache clean -f RUN npm install --registry http://10.8.30.22:7000 +RUN rm -rf package-lock.json RUN npm run build RUN rm -rf client/src RUN rm -rf node_modules diff --git a/web/client/assets/color.less b/web/client/assets/color.less index 2899426f..c70c4f25 100644 --- a/web/client/assets/color.less +++ b/web/client/assets/color.less @@ -555,18 +555,6 @@ html {--antd-wave-shadow-color: @primary-color;} .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled], .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover, .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus, .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active {color: @disabled-color;border-color: @border-color-base;background: @disabled-bg;box-shadow: none;} .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled] > a:only-child, .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child, .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child, .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child {color: currentcolor;} .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled] > a:only-child::after, .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:hover > a:only-child::after, .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus > a:only-child::after, .ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active > a:only-child::after {background: transparent;} -a.ant-btn-disabled, -a.ant-btn-disabled:hover, -a.ant-btn-disabled:focus, -a.ant-btn-disabled:active {color: @disabled-color;border-color: transparent;background: transparent;box-shadow: none;} -a.ant-btn-disabled > a:only-child, -a.ant-btn-disabled:hover > a:only-child, -a.ant-btn-disabled:focus > a:only-child, -a.ant-btn-disabled:active > a:only-child {color: currentcolor;} -a.ant-btn-disabled > a:only-child::after, -a.ant-btn-disabled:hover > a:only-child::after, -a.ant-btn-disabled:focus > a:only-child::after, -a.ant-btn-disabled:active > a:only-child::after {background: transparent;} .ant-btn-group-rtl.ant-btn-group .ant-btn-primary:last-child:not(:first-child), .ant-btn-group-rtl.ant-btn-group .ant-btn-primary + .ant-btn-primary {border-right-color: color(~`colorPalette("@{primary-color}", 5)`);border-left-color: @border-color-base;} .ant-btn-group-rtl.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled], .ant-btn-group-rtl.ant-btn-group .ant-btn-primary + .ant-btn-primary[disabled] {border-right-color: @border-color-base;border-left-color: color(~`colorPalette("@{primary-color}", 5)`);} .ant-picker-calendar {color: @text-color;background: @calendar-full-bg;} @@ -601,6 +589,7 @@ a.ant-btn-disabled:active > a:only-child::after {background: transparent;} .ant-card-type-inner .ant-card-head {background: @background-color-light;} .ant-card-meta-title {color: @heading-color;} .ant-card-meta-description {color: @text-color-secondary;} +.ant-card-loading-block {background: linear-gradient(90deg, fade(@card-skeleton-bg, 20%), fade(@card-skeleton-bg, 40%), fade(@card-skeleton-bg, 20%));background-size: 600% 600%;border-radius: 2px;} .ant-carousel {color: @text-color;} .ant-carousel .slick-slider {-webkit-tap-highlight-color: transparent;} .ant-carousel .slick-prev, .ant-carousel .slick-next {color: transparent;background: transparent;border: 0;} @@ -674,10 +663,8 @@ a.ant-btn-disabled:active > a:only-child::after {background: transparent;} .ant-comment-actions > li > span:hover {color: @comment-action-hover-color;} .ant-picker-status-error.ant-picker, .ant-picker-status-error.ant-picker:not([disabled]):hover {background-color: @input-bg;border-color: #ff4d4f;} .ant-picker-status-error.ant-picker-focused, .ant-picker-status-error.ant-picker:focus {border-color: #ff7875;box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);border-right-width: 1px;} -.ant-picker-status-error.ant-picker .ant-picker-active-bar {background: #ff7875;} .ant-picker-status-warning.ant-picker, .ant-picker-status-warning.ant-picker:not([disabled]):hover {background-color: @input-bg;border-color: #faad14;} .ant-picker-status-warning.ant-picker-focused, .ant-picker-status-warning.ant-picker:focus {border-color: #ffc53d;box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);border-right-width: 1px;} -.ant-picker-status-warning.ant-picker .ant-picker-active-bar {background: #ffc53d;} .ant-picker {color: @text-color;background: @picker-bg;border: 1px solid @border-color-base;border-radius: 2px;} .ant-picker:hover, .ant-picker-focused {border-color: color(~`colorPalette("@{primary-color}", 5)`);border-right-width: 1px;} .ant-input-rtl .ant-picker:hover, .ant-input-rtl .ant-picker-focused {border-right-width: 0;border-left-width: 1px !important;} @@ -708,7 +695,7 @@ a.ant-btn-disabled:active > a:only-child::after {background: transparent;} .ant-picker-range .ant-picker-active-bar {background: @primary-color;} .ant-picker-dropdown {color: @text-color;} .ant-picker-ranges .ant-picker-preset > .ant-tag-blue {color: @primary-color;background: color(~`colorPalette("@{primary-color}", 1)`);border-color: color(~`colorPalette("@{primary-color}", 3)`);} -.ant-picker-range-arrow {box-shadow: 2px 2px 6px -2px rgba(0, 0, 0, 0.1);border-radius: 0 0 2px;} +.ant-picker-range-arrow {background: linear-gradient(135deg, transparent 40%, @calendar-bg 40%);box-shadow: 2px 2px 6px -2px rgba(0, 0, 0, 0.1);border-radius: 0 0 2px;} .ant-picker-range-arrow::before {background: @calendar-bg;background-repeat: no-repeat;background-position: -10px -10px;} .ant-picker-panel-container {background: @calendar-bg;border-radius: 2px;box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);} .ant-picker-panel-container .ant-picker-panel {background: transparent;border-width: 0 0 1px 0;border-radius: 0;} @@ -814,7 +801,7 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte .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;} -.ant-dropdown-arrow {border-radius: 0 0 2px;} +.ant-dropdown-arrow {background: linear-gradient(135deg, transparent 40%, @popover-bg 40%);border-radius: 0 0 2px;} .ant-dropdown-arrow::before {background: @popover-bg;background-repeat: no-repeat;background-position: -10px -10px;} .ant-dropdown-placement-top > .ant-dropdown-arrow, .ant-dropdown-placement-topLeft > .ant-dropdown-arrow, .ant-dropdown-placement-topRight > .ant-dropdown-arrow {box-shadow: 3px 3px 7px -3px rgba(0, 0, 0, 0.1);} .ant-dropdown-placement-bottom > .ant-dropdown-arrow, .ant-dropdown-placement-bottomLeft > .ant-dropdown-arrow, .ant-dropdown-placement-bottomRight > .ant-dropdown-arrow {box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.1);} @@ -949,7 +936,7 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte .ant-input-group.ant-input-group-compact .ant-input-group-wrapper:not(:last-child).ant-input-search > .ant-input-group > .ant-input {border-radius: 2px 0 0 2px;} .ant-input-group > .ant-input-rtl:first-child, .ant-input-group-rtl .ant-input-group-addon:first-child {border-radius: 0 2px 2px 0;} .ant-input-group-rtl .ant-input-group-addon:first-child {border-right: 1px solid @border-color-base;border-left: 0;} -.ant-input-group-rtl .ant-input-group-addon:last-child {border-right: 0;border-left: 1px solid @border-color-base;border-radius: 2px 0 0 2px;} +.ant-input-group-rtl .ant-input-group-addon:last-child {border-right: 0;border-left: 1px solid @border-color-base;} .ant-input-group-rtl.ant-input-group > .ant-input:last-child, .ant-input-group-rtl.ant-input-group-addon:last-child {border-radius: 2px 0 0 2px;} .ant-input-group-rtl.ant-input-group .ant-input-affix-wrapper:not(:first-child) {border-radius: 2px 0 0 2px;} .ant-input-group-rtl.ant-input-group .ant-input-affix-wrapper:not(:last-child) {border-radius: 0 2px 2px 0;} @@ -957,10 +944,6 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte .ant-input-group-rtl.ant-input-group.ant-input-group-compact > *:first-child, .ant-input-group-rtl.ant-input-group.ant-input-group-compact > .ant-select:first-child > .ant-select-selector, .ant-input-group-rtl.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:first-child .ant-input, .ant-input-group-rtl.ant-input-group.ant-input-group-compact > .ant-cascader-picker:first-child .ant-input {border-radius: 0 2px 2px 0;} .ant-input-group-rtl.ant-input-group.ant-input-group-compact > *:last-child, .ant-input-group-rtl.ant-input-group.ant-input-group-compact > .ant-select:last-child > .ant-select-selector, .ant-input-group-rtl.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:last-child .ant-input, .ant-input-group-rtl.ant-input-group.ant-input-group-compact > .ant-cascader-picker:last-child .ant-input, .ant-input-group-rtl.ant-input-group.ant-input-group-compact > .ant-cascader-picker-focused:last-child .ant-input {border-left-width: 1px;border-radius: 2px 0 0 2px;} .ant-input-group.ant-input-group-compact .ant-input-group-wrapper-rtl:not(:last-child).ant-input-search > .ant-input-group > .ant-input {border-radius: 0 2px 2px 0;} -.ant-input-group > .ant-input-rtl:first-child {border-radius: 0 2px 2px 0;} -.ant-input-group > .ant-input-rtl:last-child {border-radius: 2px 0 0 2px;} -.ant-input-group-rtl .ant-input-group-addon:first-child {border-right: 1px solid @border-color-base;border-left: 0;border-radius: 0 2px 2px 0;} -.ant-input-group-rtl .ant-input-group-addon:last-child {border-right: 0;border-left: 1px solid @border-color-base;border-radius: 2px 0 0 2px;} .ant-input-password-icon.anticon {color: @text-color-secondary;} .ant-input-password-icon.anticon:hover {color: @input-icon-hover-color;} .ant-input-textarea-show-count::after {color: @text-color-secondary;} @@ -1046,7 +1029,7 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte .ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper:not(:last-child).ant-input-search > .ant-input-group > .ant-input {border-radius: 2px 0 0 2px;} .ant-input-number-group > .ant-input-number-rtl:first-child, .ant-input-number-group-rtl .ant-input-number-group-addon:first-child {border-radius: 0 2px 2px 0;} .ant-input-number-group-rtl .ant-input-number-group-addon:first-child {border-right: 1px solid @border-color-base;border-left: 0;} -.ant-input-number-group-rtl .ant-input-number-group-addon:last-child {border-right: 0;border-left: 1px solid @border-color-base;border-radius: 2px 0 0 2px;} +.ant-input-number-group-rtl .ant-input-number-group-addon:last-child {border-right: 0;border-left: 1px solid @border-color-base;} .ant-input-number-group-rtl.ant-input-number-group > .ant-input-number:last-child, .ant-input-number-group-rtl.ant-input-number-group-addon:last-child {border-radius: 2px 0 0 2px;} .ant-input-number-group-rtl.ant-input-number-group .ant-input-number-affix-wrapper:not(:first-child) {border-radius: 2px 0 0 2px;} .ant-input-number-group-rtl.ant-input-number-group .ant-input-number-affix-wrapper:not(:last-child) {border-radius: 0 2px 2px 0;} @@ -1054,10 +1037,6 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte .ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > *:first-child, .ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-select:first-child > .ant-select-selector, .ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete:first-child .ant-input, .ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker:first-child .ant-input {border-radius: 0 2px 2px 0;} .ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > *:last-child, .ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-select:last-child > .ant-select-selector, .ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete:last-child .ant-input, .ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker:last-child .ant-input, .ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker-focused:last-child .ant-input {border-left-width: 1px;border-radius: 2px 0 0 2px;} .ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper-rtl:not(:last-child).ant-input-search > .ant-input-group > .ant-input {border-radius: 0 2px 2px 0;} -.ant-input-number-group > .ant-input-number-rtl:first-child {border-radius: 0 2px 2px 0;} -.ant-input-number-group > .ant-input-number-rtl:last-child {border-radius: 2px 0 0 2px;} -.ant-input-number-group-rtl .ant-input-number-group-addon:first-child {border-right: 1px solid @border-color-base;border-left: 0;border-radius: 0 2px 2px 0;} -.ant-input-number-group-rtl .ant-input-number-group-addon:last-child {border-right: 0;border-left: 1px solid @border-color-base;border-radius: 2px 0 0 2px;} .ant-input-number-handler {color: @text-color-secondary;border-left: 1px solid @border-color-base;} .ant-input-number-handler:active {background: @input-number-handler-active-bg;} .ant-input-number-handler:hover .ant-input-number-handler-up-inner, .ant-input-number-handler:hover .ant-input-number-handler-down-inner {color: color(~`colorPalette("@{primary-color}", 5)`);} @@ -1313,8 +1292,8 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte .ant-pagination-simple .ant-pagination-simple-pager input:hover {border-color: @primary-color;} .ant-pagination-simple .ant-pagination-simple-pager input:focus {border-color: color(~`colorPalette("@{primary-color}", 5)`);box-shadow: 0 0 0 2px fade(@primary-color, 20%);} .ant-pagination-simple .ant-pagination-simple-pager input[disabled] {color: @disabled-color;background: @disabled-bg;border-color: @border-color-base;} -.ant-pagination.ant-pagination-mini .ant-pagination-item:not(.ant-pagination-item-active) {background: transparent;border-color: transparent;} -.ant-pagination.ant-pagination-mini .ant-pagination-prev .ant-pagination-item-link, .ant-pagination.ant-pagination-mini .ant-pagination-next .ant-pagination-item-link {background: transparent;border-color: transparent;} +.ant-pagination.mini .ant-pagination-item:not(.ant-pagination-item-active) {background: transparent;border-color: transparent;} +.ant-pagination.mini .ant-pagination-prev .ant-pagination-item-link, .ant-pagination.mini .ant-pagination-next .ant-pagination-item-link {background: transparent;border-color: transparent;} .ant-pagination.ant-pagination-disabled .ant-pagination-item {background: @disabled-bg;border-color: @border-color-base;} .ant-pagination.ant-pagination-disabled .ant-pagination-item a {color: @disabled-color;background: transparent;border: none;} .ant-pagination.ant-pagination-disabled .ant-pagination-item-active {background: @pagination-item-disabled-bg-active;} @@ -1330,8 +1309,8 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte .ant-popover-message {color: @text-color;} .ant-popover-message > .anticon {color: #faad14;} .ant-popover-arrow {background: transparent;} -.ant-popover-arrow-content {--antd-arrow-background-color: @popover-bg;border-radius: 0 0 2px;} -.ant-popover-arrow-content::before {background: var(--antd-arrow-background-color);background-repeat: no-repeat;background-position: -10px -10px;} +.ant-popover-arrow-content {background-color: @popover-bg;border-radius: 0 0 2px;} +.ant-popover-arrow-content::before {background: @popover-bg;background-repeat: no-repeat;background-position: -10px -10px;} .ant-popover-placement-top .ant-popover-arrow-content, .ant-popover-placement-topLeft .ant-popover-arrow-content, .ant-popover-placement-topRight .ant-popover-arrow-content {box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);} .ant-popover-placement-right .ant-popover-arrow-content, .ant-popover-placement-rightTop .ant-popover-arrow-content, .ant-popover-placement-rightBottom .ant-popover-arrow-content {box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);} .ant-popover-placement-bottom .ant-popover-arrow-content, .ant-popover-placement-bottomLeft .ant-popover-arrow-content, .ant-popover-placement-bottomRight .ant-popover-arrow-content {box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.06);} @@ -1387,13 +1366,12 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte .ant-radio-wrapper {color: @text-color;} .ant-radio {color: @text-color;} .ant-radio-wrapper:hover .ant-radio, .ant-radio:hover .ant-radio-inner, .ant-radio-input:focus + .ant-radio-inner {border-color: @primary-color;} -.ant-radio-input:focus + .ant-radio-inner {box-shadow: 0 0 0 3px fade(@primary-color, 12%);} +.ant-radio-input:focus + .ant-radio-inner {box-shadow: 0 0 0 3px color(~`colorPalette("@{primary-color}", 1)`);} .ant-radio-checked::after {border: 1px solid @primary-color;border-radius: 50%;animation-fill-mode: both;} .ant-radio-inner {background-color: @btn-default-bg;border-color: @border-color-base;border-style: solid;border-width: 1px;border-radius: 50%;} .ant-radio-inner::after {background-color: @primary-color;border-top: 0;border-left: 0;border-radius: 16px;} -.ant-radio.ant-radio-disabled .ant-radio-inner {border-color: @border-color-base;} .ant-radio-checked .ant-radio-inner {border-color: @primary-color;} -.ant-radio-disabled .ant-radio-inner {background-color: @disabled-bg;} +.ant-radio-disabled .ant-radio-inner {background-color: @disabled-bg;border-color: @border-color-base !important;} .ant-radio-disabled .ant-radio-inner::after {background-color: @radio-dot-disabled-color;} .ant-radio-disabled + span {color: @disabled-color;} .ant-radio-button-wrapper {color: @text-color;background: @btn-default-bg;border: 1px solid @border-color-base;border-top-width: 1.02px;border-left-width: 0;} @@ -1403,7 +1381,7 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte .ant-radio-button-wrapper:last-child {border-radius: 0 2px 2px 0;} .ant-radio-button-wrapper:first-child:last-child {border-radius: 2px;} .ant-radio-button-wrapper:hover {color: @primary-color;} -.ant-radio-button-wrapper:focus-within {box-shadow: 0 0 0 3px fade(@primary-color, 12%);} +.ant-radio-button-wrapper:focus-within {box-shadow: 0 0 0 3px color(~`colorPalette("@{primary-color}", 1)`);} .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {color: @primary-color;background: @btn-default-bg;border-color: @primary-color;} .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled)::before {background-color: @primary-color;} .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {border-color: @primary-color;} @@ -1411,11 +1389,11 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover::before {background-color: color(~`colorPalette("@{primary-color}", 5)`);} .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active {color: color(~`colorPalette("@{primary-color}", 7)`);border-color: color(~`colorPalette("@{primary-color}", 7)`);} .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active::before {background-color: color(~`colorPalette("@{primary-color}", 7)`);} -.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within {box-shadow: 0 0 0 3px fade(@primary-color, 12%);} +.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within {box-shadow: 0 0 0 3px color(~`colorPalette("@{primary-color}", 1)`);} .ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {color: @radio-solid-checked-color;background: @primary-color;border-color: @primary-color;} .ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover {color: @radio-solid-checked-color;background: color(~`colorPalette("@{primary-color}", 5)`);border-color: color(~`colorPalette("@{primary-color}", 5)`);} .ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active {color: @radio-solid-checked-color;background: color(~`colorPalette("@{primary-color}", 7)`);border-color: color(~`colorPalette("@{primary-color}", 7)`);} -.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within {box-shadow: 0 0 0 3px fade(@primary-color, 12%);} +.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within {box-shadow: 0 0 0 3px color(~`colorPalette("@{primary-color}", 1)`);} .ant-radio-button-wrapper-disabled {color: @disabled-color;background-color: @disabled-bg;border-color: @border-color-base;} .ant-radio-button-wrapper-disabled:first-child, .ant-radio-button-wrapper-disabled:hover {color: @disabled-color;background-color: @disabled-bg;border-color: @border-color-base;} .ant-radio-button-wrapper-disabled:first-child {border-left-color: @border-color-base;} @@ -1482,11 +1460,14 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte .ant-skeleton-header .ant-skeleton-avatar.ant-skeleton-avatar-circle {border-radius: 50%;} .ant-skeleton-header .ant-skeleton-avatar-lg.ant-skeleton-avatar-circle {border-radius: 50%;} .ant-skeleton-header .ant-skeleton-avatar-sm.ant-skeleton-avatar-circle {border-radius: 50%;} -.ant-skeleton-content .ant-skeleton-title {background: @skeleton-color;border-radius: 2px;} -.ant-skeleton-content .ant-skeleton-paragraph > li {background: @skeleton-color;border-radius: 2px;} +.ant-skeleton-content .ant-skeleton-title {background: @skeleton-color;border-radius: 4px;} +.ant-skeleton-content .ant-skeleton-paragraph > li {background: @skeleton-color;border-radius: 4px;} .ant-skeleton-round .ant-skeleton-content .ant-skeleton-title, .ant-skeleton-round .ant-skeleton-content .ant-skeleton-paragraph > li {border-radius: 100px;} -.ant-skeleton-active .ant-skeleton-title, .ant-skeleton-active .ant-skeleton-paragraph > li, .ant-skeleton-active .ant-skeleton-avatar, .ant-skeleton-active .ant-skeleton-button, .ant-skeleton-active .ant-skeleton-input, .ant-skeleton-active .ant-skeleton-image {background: transparent;} -.ant-skeleton-active .ant-skeleton-title::after, .ant-skeleton-active .ant-skeleton-paragraph > li::after, .ant-skeleton-active .ant-skeleton-avatar::after, .ant-skeleton-active .ant-skeleton-button::after, .ant-skeleton-active .ant-skeleton-input::after, .ant-skeleton-active .ant-skeleton-image::after {background: linear-gradient(90deg, @skeleton-color 25%, @skeleton-to-color 37%, @skeleton-color 63%);} +.ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-title, .ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-paragraph > li {background: linear-gradient(90deg, @skeleton-color 25%, @skeleton-to-color 37%, @skeleton-color 63%);background-size: 400% 100%;} +.ant-skeleton.ant-skeleton-active .ant-skeleton-avatar {background: linear-gradient(90deg, @skeleton-color 25%, @skeleton-to-color 37%, @skeleton-color 63%);background-size: 400% 100%;} +.ant-skeleton.ant-skeleton-active .ant-skeleton-button {background: linear-gradient(90deg, @skeleton-color 25%, @skeleton-to-color 37%, @skeleton-color 63%);background-size: 400% 100%;} +.ant-skeleton.ant-skeleton-active .ant-skeleton-input {background: linear-gradient(90deg, @skeleton-color 25%, @skeleton-to-color 37%, @skeleton-color 63%);background-size: 400% 100%;} +.ant-skeleton.ant-skeleton-active .ant-skeleton-image {background: linear-gradient(90deg, @skeleton-color 25%, @skeleton-to-color 37%, @skeleton-color 63%);background-size: 400% 100%;} .ant-skeleton-element .ant-skeleton-button {background: @skeleton-color;border-radius: 2px;} .ant-skeleton-element .ant-skeleton-button.ant-skeleton-button-circle {border-radius: 50%;} .ant-skeleton-element .ant-skeleton-button.ant-skeleton-button-round {border-radius: 32px;} @@ -1603,7 +1584,7 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte .ant-table.ant-table-bordered.ant-table-scroll-horizontal > .ant-table-container > .ant-table-body > table > tbody > tr.ant-table-expanded-row > td, .ant-table.ant-table-bordered.ant-table-scroll-horizontal > .ant-table-container > .ant-table-body > table > tbody > tr.ant-table-placeholder > td {border-right: 0;} .ant-table.ant-table-bordered > .ant-table-footer {border: 1px solid @border-color-split;border-top: 0;} .ant-table-cell .ant-table-container:first-child {border-top: 0;} -.ant-table-cell-scrollbar:not([rowspan]) {box-shadow: 0 1px 0 1px @table-header-bg;} +.ant-table-cell-scrollbar {box-shadow: 0 1px 0 1px @table-header-bg;} .ant-table {color: @text-color;background: @component-background;border-radius: 2px;} .ant-table table {border-radius: 2px 2px 0 0;border-collapse: separate;border-spacing: 0;} .ant-table-footer {color: @heading-color;background: @background-color-light;} @@ -1654,10 +1635,10 @@ tr.ant-table-expanded-row:hover > td {background: @table-expanded-row-bg;} .ant-table-empty .ant-table-tbody > tr.ant-table-placeholder {color: @disabled-color;} .ant-table-tbody > tr.ant-table-placeholder:hover > td {background: @component-background;} .ant-table-cell-fix-left, .ant-table-cell-fix-right {background: @component-background;} -.ant-table-ping-left:not(.ant-table-has-fix-left) > .ant-table-container::before {box-shadow: inset 10px 0 8px -8px darken(@shadow-color, 5%);} +.ant-table-ping-left:not(.ant-table-has-fix-left) .ant-table-container::before {box-shadow: inset 10px 0 8px -8px darken(@shadow-color, 5%);} .ant-table-ping-left .ant-table-cell-fix-left-first::after, .ant-table-ping-left .ant-table-cell-fix-left-last::after {box-shadow: inset 10px 0 8px -8px darken(@shadow-color, 5%);} .ant-table-ping-left .ant-table-cell-fix-left-last::before {background-color: transparent !important;} -.ant-table-ping-right:not(.ant-table-has-fix-right) > .ant-table-container::after {box-shadow: inset -10px 0 8px -8px darken(@shadow-color, 5%);} +.ant-table-ping-right:not(.ant-table-has-fix-right) .ant-table-container::after {box-shadow: inset -10px 0 8px -8px darken(@shadow-color, 5%);} .ant-table-ping-right .ant-table-cell-fix-right-first::after, .ant-table-ping-right .ant-table-cell-fix-right-last::after {box-shadow: inset -10px 0 8px -8px darken(@shadow-color, 5%);} .ant-table-sticky-holder {background: @component-background;} .ant-table-sticky-scroll {background: lighten(@table-border-color, 80%);border-top: 1px solid @border-color-split;} @@ -1666,7 +1647,6 @@ tr.ant-table-expanded-row:hover > td {background: @table-expanded-row-bg;} .ant-table-sticky-scroll-bar-active {background-color: fade(@table-sticky-scroll-bar-bg, 80%);} .ant-table-title {border-radius: 2px 2px 0 0;} .ant-table-title + .ant-table-container {border-top-left-radius: 0;border-top-right-radius: 0;} -.ant-table-title + .ant-table-container table {border-radius: 0;} .ant-table-title + .ant-table-container table > thead > tr:first-child th:first-child {border-radius: 0;} .ant-table-title + .ant-table-container table > thead > tr:first-child th:last-child {border-radius: 0;} .ant-table-container {border-top-left-radius: 2px;border-top-right-radius: 2px;} @@ -1769,7 +1749,7 @@ tr.ant-table-expanded-row:hover > td {background: @table-expanded-row-bg;} .ant-tooltip {color: @text-color;} .ant-tooltip-inner {color: #fff;background-color: @tooltip-bg;border-radius: 2px;box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);} .ant-tooltip-arrow {background: transparent;} -.ant-tooltip-arrow-content {--antd-arrow-background-color: linear-gradient(to right bottom, fadeout(@tooltip-bg, 10%), @tooltip-bg);border-radius: 0 0 2px;} +.ant-tooltip-arrow-content {--antd-arrow-background-color: linear-gradient(to right bottom, fadeout(@tooltip-bg, 10%), @tooltip-bg);background-color: transparent;border-radius: 0 0 2px;} .ant-tooltip-arrow-content::before {background: var(--antd-arrow-background-color);background-repeat: no-repeat;background-position: -10px -10px;} .ant-tooltip-placement-top .ant-tooltip-arrow-content, .ant-tooltip-placement-topLeft .ant-tooltip-arrow-content, .ant-tooltip-placement-topRight .ant-tooltip-arrow-content {box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);} .ant-tooltip-placement-right .ant-tooltip-arrow-content, .ant-tooltip-placement-rightTop .ant-tooltip-arrow-content, .ant-tooltip-placement-rightBottom .ant-tooltip-arrow-content {box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.07);} @@ -1959,7 +1939,6 @@ a.ant-typography.ant-typography-disabled:hover, .ant-typography a.ant-typography .ant-typography pre code {background: transparent;border: 0;} .ant-typography blockquote {border-left: 4px solid rgba(100, 100, 100, 0.2);} .ant-upload {color: @text-color;} -.ant-upload.ant-upload-disabled {color: @disabled-color;} .ant-upload.ant-upload-select-picture-card {background-color: @background-color-light;border: 1px dashed @border-color-base;border-radius: 2px;} .ant-upload.ant-upload-select-picture-card:hover {border-color: @primary-color;} .ant-upload-disabled.ant-upload.ant-upload-select-picture-card:hover {border-color: @border-color-base;} @@ -1990,6 +1969,7 @@ a.ant-typography.ant-typography-disabled:hover, .ant-typography a.ant-typography .ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-eye, .ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-download, .ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-delete {color: rgba(255, 255, 255, 0.85);} .ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-eye:hover, .ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-download:hover, .ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-delete:hover {color: #fff;} .ant-upload-list-picture-card .ant-upload-list-item-uploading.ant-upload-list-item {background-color: @background-color-light;} +.ant-upload-list .ant-upload-animate-inline-appear, .ant-upload-list .ant-upload-animate-inline-enter, .ant-upload-list .ant-upload-animate-inline-leave {animation-fill-mode: cubic-bezier(0.78, 0.14, 0.15, 0.86);} .ant-pro-table-search {background-color: @component-background !important;} .bezierEasingMixin() { @functions: ~`(function() {var NEWTON_ITERATIONS = 4;var NEWTON_MIN_SLOPE = 0.001;var SUBDIVISION_PRECISION = 0.0000001;var SUBDIVISION_MAX_ITERATIONS = 10;var kSplineTableSize = 11;var kSampleStepSize = 1.0 / (kSplineTableSize - 1.0);var float32ArraySupported = typeof Float32Array === 'function';function A (aA1, aA2) { return 1.0 - 3.0 * aA2 + 3.0 * aA1; } @@ -2439,8 +2419,7 @@ this.tinycolor = tinycolor;})()`;} .colorPaletteMixin() { @functions: ~`(function() {var hueStep = 2;var saturationStep = 0.16;var saturationStep2 = 0.05;var brightnessStep1 = 0.05;var brightnessStep2 = 0.15;var lightColorCount = 5;var darkColorCount = 4;var getHue = function(hsv, i, isLight) {var hue;if (hsv.h >= 60 && hsv.h <= 240) {hue = isLight ? hsv.h - hueStep * i : hsv.h + hueStep * i;} else {hue = isLight ? hsv.h + hueStep * i : hsv.h - hueStep * i;} if (hue < 0) {hue += 360;} else if (hue >= 360) {hue -= 360;} - return Math.round(hue);};var getSaturation = function(hsv, i, isLight) {if (hsv.h === 0 && hsv.s === 0) {return hsv.s;} - var saturation;if (isLight) {saturation = hsv.s - saturationStep * i;} else if (i === darkColorCount) {saturation = hsv.s + saturationStep;} else {saturation = hsv.s + saturationStep2 * i;} + return Math.round(hue);};var getSaturation = function(hsv, i, isLight) {var saturation;if (isLight) {saturation = hsv.s - saturationStep * i;} else if (i === darkColorCount) {saturation = hsv.s + saturationStep;} else {saturation = hsv.s + saturationStep2 * i;} if (saturation > 1) {saturation = 1;} if (isLight && i === lightColorCount && saturation > 0.1) {saturation = 0.1;} if (saturation < 0.06) {saturation = 0.06;} @@ -2897,7 +2876,7 @@ this.tinycolor = tinycolor;})()`;} @cascader-dropdown-line-height: @dropdown-line-height; @anchor-bg: transparent; @anchor-border-color: @border-color-split; -@anchor-link-top: 4px; +@anchor-link-top: 7px; @anchor-link-left: 16px; @anchor-link-padding: @anchor-link-top 0 @anchor-link-top @anchor-link-left; @tooltip-max-width: 250px; @@ -2922,7 +2901,7 @@ this.tinycolor = tinycolor;})()`;} @modal-header-border-style: @border-style-base; @modal-header-title-line-height: 22px; @modal-header-title-font-size: @font-size-lg; -@modal-header-close-size: @modal-header-title-line-height + 2 * @modal-header-padding-vertical; +@modal-header-close-size: 56px; @modal-heading-color: @heading-color; @modal-close-color: @text-color-secondary; @modal-footer-bg: transparent; @@ -2933,7 +2912,6 @@ this.tinycolor = tinycolor;})()`;} @modal-mask-bg: fade(@black, 45%); @modal-confirm-body-padding: 32px 32px 24px; @modal-confirm-title-font-size: @font-size-lg; -@modal-border-radius: @border-radius-base; @progress-default-color: @processing-color; @progress-remaining-color: @background-color-base; @progress-info-text-color: @progress-text-color; diff --git a/web/client/src/components/Upload/index.js b/web/client/src/components/Upload/index.js index eac0a27a..0bd3af10 100644 --- a/web/client/src/components/Upload/index.js +++ b/web/client/src/components/Upload/index.js @@ -54,7 +54,7 @@ class Uploads extends Component { componentWillReceiveProps(np) { const { dispatch, value: thisEditData, onChange } = this.props; - const { value: nextEditData } = np; + const { value: nextEditData, clearFileList } = np; const setFileList = () => { let defaultFileList = []; @@ -92,6 +92,12 @@ class Uploads extends Component { } } } + + if (clearFileList) { + this.setState({ + fileList: [] + }); + } // else{ // this.setState({ // fileList:[], diff --git a/web/client/src/sections/fillion/actions/file.js b/web/client/src/sections/fillion/actions/file.js new file mode 100644 index 00000000..2b6adc7f --- /dev/null +++ b/web/client/src/sections/fillion/actions/file.js @@ -0,0 +1,89 @@ +import { basicAction } from '@peace/utils' +import { ApiTable } from '$utils' + + +export function createFileDir(query) { + return dispatch => basicAction({ + type: 'get', + dispatch: dispatch, + actionType: 'CREATE_FILE_DIR', + url: ApiTable.createFileDir, + query, + msg: { error: '创建文件夹失败' }, + // reducer: { name: 'uploadFile' } + }); +} + +export function delFileDir(query) { + return dispatch => basicAction({ + type: 'get', + dispatch: dispatch, + actionType: 'DEL_FILE_DIR', + url: ApiTable.delFileDir, + query, + msg: { error: '删除文件夹失败' }, + // reducer: { name: 'uploadFile' } + }); +} + +export function queryFileDir(query) { + return dispatch => basicAction({ + type: 'get', + dispatch: dispatch, + actionType: 'QUERY_FILE_DIR', + url: ApiTable.queryFileDIr, + query, + msg: { error: '查询文件夹失败' }, + reducer: { name: 'fileDirs' } + }); +} + +export function updateFileDir(query) { + return dispatch => basicAction({ + type: 'get', + dispatch: dispatch, + actionType: 'UPDATE_FILE_DIR', + url: ApiTable.updateFileDir, + query, + msg: { error: '更新文件夹名称失败' }, + // reducer: { name: 'fileDirs' } + }); +} + + +// data : {typeId, userId, userName, startDate, endDate, fileSize, fileName, fileUrl, fileExt} +export function uploadFile(data) { + return dispatch => basicAction({ + type: 'post', + dispatch: dispatch, + actionType: 'UPLOAD_FILE', + url: ApiTable.uploadFile, + data, + msg: { error: '上传文件失败' }, + reducer: { name: 'uploadFile' } + }); +} + +export function deleteFile(id) { + return dispatch => basicAction({ + type: 'get', + dispatch: dispatch, + actionType: 'DELETE_FILE', + url: ApiTable.deleteFile, + msg: { error: '删除文件数据失败' }, + query: { id }, + reducer: { name: 'fileDel' } + }); +} + +export function getFileList(query) { // fId, limit, offset, searchTxt + return dispatch => basicAction({ + type: 'get', + dispatch: dispatch, + actionType: 'GET_FILE_LIST', + url: ApiTable.getFileList, + query, + msg: { error: '获取档案数据失败' }, + reducer: { name: 'fileList' } + }); +} \ No newline at end of file diff --git a/web/client/src/sections/fillion/actions/index.js b/web/client/src/sections/fillion/actions/index.js index 2b041438..e807a408 100644 --- a/web/client/src/sections/fillion/actions/index.js +++ b/web/client/src/sections/fillion/actions/index.js @@ -2,7 +2,9 @@ import * as infor from './infor' import * as patrol from './patrol' +import * as file from './file' export default { ...infor, ...patrol, + ...file, } \ No newline at end of file diff --git a/web/client/src/sections/fillion/components/file/functionMenu.js b/web/client/src/sections/fillion/components/file/functionMenu.js new file mode 100644 index 00000000..b4211d18 --- /dev/null +++ b/web/client/src/sections/fillion/components/file/functionMenu.js @@ -0,0 +1,94 @@ +import React, { useEffect } from 'react'; +import PropTypes from 'prop-types'; +import { delFileDir, queryFileDir, updateFileDir, } from '../../actions/file'; +import './menu.less' +import { message, Modal } from 'antd'; +import { ExclamationCircleOutlined } from '@ant-design/icons' + +const { confirm } = Modal; + +const FunctionMenu = props => { + const { dispatch, onDelDir, selectRoad } = props; + + useEffect(() => { + const box = document.getElementById('tree-box'); + if (box) + box.oncontextmenu = function (e) { + //取消默认的浏览器自带右键 很重要!! + e.preventDefault(); + + //获取我们自定义的右键菜单 + var menu = document.querySelector("#rihgt-click-menu"); + + //根据事件对象中鼠标点击的位置,进行定位 + menu.style.left = e.clientX + 'px'; + menu.style.top = e.clientY + 'px'; + + //改变自定义菜单的高宽,让它显示出来 + menu.style.display = 'block'; + } + + //关闭右键菜单,很简单 + window.onclick = function (e) { + //用户触发click事件就可以关闭了,因为绑定在window上,按事件冒泡处理,不会影响菜单的功能 + document.querySelector('#rihgt-click-menu') ? document.querySelector('#rihgt-click-menu').style.display = 'none' : '' + } + }, [true]) + + const onDeleteDir = () => { + + if (selectRoad) { + const id = selectRoad + dispatch(delFileDir({ id })).then(res => { + const { type } = res; + if (type == 'DEL_FILE_DIR_SUCCESS') { + dispatch(queryFileDir()); + message.success('删除成功') + } else { + message.error('删除失败') + } + }); + } + } + + const showDeleteConfirm = () => { + + confirm({ + title: `是否确认删除该道路?`, + icon: , + // content: 'Some descriptions', + okText: '是', + okType: 'danger', + cancelText: '否', + onOk() { + onDeleteDir(); + }, + onCancel() { + }, + }); + } + + const refreshFileDir = () => { + dispatch(queryFileDir()); + } + + return ( +
+
+
+ 删除 +
+
+
+
+ 刷新 +
+
+
+ + ) +} + +FunctionMenu.propTypes = {} + +export default FunctionMenu \ No newline at end of file diff --git a/web/client/src/sections/fillion/components/file/menu.less b/web/client/src/sections/fillion/components/file/menu.less new file mode 100644 index 00000000..c143c3b8 --- /dev/null +++ b/web/client/src/sections/fillion/components/file/menu.less @@ -0,0 +1,43 @@ +#rihgt-click-menu { + display: none; + font-size: 1.1em; + position: fixed; + width: 200px; + height: auto; + padding: 5px 0px; + border-radius: 5px; + top: 10; + left: 10; + background-color: #fff; + box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24); + color: #333; + z-index: 999; +} + +#rihgt-click-menu .context_item { + height: 32px; + line-height: 32px; + cursor: pointer; + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap; +} + +#rihgt-click-menu .context_item:hover { + background-color: #ddd; +} + +#rihgt-click-menu .context_item .inner_item { + margin: 0px 10px; +} + +#rihgt-click-menu .context_item .inner_item i { + margin: 0 5px 0 0; + font-weight: bold; +} + +#rihgt-click-menu .context_hr { + height: 1px; + border-top: 1px solid #bbb; + margin: 3px 10px; +} \ No newline at end of file diff --git a/web/client/src/sections/fillion/components/file/roadModal.js b/web/client/src/sections/fillion/components/file/roadModal.js new file mode 100644 index 00000000..994b5224 --- /dev/null +++ b/web/client/src/sections/fillion/components/file/roadModal.js @@ -0,0 +1,73 @@ +import React, { useState, useEffect } from 'react' +import PropTypes from 'prop-types'; +import { Modal, Input, Row, Col } from 'antd'; +const { Search } = Input; +const RoadModal = props => { + const { isVisible, onSubmit, onCancel, roads } = props; + const [roadName, setRoadName] = useState(''); + const [isRepeated, setIsRepeated] = useState(true); + + let timer = null; + useEffect(() => { + if (timer) + clearTimeout(timer) + else { + timer = setTimeout(() => { + if (roads.some(item => item.roadName == roadName)) { + setIsRepeated(true) + } else { + setIsRepeated(false); + } + }, 500); + } + + }, [roadName]); + + + useEffect(() => { + if (!isVisible) { + setRoadName('') + setIsRepeated(false) + } + return () => { + setRoadName('') + } + }, [isVisible]) + + + const onInputText = (e) => { + const value = e.target.value; + setRoadName(value); + } + + const onConfirm = () => { + if (!isRepeated) + if (roadName && roadName.trim() != '') { + onSubmit(roadName) + } + } + + + return ( + + + + 请输入道路名称: + + + + + + { + isRepeated ? 道路名称重复 + : '' + } + + + + ) +} + +RoadModal.propTypes = {} + +export default RoadModal \ No newline at end of file diff --git a/web/client/src/sections/fillion/components/file/uploadModal.js b/web/client/src/sections/fillion/components/file/uploadModal.js new file mode 100644 index 00000000..b14b5b49 --- /dev/null +++ b/web/client/src/sections/fillion/components/file/uploadModal.js @@ -0,0 +1,46 @@ +import React, { useState, useEffect } from 'react' +import { Modal, Input, Row, Col } from 'antd'; +import Upload from '../../../../components/Upload'; +const UploadModal = props => { + const { isVisible, onSubmit, onCancel, } = props; + const [files, setFiles] = useState() + + + useEffect(() => { + if (!isVisible) { + } + return () => { + } + }, [isVisible]) + + + + const onConfirm = () => { + onSubmit(files); + } + + const onFileUploaded = (fileList) => { + console.log('fileList: ', fileList); + setFiles(fileList); + } + + return ( + + + + + + ) +} + +UploadModal.propTypes = {} + +export default UploadModal \ No newline at end of file diff --git a/web/client/src/sections/fillion/components/fileTable.js b/web/client/src/sections/fillion/components/fileTable.js new file mode 100644 index 00000000..77fc8cce --- /dev/null +++ b/web/client/src/sections/fillion/components/fileTable.js @@ -0,0 +1,442 @@ +import { connect } from 'react-redux'; +import './protable.less' +import { Card, Button, Row, DatePicker, Input, Modal, message, Image } from 'antd'; +import ProTable from '@ant-design/pro-table'; +import { getFileList, createFileDir, queryFileDir, uploadFile, deleteFile } from '../actions/file'; +import { ExclamationCircleOutlined } from '@ant-design/icons'; +import React, { useEffect, useState } from 'react'; +import { httpDel } from '@peace/utils' +import { PinyinHelper } from '@peace/utils'; +import RoadModal from './file/roadModal'; +// import Pdfh5 from "pdfh5"; +// import "pdfh5/css/pdfh5.css"; +import FunctionMenu from './file/functionMenu'; +const { confirm } = Modal; + +// @ts-ignore +import UploadModal from './file/uploadModal'; + +// var pdfh5 = null; +const DetailList = (props) => { + const { fileList, loading, dispatch, handelRefresh, onPageChange } = props; + const [imgSrc, setImgSrc] = useState({ imageView: false, imgSrc: '' }) + const [pdfView, setPdfView] = useState({ showPDF: false, pdfName: '', pdfurl: '' }) + var tyApiRoot = localStorage.getItem('tyApiRoot') + + // useEffect(() => { + // if (pdfView.showPDF) { + // pdfh5 = new Pdfh5("#pdf-loader", { + // pdfurl: pdfView.pdfurl + // }) + // } + // }, [pdfView]) + + const handleRemove = (record, filePath) => { + if (record) { + dispatch(deleteFile(record.id)).then(res => { + if (res.type == 'DELETE_FILE_SUCCESS') { + message.success("文件删除成功"); + handelRefresh() + } else { + message.error("文件删除失败") + } + }) + } + let url = `${tyApiRoot}/attachments`, msg = {}; + const actionType = "DEL_FILE_RECORD"; + if (filePath) { + httpDel(dispatch, { url, actionType, msg, query: { src: filePath } }) + } + } + const overviewPDF = (record, filePath) => { + setPdfView({ showPDF: true, pdfName: record.fileName, pdfurl: filePath }) + } + + const showDeleteConfirm = (record, filePath) => { + confirm({ + title: '是否确认删除该文件?', + icon: , + // content: 'Some descriptions', + okText: '是', + okType: 'danger', + cancelText: '否', + onOk() { + handleRemove(record, filePath); + }, + onCancel() { + }, + }); + } + + const columns = [ + { + title: '资料名称', + key: 'fileName', + dataIndex: 'fileName', + align: 'center', + }, { + title: '所属道路', + key: 'road', + dataIndex: 'road', + align: 'center', + render: (text, record) => { + return ''; + } + }, { + title: '资料类型', + key: 'address', + dataIndex: 'address', + align: 'center', + render: (text, record) => { + return ''; + } + }, + { + title: '文件类型', + key: 'fileExt', + dataIndex: 'fileExt', + align: 'center' + }, + { + title: '文件大小', + width: 100, + key: 'fileSize', + dataIndex: 'fileSize', + align: 'center', + render: (text, record) => { + let size = 0; + if (record.fileSize < 1024 * 1024) { + size = (record.fileSize / 1024).toFixed(2) + 'KB' + } else { + size = (record.fileSize / 1024 / 1024).toFixed(2) + 'MB' + } + return {size} + } + }, { + title: '创建时间', + key: 'createDate', + dataIndex: 'createDate', + valueType: 'dateTime', + align: 'center' + }, { + title: '操作', + width: 200, + key: 'option', + valueType: 'option', + align: 'center', + render: (text, record) => { + const regEx = /\bhttps?:\/\/[^:\/]+/ig; + const path = record.fileUrl; + const filename = path.substr(path.lastIndexOf("/") + 1); + const filePath = path.replace(regEx, ""); + const filePath_ = `${tyApiRoot}/attachments?src=${filePath}&filename=${filename}`; + + return + {/* {下载} */} + { { + window.open(filePath_); + }} >下载} + + { showDeleteConfirm(record, filePath) }}>删除 + { + ['.png', '.jpg'].some(item => item == record.fileExt) ? + [, + { setImgSrc({ imageView: true, imgSrc: path }) }}>预览] + : '' + } + {/* { + ['.pdf'].some(item => item == record.fileExt) ? + [, + overviewPDF(record, path)}>预览] + : '' + } */} + + }, + }, + ]; + return [ + { + onPageChange(page, pageSize) + } + }} + rowKey="key" + toolBarRender={false} + search={false} + />, + { + setImgSrc({ imageView: value, imgSrc: '' }); + }, + }} + />, + // { + // pdfh5 = null; + // setPdfView({ showPDF: false, pdfName: '', pdfurl: '' }); + // }} + // > + //
+ // + + ]; +}; + + + +const RoadNameList = (props) => { + const [filterRoad, setFilterRoad] = useState([]); + const [addVisible, setAddVisible] = useState(false); + const [selectRoad, setSelectRoad] = useState(); + const { onChange, roads, loading, queryData, dispatch } = props; + const columns = [ + { + title: '道路名称', + key: 'roadName', + dataIndex: 'roadName', + align: 'center', + }, + + ]; + + useEffect(() => { + if (roads && roads instanceof Array) { + setSelectRoad(roads[0].rId) + onChange(roads[0]); + } + }, [roads]) + + useEffect(() => { + if (roads) { + setFilterRoad(roads) + } + }, [roads]) + + var timer = null; + const doRoadNameSearch = (e) => { + const name = e.target.value; + if (timer) { + clearTimeout(timer) + } else { + setTimeout(() => { + let _roads = roads.filter(road => PinyinHelper.isSearchMatched(road.roadName, name)); + setFilterRoad(_roads); + }, 500); + } + } + + const createRoadDir = (roadName) => { + dispatch(createFileDir({ roadName })).then(res => { + if (res.type == 'CREATE_FILE_DIR_SUCCESS') { + setAddVisible(false) + message.success('新增道路文件夹成功'); + dispatch(queryFileDir()) + } + }); + + } + + const onDelDir = () => { + + } + + return ( +
+ { + return record.rId == selectRoad ? 'list-row-actived' : ''; + }} + toolBarRender={() => [ +
+ + +
+ ]} + options={false} + pagination={false} + search={false} + onRow={(record) => { + return { + onClick: () => { + if (record) { + setSelectRoad(record.rId); + onChange(record); + } + }, + }; + }} + /> + { setAddVisible(false) }} + /> + + +
+ + ); +}; + + + +const FileTable = (props) => { + const { roads, fileList, dispatch, fileListLoading, roadsLoading, user } = props; + const [record, setRecord] = useState(); + const [activeTabKey1, setActiveTabKey1] = useState('1'); + const [uploadVisible, setUploadVisible] = useState(false); + const { RangePicker } = DatePicker; + + useEffect(() => { + if (roads && roads instanceof Array) { + setRecord(roads[0]); + } + }, [roads]) + + useEffect(() => { + if (record) { + queryData(); + } + }, [record]) + + const queryData = () => { + const { rId } = record; + dispatch(getFileList({ fId: activeTabKey1, limit: 10, offset: 0, roadId: rId })) + } + + const onPageChange = (page, pageSize) => { + dispatch(getFileList({ fId: activeTabKey1, limit: pageSize, offset: (page - 1) * pageSize, roadId: rId })) + } + + useEffect(() => { + if (record && activeTabKey1) { + queryData(); + } + + }, [activeTabKey1, record]) + + const handelRefresh = () => { + queryData() + } + + const tabList = [ + { + key: '1', + tab: '前期资料', + }, { + key: '2', + tab: '施工资料', + }, { + key: '3', + tab: '竣工资料', + }, { + key: '4', + tab: '维修资料', + }, { + key: '5', + tab: '道路资料', + }, + ]; + const onTab1Change = (key) => { + setActiveTabKey1(key); + }; + + const handleChangeRecord = (newRecord) => { + let target = null; + if (!record || newRecord.rId != record.rId) { + target = newRecord; + } + setRecord(target); + } + const hanleUpload = (fileList) => { + let fileUrl, fileExt, fileName, fileSize; + if (fileList && fileList instanceof Array) { + const file = fileList[0]; + fileName = file.name; + fileExt = fileName.substr(fileName.lastIndexOf('.')); + fileUrl = file.url; + fileSize = file.size; + dispatch(uploadFile({ typeId: activeTabKey1, userId: user.id, fileSize, fileName, fileUrl, fileExt, roadId: record.rId })).then(res => { + if (res.type == 'UPLOAD_FILE_SUCCESS') { + message.success('文件新增成功'); + setUploadVisible(false); + queryData(); + } + }); + } + } + + return ( +
+ + handleChangeRecord(record)} + record={record} + roads={roads} + loading={roadsLoading} /> + + { + onTab1Change(key); + }} + > + + + + + + + + { setUploadVisible(false) }} + onSubmit={hanleUpload} + /> +
+ + ); +}; + +function mapStateToProps(state) { + const { fileDirs, fileList, auth } = state; + return { + roads: fileDirs.data, + roadsLoading: fileDirs.isRequesting, + fileList: fileList.data, + fileListLoading: fileList.isRequesting, + user: auth.user, + }; +} +export default connect(mapStateToProps)(FileTable); \ No newline at end of file diff --git a/web/client/src/sections/fillion/components/protable.less b/web/client/src/sections/fillion/components/protable.less index 8379bd79..6d66a5df 100644 --- a/web/client/src/sections/fillion/components/protable.less +++ b/web/client/src/sections/fillion/components/protable.less @@ -1,21 +1,30 @@ -.protable-transpor{ - .ant-table-cell-fix-left{ +.protable-transpor { + .ant-table-cell-fix-left { background-color: #ffffff !important; } - .ant-table-cell-fix-right{ + + .ant-table-cell-fix-right { background-color: #ffffff !important; } - + } -.spilce{ - .split-row-select-active { - background-color: #e6f7ff; - } - th { - display: none; - } + +.list-row-actived { + background-color: #7cafc6; + font-weight: 600; +} + + +.ant-divider { + width: 0px; + height: 8px; + border-left: 1px solid gray; + margin: 0px 8px; + opacity: 0.8; } -.card-protable{display: flex; - flex-direction:row; + +.card-protable { + display: flex; + flex-direction: row; width: 100%; } \ No newline at end of file diff --git a/web/client/src/sections/fillion/containers/file.js b/web/client/src/sections/fillion/containers/file.js new file mode 100644 index 00000000..04803b9c --- /dev/null +++ b/web/client/src/sections/fillion/containers/file.js @@ -0,0 +1,40 @@ +import React, { useEffect, useState } from 'react'; +import { connect } from 'react-redux'; +import '../style.less'; +import { queryFileDir } from '../actions/file'; +import FileTable from '../components/fileTable'; +const superagent = require('superagent'); +const patrol = (props) => { + const { dispatch, user } = props + + useEffect(() => { + dispatch(queryFileDir()) + }, [true]) + //批量导出 + const exports = (ids, counts) => { + let reportIds = []; + if (ids.length) + reportIds = ids + else + reportIds = (counts || {}).ids || []; + superagent.post('/_report/http') + .send({ id: reportIds.map(i => Number(i)) }).end((err, res) => { + const resTextIs = res.text.split('/').pop() + window.open( + '/_api/' + + `attachments?src=files/${resTextIs}&filename=${encodeURIComponent(resTextIs)}&token=${user.token}`) + }) + } + + return ( + <> + + ) +} +function mapStateToProps(state) { + const { auth } = state + return { + user: auth.user, + } +} +export default connect(mapStateToProps)(patrol); \ No newline at end of file diff --git a/web/client/src/sections/fillion/containers/index.js b/web/client/src/sections/fillion/containers/index.js index 55870c0e..514e6631 100644 --- a/web/client/src/sections/fillion/containers/index.js +++ b/web/client/src/sections/fillion/containers/index.js @@ -11,4 +11,5 @@ import Videois from './videois'; import PromoTional from './promotional'; import Maintenance from './maintenance'; import Patrol from './patrol'; -export { Infor,transportation,BridgeTable,HigHways,OperaTional,Enforce,Public,Videois,PromoTional,Maintenance,Patrol }; \ No newline at end of file +import File from './file'; +export { Infor,transportation,BridgeTable,HigHways,OperaTional,Enforce,Public,Videois,PromoTional,Maintenance,Patrol,File}; \ No newline at end of file diff --git a/web/client/src/sections/fillion/nav-item.js b/web/client/src/sections/fillion/nav-item.js index 7ff3eedc..56f660d7 100644 --- a/web/client/src/sections/fillion/nav-item.js +++ b/web/client/src/sections/fillion/nav-item.js @@ -32,6 +32,9 @@ export function getNavItem(user, dispatch) { 公交管理 + + 档案管理 + 视频管理 diff --git a/web/client/src/sections/fillion/routes.js b/web/client/src/sections/fillion/routes.js index a3410fd4..175b336c 100644 --- a/web/client/src/sections/fillion/routes.js +++ b/web/client/src/sections/fillion/routes.js @@ -10,6 +10,7 @@ import { Videois } from './containers'; import { PromoTional } from './containers'; import { Maintenance } from './containers' import { Patrol } from './containers' +import { File } from './containers'; export default [{ type: 'inner', route: { @@ -31,14 +32,14 @@ export default [{ component: transportation, breadcrumb: '道路管理', } - , { + , { path: '/bridge', key: 'fillionbridge', menuSelectKeys: ['fillionbridge'], component: BridgeTable, breadcrumb: '桥梁管理', } - , { + , { path: '/highways', key: 'fillionhighways', menuSelectKeys: ['fillionhighways'], @@ -56,7 +57,7 @@ export default [{ menuSelectKeys: ['fillionenforce'], component: Enforce, breadcrumb: '执法管理', - }, { + }, { path: '/maintenance', key: 'fillionmaintenance', menuSelectKeys: ['fillionmaintenance'], @@ -74,14 +75,22 @@ export default [{ menuSelectKeys: ['fillionpublic'], component: Public, breadcrumb: '公交管理', - }, { + }, + { + path: '/file', + key: 'fileCont', + menuSelectKeys: ['fileCont'], + component: File, + breadcrumb: '档案管理', + }, + { path: '/videois', key: 'fillionvideois', menuSelectKeys: ['fillionvideois'], component: Videois, breadcrumb: '视频管理', } - , { + , { path: '/promotional', key: 'fillionpromotional', menuSelectKeys: ['fillionpromotional'], diff --git a/web/client/src/themes/light.json b/web/client/src/themes/light.json index c59ee5e5..a7c012cd 100644 --- a/web/client/src/themes/light.json +++ b/web/client/src/themes/light.json @@ -1 +1 @@ -{"@line-height-base":"1.66667","@mode":"compact","@font-size-base":"12px","@font-size-lg":"@font-size-base + 2px","@default-padding-lg":"24px","@default-padding-md":"16px","@default-padding-sm":"12px","@default-padding-xs":"8px","@default-padding-xss":"4px","@padding-lg":"16px","@padding-md":"8px","@padding-sm":"8px","@padding-xs":"4px","@padding-xss":"0px","@control-padding-horizontal":"@padding-sm","@control-padding-horizontal-sm":"@default-padding-xs","@margin-lg":"16px","@margin-md":"8px","@margin-sm":"8px","@margin-xs":"4px","@margin-xss":"0px","@height-base":"28px","@height-lg":"32px","@height-sm":"22px","@btn-padding-horizontal-base":"@default-padding-sm - 1px","@btn-padding-horizontal-lg":"@btn-padding-horizontal-base","@btn-padding-horizontal-sm":"@default-padding-xs - 1px","@btn-square-only-icon-size-lg":"16px","@btn-square-only-icon-size":"14px","@btn-square-only-icon-size-sm":"12px","@breadcrumb-font-size":"@font-size-base","@breadcrumb-icon-font-size":"@font-size-base","@dropdown-line-height":"18px","@menu-item-padding":"0 12px","@menu-horizontal-line-height":"38px","@menu-inline-toplevel-item-height":"32px","@menu-item-height":"32px","@menu-item-vertical-margin":"0px","@menu-item-boundary-margin":"0px","@menu-icon-margin-right":"8px","@checkbox-size":"14px","@checkbox-group-item-margin-right":"6px","@picker-panel-cell-height":"22px","@picker-panel-cell-width":"32px","@picker-text-height":"32px","@picker-time-panel-cell-height":"24px","@picker-panel-without-time-cell-height":"48px","@form-item-margin-bottom":"16px","@form-vertical-label-padding":"0 0 4px","@rate-star-size":"16px","@radio-size":"14px","@radio-wrapper-margin-right":"6px","@switch-height":"20px","@switch-sm-height":"14px","@switch-min-width":"40px","@switch-sm-min-width":"24px","@switch-inner-margin-min":"4px","@switch-inner-margin-max":"22px","@slider-handle-size":"12px","@slider-handle-margin-top":"-4px","@input-padding-vertical-base":"round(\n max(\n (round(((@input-height-base - @font-size-base * @line-height-base) / 2) * 10) / 10) -\n @border-width-base,\n 2px\n )\n)","@input-padding-horizontal-lg":"11px","@page-header-padding":"16px","@page-header-padding-vertical":"8px","@page-header-heading-title":"16px","@page-header-heading-sub-title":"12px","@page-header-tabs-tab-font-size":"14px","@pagination-mini-options-size-changer-top":"1px","@pagination-item-size-sm":"22px","@cascader-dropdown-line-height":"@dropdown-line-height","@select-dropdown-height":"@height-base","@select-single-item-height-lg":"32px","@select-multiple-item-height":"@input-height-base - max(@input-padding-vertical-base, 4) * 2","@select-multiple-item-height-lg":"24px","@select-multiple-item-spacing-half":"3px","@tree-title-height":"20px","@transfer-item-padding-vertical":"3px","@transfer-list-search-icon-top":"8px","@transfer-header-height":"36px","@comment-actions-margin-bottom":"0px","@comment-actions-margin-top":"@margin-xs","@comment-content-detail-p-margin-bottom":"0px","@steps-icon-size":"24px","@steps-icon-custom-size":"20px","@steps-icon-custom-font-size":"20px","@steps-icon-custom-top":"2px","@steps-icon-margin":"2px 8px 2px 0","@steps-icon-font-size":"@font-size-base","@steps-dot-top":"4px","@steps-icon-top":"0px","@steps-small-icon-size":"20px","@steps-vertical-icon-width":"12px","@steps-vertical-tail-width":"12px","@steps-vertical-tail-width-sm":"10px","@collapse-header-padding-extra":"32px","@collapse-content-padding":"@padding-md @padding-lg","@list-item-meta-description-font-size":"@font-size-sm","@list-item-padding-sm":"4px 12px","@list-item-padding-lg":"12px 16px","@drawer-header-padding":"11px @padding-lg","@drawer-footer-padding-vertical":"@padding-sm","@drawer-footer-padding-horizontal":"@padding-sm","@drawer-header-close-size":"44px","@modal-header-padding-vertical":"11px","@modal-header-padding":"@modal-header-padding-vertical @modal-header-padding-horizontal","@modal-footer-padding-vertical":"@padding-sm","@modal-header-close-size":"@modal-header-title-line-height + 2 * @modal-header-padding-vertical","@modal-confirm-body-padding":"24px 24px 16px","@message-notice-content-padding":"8px 16px","@popover-min-height":"28px","@popover-padding-horizontal":"@default-padding-sm","@card-padding-base":"12px","@card-head-height":"36px","@card-head-font-size":"@card-head-font-size-sm","@card-head-padding":"8.5px","@card-padding-base-sm":"@card-padding-base","@card-head-height-sm":"30px","@card-head-padding-sm":"6px","@card-actions-li-margin":"4px 0","@card-head-tabs-margin-bottom":"-9px","@table-padding-vertical":"12px","@table-padding-horizontal":"8px","@table-padding-vertical-md":"8px","@table-padding-horizontal-md":"8px","@table-padding-vertical-sm":"4px","@table-padding-horizontal-sm":"4px","@table-selection-column-width":"32px","@statistic-content-font-size":"20px","@alert-with-description-no-icon-padding-vertical":"7px","@alert-with-description-padding-vertical":"11px","@alert-icon-top":"7px + @font-size-base * (@line-height-base / 2) - (@font-size-base / 2)","@alert-with-description-icon-size":"20px","@skeleton-paragraph-margin-top":"20px","@skeleton-paragraph-li-margin-top":"12px","@skeleton-paragraph-li-height":"14px","@skeleton-title-height":"14px","@skeleton-title-paragraph-margin-top":"20px","@descriptions-title-margin-bottom":"8px","@descriptions-default-padding":"12px @padding-lg","@descriptions-item-padding-bottom":"@padding-xs","@avatar-size-base":"28px","@avatar-size-lg":"32px","@avatar-size-sm":"22px","@avatar-font-size-base":"16px","@avatar-font-size-lg":"20px","@avatar-font-size-sm":"12px","@badge-height":"18px","@tag-line-height":"18px","@notification-padding-vertical":"12px","@notification-padding-horizontal":"16px","@result-title-font-size":"20px","@result-icon-font-size":"64px","@result-extra-margin":"24px 0 0 0","@anchor-link-top":"4px","@anchor-link-left":"16px","@anchor-link-padding":"@anchor-link-top 0 @anchor-link-top @anchor-link-left","@tabs-card-horizontal-padding":"4px @padding-md","@progress-circle-text-font-size":"0.833333em","@image-size-base":"48px","@image-font-size-base":"24px","@primary-color":"@blue-6","@layout-header-background":"#fff"} \ No newline at end of file +{"@line-height-base":"1.66667","@mode":"compact","@font-size-base":"12px","@font-size-lg":"@font-size-base + 2px","@default-padding-lg":"24px","@default-padding-md":"16px","@default-padding-sm":"12px","@default-padding-xs":"8px","@default-padding-xss":"4px","@padding-lg":"16px","@padding-md":"8px","@padding-sm":"8px","@padding-xs":"4px","@padding-xss":"0px","@control-padding-horizontal":"@padding-sm","@control-padding-horizontal-sm":"@default-padding-xs","@margin-lg":"16px","@margin-md":"8px","@margin-sm":"8px","@margin-xs":"4px","@margin-xss":"0px","@height-base":"28px","@height-lg":"32px","@height-sm":"22px","@btn-padding-horizontal-base":"@default-padding-sm - 1px","@btn-padding-horizontal-lg":"@btn-padding-horizontal-base","@btn-padding-horizontal-sm":"@default-padding-xs - 1px","@btn-square-only-icon-size-lg":"16px","@btn-square-only-icon-size":"14px","@btn-square-only-icon-size-sm":"12px","@breadcrumb-font-size":"@font-size-base","@breadcrumb-icon-font-size":"@font-size-base","@dropdown-line-height":"18px","@menu-item-padding":"0 12px","@menu-horizontal-line-height":"38px","@menu-inline-toplevel-item-height":"32px","@menu-item-height":"32px","@menu-item-vertical-margin":"0px","@menu-item-boundary-margin":"0px","@menu-icon-margin-right":"8px","@checkbox-size":"14px","@checkbox-group-item-margin-right":"6px","@picker-panel-cell-height":"22px","@picker-panel-cell-width":"32px","@picker-text-height":"32px","@picker-time-panel-cell-height":"24px","@picker-panel-without-time-cell-height":"48px","@form-item-margin-bottom":"16px","@form-vertical-label-padding":"0 0 4px","@rate-star-size":"16px","@radio-size":"14px","@radio-wrapper-margin-right":"6px","@switch-height":"20px","@switch-sm-height":"14px","@switch-min-width":"40px","@switch-sm-min-width":"24px","@switch-inner-margin-min":"4px","@switch-inner-margin-max":"22px","@slider-handle-size":"12px","@slider-handle-margin-top":"-4px","@input-padding-vertical-base":"round(\n max(\n (round(((@input-height-base - @font-size-base * @line-height-base) / 2) * 10) / 10) -\n @border-width-base,\n 2px\n )\n)","@input-padding-horizontal-lg":"11px","@page-header-padding":"16px","@page-header-padding-vertical":"8px","@page-header-heading-title":"16px","@page-header-heading-sub-title":"12px","@page-header-tabs-tab-font-size":"14px","@pagination-mini-options-size-changer-top":"1px","@pagination-item-size-sm":"22px","@cascader-dropdown-line-height":"@dropdown-line-height","@select-dropdown-height":"@height-base","@select-single-item-height-lg":"32px","@select-multiple-item-height":"@input-height-base - max(@input-padding-vertical-base, 4) * 2","@select-multiple-item-height-lg":"24px","@select-multiple-item-spacing-half":"3px","@tree-title-height":"20px","@transfer-item-padding-vertical":"3px","@transfer-list-search-icon-top":"8px","@transfer-header-height":"36px","@comment-actions-margin-bottom":"0px","@comment-actions-margin-top":"@margin-xs","@comment-content-detail-p-margin-bottom":"0px","@steps-icon-size":"24px","@steps-icon-custom-size":"20px","@steps-icon-custom-font-size":"20px","@steps-icon-custom-top":"2px","@steps-icon-margin":"2px 8px 2px 0","@steps-icon-font-size":"@font-size-base","@steps-dot-top":"4px","@steps-icon-top":"0px","@steps-small-icon-size":"20px","@steps-vertical-icon-width":"12px","@steps-vertical-tail-width":"12px","@steps-vertical-tail-width-sm":"10px","@collapse-header-padding-extra":"32px","@collapse-content-padding":"@padding-md @padding-lg","@list-item-meta-description-font-size":"@font-size-sm","@list-item-padding-sm":"4px 12px","@list-item-padding-lg":"12px 16px","@drawer-header-padding":"11px @padding-lg","@drawer-footer-padding-vertical":"@padding-sm","@drawer-footer-padding-horizontal":"@padding-sm","@drawer-header-close-size":"44px","@modal-header-padding":"11px @modal-header-padding-horizontal","@modal-footer-padding-vertical":"@padding-sm","@modal-header-close-size":"44px","@modal-confirm-body-padding":"24px 24px 16px","@message-notice-content-padding":"8px 16px","@popover-min-height":"28px","@popover-padding-horizontal":"@default-padding-sm","@card-padding-base":"12px","@card-head-height":"36px","@card-head-font-size":"@card-head-font-size-sm","@card-head-padding":"8.5px","@card-padding-base-sm":"@card-padding-base","@card-head-height-sm":"30px","@card-head-padding-sm":"6px","@card-actions-li-margin":"4px 0","@card-head-tabs-margin-bottom":"-9px","@table-padding-vertical":"12px","@table-padding-horizontal":"8px","@table-padding-vertical-md":"8px","@table-padding-horizontal-md":"8px","@table-padding-vertical-sm":"4px","@table-padding-horizontal-sm":"4px","@table-selection-column-width":"32px","@statistic-content-font-size":"20px","@alert-with-description-no-icon-padding-vertical":"7px","@alert-with-description-padding-vertical":"11px","@alert-icon-top":"7px + @font-size-base * (@line-height-base / 2) - (@font-size-base / 2)","@alert-with-description-icon-size":"20px","@skeleton-paragraph-margin-top":"20px","@skeleton-paragraph-li-margin-top":"12px","@skeleton-paragraph-li-height":"14px","@skeleton-title-height":"14px","@skeleton-title-paragraph-margin-top":"20px","@descriptions-title-margin-bottom":"8px","@descriptions-default-padding":"12px @padding-lg","@descriptions-item-padding-bottom":"@padding-xs","@avatar-size-base":"28px","@avatar-size-lg":"32px","@avatar-size-sm":"22px","@avatar-font-size-base":"16px","@avatar-font-size-lg":"20px","@avatar-font-size-sm":"12px","@badge-height":"18px","@tag-line-height":"18px","@notification-padding-vertical":"12px","@notification-padding-horizontal":"16px","@result-title-font-size":"20px","@result-icon-font-size":"64px","@result-extra-margin":"24px 0 0 0","@anchor-link-top":"4px","@anchor-link-left":"16px","@anchor-link-padding":"@anchor-link-top 0 @anchor-link-top @anchor-link-left","@tabs-card-horizontal-padding":"4px @padding-md","@progress-circle-text-font-size":"0.833333em","@image-size-base":"48px","@image-font-size-base":"24px","@primary-color":"@blue-6","@layout-header-background":"#fff"} \ No newline at end of file diff --git a/web/client/src/utils/webapi.js b/web/client/src/utils/webapi.js index 037c8bc5..9b025ac0 100644 --- a/web/client/src/utils/webapi.js +++ b/web/client/src/utils/webapi.js @@ -3,112 +3,121 @@ 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', + + //档案管理 + uploadFile: 'netdisk-files/upload', + deleteFile: 'netdisk-files/delete', + getFileList: 'netdisk-files/query', + createFileDir: 'create/struct/dir', + delFileDir: 'netdisk-files/dir/delete', + queryFileDIr: 'get/file/dirs', + updateFileDir: 'netdisk-files/struct/dir/update', + + + //运政管理 + 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 }; 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 048c1b69..aea1f8ad 100644 --- a/web/log/development.txt +++ b/web/log/development.txt @@ -1,30713 +1,8 @@ -2022-03-11 15:24:58.542 - debug: [FS-LOGGER] Init. -2022-03-11 15:24:58.796 - info: [Router] Inject api: attachment/index -2022-03-11 15:31:30.837 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:4100', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 4100 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://127.0.0.1:4100/project/login', - headers: { - host: '127.0.0.1:4100', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '" Not A;Brand";v="99", "Chromium";v="96", "Google Chrome";v="96"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh,zh-CN;q=0.9,en-US;q=0.8,en;q=0.7', - cookie: 'Hm_lvt_47cbd117ffe2172b90dbe53c3f3b2f1c=1644892216,1646099503; SL_GWPT_Show_Hide_tmp=undefined; SL_G_WPT_TO=zh; SL_wptGlobTipTmp=undefined; Hm_lpvt_47cbd117ffe2172b90dbe53c3f3b2f1c=1646804937; pepToken=8c365488-ac71-4de6-acf4-43d4fe7eabef' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"654321","p":"456"}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:4100\n' + - ' at new RequestError (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:428:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-03-11 15:31:32.866 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:4100', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 4100 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://127.0.0.1:4100/project/login', - headers: { - host: '127.0.0.1:4100', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '" Not A;Brand";v="99", "Chromium";v="96", "Google Chrome";v="96"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh,zh-CN;q=0.9,en-US;q=0.8,en;q=0.7', - cookie: 'Hm_lvt_47cbd117ffe2172b90dbe53c3f3b2f1c=1644892216,1646099503; SL_GWPT_Show_Hide_tmp=undefined; SL_G_WPT_TO=zh; SL_wptGlobTipTmp=undefined; Hm_lpvt_47cbd117ffe2172b90dbe53c3f3b2f1c=1646804937; pepToken=8c365488-ac71-4de6-acf4-43d4fe7eabef' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"654321","p":"456"}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:4100\n' + - ' at new RequestError (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:428:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-03-11 15:32:47.799 - debug: [FS-LOGGER] Init. -2022-03-11 15:32:47.982 - info: [Router] Inject api: attachment/index -2022-03-11 15:39:07.350 - error: [FS-ERRHD] -{ - message: 'Error: connect ECONNREFUSED 127.0.0.1:14000', - name: 'RequestError', - cause: { - errno: 'ECONNREFUSED', - code: 'ECONNREFUSED', - syscall: 'connect', - address: '127.0.0.1', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://127.0.0.1:14000/enterprises/undefined/members?token=136621db-739e-4817-bbc8-1e48a047178e', - headers: { - host: '127.0.0.1:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not A;Brand";v="99", "Chromium";v="96", "Google Chrome";v="96"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/example/e1', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh,zh-CN;q=0.9,en-US;q=0.8,en;q=0.7', - cookie: 'Hm_lvt_47cbd117ffe2172b90dbe53c3f3b2f1c=1644892216,1646099503; SL_GWPT_Show_Hide_tmp=undefined; SL_G_WPT_TO=zh; SL_wptGlobTipTmp=undefined; Hm_lpvt_47cbd117ffe2172b90dbe53c3f3b2f1c=1646804937; pepToken=8c365488-ac71-4de6-acf4-43d4fe7eabef' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ECONNREFUSED 127.0.0.1:14000\n' + - ' at new RequestError (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (E:\\WorkSpace\\work\\FS-SmartEmergency\\trunk\\fs-anxin-cloud4.0-master\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:428:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-04-26 16:22:38.937 - debug: [FS-LOGGER] Init. -2022-04-26 16:22:38.994 - info: [Router] Inject api: attachment/index -2022-04-26 16:24:14.763 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://127.0.0.1:14000/login', - headers: { - host: '127.0.0.1:14000', - connection: 'keep-alive', - 'content-length': '55', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - 'content-type': 'application/json', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\智慧应急\\trunk\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\智慧应急\\trunk\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\智慧应急\\trunk\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\智慧应急\\trunk\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\智慧应急\\trunk\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-04-26 16:25:48.770 - debug: [FS-LOGGER] Init. -2022-04-26 16:25:48.822 - info: [Router] Inject api: attachment/index -2022-04-27 08:22:44.239 - debug: [FS-LOGGER] Init. -2022-04-27 08:22:44.315 - info: [Router] Inject api: attachment/index -2022-04-28 14:05:23.315 - debug: [FS-LOGGER] Init. -2022-04-28 14:05:23.386 - info: [Router] Inject api: attachment/index -2022-04-29 09:11:40.683 - debug: [FS-LOGGER] Init. -2022-04-29 09:11:40.748 - info: [Router] Inject api: attachment/index -2022-04-29 11:18:28.238 - debug: [FS-LOGGER] Init. -2022-04-29 11:18:28.589 - info: [Router] Inject api: attachment/index -2022-04-29 15:29:15.850 - debug: [FS-LOGGER] Init. -2022-04-29 15:29:15.905 - info: [Router] Inject api: attachment/index -2022-04-29 17:47:10.734 - debug: [FS-LOGGER] Init. -2022-04-29 17:47:11.075 - info: [Router] Inject api: attachment/index -2022-05-05 08:24:36.443 - debug: [FS-LOGGER] Init. -2022-05-05 08:24:36.516 - info: [Router] Inject api: attachment/index -2022-05-05 08:26:00.485 - debug: [FS-LOGGER] Init. -2022-05-05 08:26:00.535 - info: [Router] Inject api: attachment/index -2022-05-05 11:18:26.949 - debug: [FS-LOGGER] Init. -2022-05-05 11:18:26.999 - info: [Router] Inject api: attachment/index -2022-05-05 11:21:27.396 - debug: [FS-LOGGER] Init. -2022-05-05 11:21:27.445 - info: [Router] Inject api: attachment/index -2022-05-05 14:03:43.946 - debug: [FS-LOGGER] Init. -2022-05-05 14:03:44.000 - info: [Router] Inject api: attachment/index -2022-05-05 14:25:10.162 - debug: [FS-LOGGER] Init. -2022-05-05 14:25:10.211 - info: [Router] Inject api: attachment/index -2022-05-05 15:00:00.205 - debug: [FS-LOGGER] Init. -2022-05-05 15:00:00.257 - info: [Router] Inject api: attachment/index -2022-05-05 15:34:21.861 - debug: [FS-LOGGER] Init. -2022-05-05 15:34:22.269 - info: [Router] Inject api: attachment/index -2022-05-05 15:41:59.674 - debug: [FS-LOGGER] Init. -2022-05-05 15:41:59.728 - info: [Router] Inject api: attachment/index -2022-05-05 16:27:48.108 - debug: [FS-LOGGER] Init. -2022-05-05 16:27:48.161 - info: [Router] Inject api: attachment/index -2022-05-05 17:16:49.579 - debug: [FS-LOGGER] Init. -2022-05-05 17:16:49.631 - info: [Router] Inject api: attachment/index -2022-05-06 08:35:09.722 - debug: [FS-LOGGER] Init. -2022-05-06 08:35:09.792 - info: [Router] Inject api: attachment/index -2022-05-06 09:01:25.138 - debug: [FS-LOGGER] Init. -2022-05-06 09:01:25.188 - info: [Router] Inject api: attachment/index -2022-05-06 09:37:38.434 - debug: [FS-LOGGER] Init. -2022-05-06 09:37:38.489 - info: [Router] Inject api: attachment/index -2022-05-06 13:33:53.162 - debug: [FS-LOGGER] Init. -2022-05-06 13:33:53.219 - info: [Router] Inject api: attachment/index -<<<<<<< .mine2022-05-13 13:58:14.928 - debug: [FS-LOGGER] Init. -2022-05-13 13:58:14.991 - info: [Router] Inject api: attachment/index -2022-05-14 08:29:29.594 - debug: [FS-LOGGER] Init. -2022-05-14 08:29:29.674 - info: [Router] Inject api: attachment/index -2022-05-14 09:22:50.473 - debug: [FS-LOGGER] Init. -2022-05-14 09:22:50.524 - info: [Router] Inject api: attachment/index -2022-05-14 09:23:24.744 - debug: [FS-LOGGER] Init. -2022-05-14 09:23:24.796 - info: [Router] Inject api: attachment/index -2022-05-14 09:51:41.277 - debug: [FS-LOGGER] Init. -2022-05-14 09:51:41.353 - info: [Router] Inject api: attachment/index -2022-05-14 10:24:41.265 - debug: [FS-LOGGER] Init. -2022-05-14 10:24:41.338 - info: [Router] Inject api: attachment/index -2022-05-14 14:06:18.857 - debug: [FS-LOGGER] Init. -2022-05-14 14:06:18.911 - info: [Router] Inject api: attachment/index -2022-05-15 08:49:57.570 - debug: [FS-LOGGER] Init. -2022-05-15 08:49:57.646 - info: [Router] Inject api: attachment/index -2022-05-15 11:13:26.408 - debug: [FS-LOGGER] Init. -2022-05-15 11:13:26.463 - info: [Router] Inject api: attachment/index -2022-05-16 08:28:04.125 - debug: [FS-LOGGER] Init. -2022-05-16 08:28:04.201 - info: [Router] Inject api: attachment/index -2022-05-16 17:52:59.089 - debug: [FS-LOGGER] Init. -2022-05-16 17:52:59.158 - info: [Router] Inject api: attachment/index -=======2022-05-13 15:46:53.227 - debug: [FS-LOGGER] Init. -2022-05-13 15:46:53.689 - info: [Router] Inject api: attachment/index -2022-05-14 08:58:22.936 - debug: [FS-LOGGER] Init. -2022-05-14 08:58:23.401 - info: [Router] Inject api: attachment/index -2022-05-15 13:16:42.604 - debug: [FS-LOGGER] Init. -2022-05-15 13:16:42.972 - info: [Router] Inject api: attachment/index -2022-05-16 08:31:34.989 - debug: [FS-LOGGER] Init. -2022-05-16 08:31:35.060 - info: [Router] Inject api: attachment/index ->>>>>>> .theirs2022-05-17 09:54:54.160 - debug: [FS-LOGGER] Init. -2022-05-17 09:54:54.208 - info: [Router] Inject api: attachment/index -2022-05-17 11:40:21.594 - debug: [FS-LOGGER] Init. -2022-05-17 11:40:21.645 - info: [Router] Inject api: attachment/index -2022-05-17 14:11:48.280 - debug: [FS-LOGGER] Init. -2022-05-17 14:11:48.333 - info: [Router] Inject api: attachment/index -2022-05-17 14:15:25.955 - debug: [FS-LOGGER] Init. -2022-05-17 14:15:26.002 - info: [Router] Inject api: attachment/index -2022-05-17 14:38:52.872 - debug: [FS-LOGGER] Init. -2022-05-17 14:38:52.920 - info: [Router] Inject api: attachment/index -2022-05-17 14:53:55.485 - debug: [FS-LOGGER] Init. -2022-05-17 14:53:55.532 - info: [Router] Inject api: attachment/index -2022-05-17 15:33:04.384 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=f8c80199-4602-44e5-94ab-53eaef30a42d', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 15:33:04.388 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=f8c80199-4602-44e5-94ab-53eaef30a42d', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 15:33:04.391 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=f8c80199-4602-44e5-94ab-53eaef30a42d', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 15:33:04.392 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=f8c80199-4602-44e5-94ab-53eaef30a42d', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 15:33:04.393 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=f8c80199-4602-44e5-94ab-53eaef30a42d', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 15:33:04.395 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=f8c80199-4602-44e5-94ab-53eaef30a42d', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:06:14.007 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:06:14.009 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:06:14.012 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:07:58.429 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketOnEnd (node:_http_client:466:9)\n' + - ' at Socket.emit (node:events:538:35)\n' + - ' at endReadableNT (node:internal/streams/readable:1345:12)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:07:58.431 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketOnEnd (node:_http_client:466:9)\n' + - ' at Socket.emit (node:events:538:35)\n' + - ' at endReadableNT (node:internal/streams/readable:1345:12)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:07:58.432 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:07:58.433 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketOnEnd (node:_http_client:466:9)\n' + - ' at Socket.emit (node:events:538:35)\n' + - ' at endReadableNT (node:internal/streams/readable:1345:12)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:07:58.434 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:07:58.436 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.088 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.090 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.091 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.092 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.093 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.094 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.095 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.096 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.097 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.099 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.100 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.101 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.102 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.103 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.104 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.105 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.106 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:10:22.107 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.901 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.903 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.904 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.905 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.906 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.907 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.908 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.909 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.910 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.911 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.912 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.913 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.915 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.916 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.916 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.917 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.918 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.920 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.920 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.921 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.923 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.924 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.924 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.925 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.926 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.927 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:20:21.928 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:21:43.012 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:21:43.013 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:21:43.015 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.170:14000/daily/report/data/statistic?token=2cde2c86-170d-4a77-8061-b866b8ac3fe1', - headers: { - host: '10.8.30.170:14000', - connection: 'keep-alive', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/middleground', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (node:events:526:28)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\飞鸿哥项目\\新建文件夹\\应急项目副本\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (node:events:526:28)\n' + - ' at Socket.socketErrorListener (node:_http_client:442:9)\n' + - ' at Socket.emit (node:events:526:28)\n' + - ' at emitErrorNT (node:internal/streams/destroy:157:8)\n' + - ' at emitErrorCloseNT (node:internal/streams/destroy:122:3)\n' + - ' at processTicksAndRejections (node:internal/process/task_queues:83:21)' -} -2022-05-17 16:57:45.161 - debug: [FS-LOGGER] Init. -2022-05-17 16:57:45.214 - info: [Router] Inject api: attachment/index -2022-07-18 17:40:02.934 - debug: [FS-LOGGER] Init. -2022-07-18 17:40:02.984 - info: [Router] Inject api: attachment/index -2022-07-19 09:38:20.086 - debug: [FS-LOGGER] Init. -2022-07-19 09:38:20.998 - info: [Router] Inject api: attachment/index -<<<<<<< HEAD -2022-07-21 15:22:04.942 - debug: [FS-LOGGER] Init. -2022-07-21 15:22:05.542 - info: [Router] Inject api: attachment/index -2022-07-21 17:03:00.480 - debug: [FS-LOGGER] Init. -2022-07-21 17:03:01.177 - info: [Router] Inject api: attachment/index -2022-07-21 18:12:39.625 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.157:8439', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.157', - port: 8439 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.157:8439/enterprises/undefined/members?token=215ed57a-8244-4523-b2ed-5a6b12b51711', - headers: { - host: '10.8.30.157:8439', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.157:8439\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -======= -2022-07-20 19:15:55.678 - debug: [FS-LOGGER] Init. -2022-07-20 19:15:56.118 - info: [Router] Inject api: attachment/index -<<<<<<< Updated upstream ->>>>>>> 65cf2722eec21e1d07ce958f4298eec7ae620c85 -<<<<<<< HEAD -2022-07-25 16:13:26.719 - debug: [FS-LOGGER] Init. -2022-07-25 16:26:39.904 - error: [FS-ERRHD] -======= -======= -2022-07-23 15:27:04.168 - debug: [FS-LOGGER] Init. -2022-07-23 15:27:04.699 - info: [Router] Inject api: attachment/index -2022-07-23 16:53:59.811 - error: [FS-ERRHD] ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< HEAD - url: 'https://3024-117-90-36-177.jp.ngrok.io/build/road_state?token=677d4484-e448-4fa6-b944-3a19f5e4b62d', -======= - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=5daa3b44-d8d1-4902-a92d-1a4895094480&level=%E6%9D%91', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', -<<<<<<< HEAD - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '677d4484-e448-4fa6-b944-3a19f5e4b62d', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', -======= - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', -<<<<<<< HEAD - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + -<<<<<<< HEAD - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 16:26:58.908 - error: [FS-ERRHD] -======= - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 10:26:07.826 - error: [FS-ERRHD] ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< HEAD - url: 'https://3024-117-90-36-177.jp.ngrok.io/build/road_state?token=677d4484-e448-4fa6-b944-3a19f5e4b62d', -======= - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=5daa3b44-d8d1-4902-a92d-1a4895094480&level=%E5%8E%BF', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', -<<<<<<< HEAD - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '677d4484-e448-4fa6-b944-3a19f5e4b62d', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', -======= - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', -<<<<<<< HEAD - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' -======= - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + -<<<<<<< HEAD - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 17:10:33.214 - error: [FS-ERRHD] -======= - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 11:28:13.352 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=df45f1e7-883c-4a06-85aa-cf985043c25f&level=%E5%8E%BF', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 15:46:29.372 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=df45f1e7-883c-4a06-85aa-cf985043c25f', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'content-length': '1887', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'content-type': 'application/json', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'PUT', - body: '{"routeName":"袁渡-进贤文港","routeCode":"X943360121","sectionNo":"005","townshipCode":"360121200000","startingPlaceName":"桥","startStation":"1.849","categoryOfStartingPointAndDividingPoint":"非界点","stopPlaceName":"堤顶","categoryOfDeadCenterAndDividingPoint":"非界点","stopStation":"2.051","sectionType":"双向","serialNumberOfOriginalSection":"你换个","routeLevel":"不能同房","natureOfRoadSection":"正常路段","completionTime":"2003-01","reconstructionTime":"2018-12","natureOfConstruction":"重建","landforms":"平原","natureOfCharges":"非收费","numberOfCulverts":"0","technicalLevel":"三级公路","pavementType":"沥青混凝土","pavementWidth":"6.5","subgradeWidth":"7.5","laneCharacteristics":"双车道","whetherItIsOpenToTrafficInSunnyOrRainyDays":"是","designSpeedPerHour":"30","urbanManagementSectionOrNot":"否","managementAndMaintenanceUnit":"11101360121南昌市南昌县交通局","roadAdministrationUnit":"南昌县交通运输局","alimentation":"列养","sourceOfListedMaintenanceFunds":"燃油税","curingTime":"经常性","greeningMileage":"0.202","greeningMileaged":"0.202","plannedFundCategory":"其它","plannedYear":"2019","planDocumentNo":"赣路县字(2019)14号","planItemUniqueCode":"2018360121005","plannedProjectRouteCode":"X943360121","planProjectName":"黄马-桐源","plannedProjectType":"县道升级改造","completionStatus":"未完工","yearOfCompletion":"2020","reportingUnit":"361011000南昌市交通局","reasonForChange":"无变更","changeTime":"2020-11","whetherMaintenanceManagedHighway":"否","remarks":"2016路网调整","routeCodeOfLastYear":"X943360121","routeNameOfLastYear":"袁渡-进贤文港","startingStationOfLastYear":"1.849","lastYearsEndingPointStakeNumber":"2.051","graphicMileage":"0.202","chainageMileage":"0.202","districtcounty":"南昌县","locationCity":"南昌市","roadId":2800}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 15:52:40.728 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=df45f1e7-883c-4a06-85aa-cf985043c25f&level=%E5%8E%BF', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 16:01:11.229 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=df45f1e7-883c-4a06-85aa-cf985043c25f', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'content-length': '1621', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'content-type': 'application/json', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'PUT', - body: '{"categoryOfDeadCenterAndDividingPoint":"非界点","stopStation":"2.051","sectionType":"双向","serialNumberOfOriginalSection":"你和","natureOfRoadSection":"正常路段","completionTime":"2003-01","reconstructionTime":"2018-12","natureOfConstruction":"重建","landforms":"平原","natureOfCharges":"非收费","numberOfCulverts":"0","technicalLevel":"三级公路","pavementType":"沥青混凝土","pavementWidth":"6.5","subgradeWidth":"7.5","laneCharacteristics":"双车道","whetherItIsOpenToTrafficInSunnyOrRainyDays":"是","designSpeedPerHour":"30","urbanManagementSectionOrNot":"否","managementAndMaintenanceUnit":"11101360121南昌市南昌县交通局","roadAdministrationUnit":"南昌县交通运输局","alimentation":"列养","sourceOfListedMaintenanceFunds":"燃油税","curingTime":"经常性","greeningMileage":"0.202","greeningMileaged":"0.202","plannedFundCategory":"其它","plannedYear":"2019","planDocumentNo":"赣路县字(2019)14号","planItemUniqueCode":"2018360121005","plannedProjectRouteCode":"X943360121","planProjectName":"黄马-桐源","plannedProjectType":"县道升级改造","completionStatus":"未完工","yearOfCompletion":"2020","reportingUnit":"361011000南昌市交通局","reasonForChange":"无变更","changeTime":"2020-11","whetherMaintenanceManagedHighway":"否","remarks":"2016路网调整","routeCodeOfLastYear":"X943360121","routeNameOfLastYear":"袁渡-进贤文港","startingStationOfLastYear":"1.849","lastYearsEndingPointStakeNumber":"2.051","graphicMileage":"0.202","chainageMileage":"0.202","districtcounty":"南昌县","locationCity":"南昌市","roadId":2800}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 16:11:10.293 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/department?token=df45f1e7-883c-4a06-85aa-cf985043c25f', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 16:14:44.623 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=df45f1e7-883c-4a06-85aa-cf985043c25f&level=%E5%8E%BF', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 16:20:37.830 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/road?token=df45f1e7-883c-4a06-85aa-cf985043c25f', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'content-length': '1803', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'content-type': 'application/json', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'PUT', - body: '{"routeName":"袁渡-进贤文港草草草草","routeCode":"X943360121","sectionNo":"004","townshipCode":"360121200000","startingPlaceName":"桥口","startStation":"1.051","categoryOfStartingPointAndDividingPoint":"非界点","stopPlaceName":"桥","categoryOfDeadCenterAndDividingPoint":"非界点","stopStation":"1.849","sectionType":"双向","natureOfRoadSection":"正常路段","completionTime":"2019-11","natureOfConstruction":"新建","landforms":"微丘","natureOfCharges":"非收费","numberOfCulverts":"0","technicalLevel":"三级公路","pavementType":"沥青混凝土","pavementWidth":"6.5","subgradeWidth":"7.5","laneCharacteristics":"双车道","whetherItIsOpenToTrafficInSunnyOrRainyDays":"是","designSpeedPerHour":"30","urbanManagementSectionOrNot":"否","managementAndMaintenanceUnit":"11101360121南昌市南昌县交通局","roadAdministrationUnit":"南昌县交通运输局","alimentation":"列养","sourceOfListedMaintenanceFunds":"其他","curingTime":"经常性","greeningMileage":"0.798","greeningMileaged":"0.798","plannedFundCategory":"其它","plannedYear":"2019","planDocumentNo":"赣路县字(2019)14号","planItemUniqueCode":"2018360121005","plannedProjectRouteCode":"X943360121","planProjectName":"黄马-桐源","plannedProjectType":"县道升级改造","completionStatus":"未完工","yearOfCompletion":"2020","reportingUnit":"361011211南昌县交通局","reasonForChange":"无变更","changeTime":"2020-11","whetherMaintenanceManagedHighway":"否","remarks":"新增道路","routeCodeOfLastYear":"X943360121","routeNameOfLastYear":"袁渡-进贤文港","startingStationOfLastYear":"1.051","lastYearsEndingPointStakeNumber":"1.849","graphicMileage":"0.802","chainageMileage":"0.798","districtcounty":"南昌县","locationCity":"南昌市","level":"县","roadId":2799}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 17:13:48.396 - error: [FS-ERRHD] ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/login', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'content-length': '55', -<<<<<<< HEAD - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', -======= - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', -<<<<<<< HEAD - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' -======= - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + -<<<<<<< HEAD - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 19:33:14.728 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.177.60.68:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.177.60.68', - port: 443 -======= - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:458:9)\n' + - ' at TLSSocket.emit (events.js:326:22)\n' + - ' at endReadableNT (_stream_readable.js:1241:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 17:20:38.059 - debug: [FS-LOGGER] Init. -2022-07-25 17:20:38.539 - info: [Router] Inject api: attachment/index -2022-07-26 08:24:40.399 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, -<<<<<<< HEAD - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.60.68:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 19:44:17.724 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-25 21:31:50.491 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 09:31:23.413 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 09:45:24.340 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/build/road_state?token=5177b0f8-8693-42d0-bced-c9f82bc12417', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:03:06.926 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:13:08.793 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/build/road_state?token=5177b0f8-8693-42d0-bced-c9f82bc12417', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:22:55.765 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:28:54.441 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:31:44.233 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=5177b0f8-8693-42d0-bced-c9f82bc12417', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:05:17.376 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:25:47.595 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:26:54.234 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:31:38.399 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:32:47.830 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:32:53.702 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:33:31.989 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:34:30.724 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:37:40.347 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:37:56.314 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:39:01.155 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:45:51.476 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:46:42.295 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:46:49.635 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:49:05.976 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:49:59.409 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:50:02.336 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:50:44.803 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:50:55.510 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:51:02.542 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/conserve/statistic?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:51:38.453 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/conserve/statistic?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:52:12.135 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:52:30.917 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:52:51.557 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:55:53.353 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:56:21.605 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:57:51.983 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:57:59.909 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:58:07.737 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:58:39.343 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 15:59:44.352 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:00:13.758 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:00:29.556 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:02:49.458 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:03:11.150 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:03:55.054 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:06:27.365 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:06:57.285 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:10:37.727 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:12:12.006 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:13:19.972 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:17:03.477 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/conserve/statistic?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:17:23.022 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:19:46.467 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:21:04.386 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:23:37.276 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:24:34.917 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:25:28.568 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:25:53.881 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:27:36.001 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=5177b0f8-8693-42d0-bced-c9f82bc12417', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:27:53.545 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=a99f9435-5e72-447b-b3cd-1b9b654bc38c', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'a99f9435-5e72-447b-b3cd-1b9b654bc38c', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:28:00.553 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=5177b0f8-8693-42d0-bced-c9f82bc12417', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:28:23.515 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=5177b0f8-8693-42d0-bced-c9f82bc12417', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:28:46.863 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=5177b0f8-8693-42d0-bced-c9f82bc12417', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '5177b0f8-8693-42d0-bced-c9f82bc12417', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:40:55.481 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:58:09.728 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:58:50.269 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:59:09.075 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:59:38.062 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:59:56.784 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:59:58.544 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:00:19.330 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:00:20.986 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:00:23.433 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:00:39.942 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:00:39.946 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:00:41.684 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:00:41.685 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:01:00.953 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:03:05.868 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:05:04.867 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:05:26.206 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:05:36.978 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:06:00.888 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:06:10.106 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:06:15.381 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:06:16.545 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:06:39.726 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:06:48.057 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:07:26.215 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:08:00.257 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:09:26.353 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:09:52.959 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:10:11.506 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:10:25.777 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:13:41.089 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:14:18.023 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:14:46.577 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:14:59.928 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:15:57.071 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:15:59.349 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/conserve/statistic?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:17:19.019 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:17:25.934 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:17:30.086 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:18:01.836 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:18:07.556 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:18:41.436 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:18:54.267 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:19:09.210 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:22:58.898 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:23:14.668 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:25:18.074 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:28:20.415 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:36:52.345 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:45:59.315 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 17:49:54.833 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:04:39.532 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:04:40.707 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:04:40.709 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:22:09.664 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:28:27.382 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:28:27.388 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:28:27.389 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:28:27.393 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:30:02.537 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:30:17.508 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:31:24.966 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:38:09.356 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:40:43.928 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:40:43.962 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:40:43.964 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:44:00.820 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:44:01.004 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:45:32.505 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:45:32.510 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:46:12.458 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:46:12.467 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:46:12.470 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 18:58:58.706 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:04:12.892 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:04:23.109 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:04:23.112 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:05:25.304 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:05:38.379 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:10:03.259 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:14:35.006 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:17:34.476 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:21:01.435 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:28:11.552 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:29:18.090 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:29:18.094 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:29:18.095 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:29:18.096 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:29:18.097 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:29:18.102 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:29:18.103 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:29:18.105 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:30:14.980 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:30:14.984 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:32:33.799 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:35:26.957 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:38:37.150 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:42:43.011 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:44:42.076 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:44:43.835 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:44:43.837 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:44:43.928 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:44:43.930 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:45:20.980 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:45:21.134 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:46:00.276 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:56:04.523 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:56:14.460 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:57:23.977 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:21.654 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:22.025 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:25.060 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:32.062 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:32.631 - error: [FS-ERRHD] -{ - message: 'Error: Client network socket disconnected before secure TLS connection was established', - name: 'RequestError', - cause: { - code: 'ECONNRESET', - path: null, - host: '3024-117-90-36-177.jp.ngrok.io', - port: 443, - localAddress: undefined - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: Client network socket disconnected before secure TLS connection was established\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:34.124 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:39.189 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:40.516 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.177.0.235:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.177.0.235', - port: 443 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.0.235:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:43.081 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.177.0.235:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.177.0.235', - port: 443 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.0.235:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:53.110 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.177.0.235:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.177.0.235', - port: 443 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.0.235:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:57.096 - error: [FS-ERRHD] -{ - message: 'Error: Client network socket disconnected before secure TLS connection was established', - name: 'RequestError', - cause: { - code: 'ECONNRESET', - path: null, - host: '3024-117-90-36-177.jp.ngrok.io', - port: 443, - localAddress: undefined - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: Client network socket disconnected before secure TLS connection was established\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:59.070 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:58:59.675 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:59:00.238 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.177.53.48:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.177.53.48', - port: 443 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.53.48:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:59:18.733 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.177.53.48:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.177.53.48', - port: 443 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.53.48:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:59:18.735 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.177.53.48:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.177.53.48', - port: 443 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.53.48:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:59:24.071 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:59:24.830 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:59:26.949 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/conserve/statistic?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 19:59:32.149 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:08:54.658 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:13:54.930 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:15:40.794 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:17:26.854 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:23:21.899 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:26:55.570 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:28:43.543 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:28:44.700 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:28:44.704 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:28:44.707 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:31:33.345 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:32:12.538 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:33:07.854 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:34:11.067 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:34:12.705 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:34:12.706 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:35:20.149 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:35:35.882 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:36:12.902 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:37:54.674 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/transportation/statistic?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:39:51.831 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:41:18.189 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:41:55.589 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/build/road_state?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:43:58.004 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:44:09.699 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:44:25.521 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:44:59.643 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:46:12.533 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:46:12.537 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:46:15.642 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:46:51.662 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:47:34.958 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:48:57.031 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:48:59.933 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:49:29.672 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:49:29.687 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:52:41.535 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:56:42.627 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 20:57:44.721 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:02:33.291 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:07:13.391 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:07:15.767 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:07:15.769 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:08:04.134 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:14:19.167 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:16:32.432 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:32:21.786 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:32:41.558 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:33:36.605 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:42:10.394 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:45:22.643 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:46:23.136 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:48:34.964 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:50:02.409 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:50:51.822 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:50:53.115 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:53:27.667 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:55:28.463 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:55:37.153 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:57:25.485 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 21:57:36.148 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:00:43.357 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:00:50.962 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:02:19.314 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:02:53.027 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:03:15.054 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:03:23.393 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:03:27.269 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:04:27.760 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:04:29.375 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:04:35.922 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:04:40.266 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:04:49.383 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:08:06.879 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:10:26.322 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:10:51.475 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:11:40.375 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:11:57.822 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:13:02.792 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:15:37.545 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:15:53.416 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:16:00.837 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:16:44.550 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:19:17.435 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:19:24.642 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.176.183.3:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.176.183.3', - port: 443 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.176.183.3:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:19:37.245 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:19:38.483 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.176.183.3:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.176.183.3', - port: 443 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.176.183.3:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:19:45.708 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 18.177.0.235:443', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '18.177.0.235', - port: 443 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 18.177.0.235:443\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:19:54.873 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:20:05.128 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketErrorListener (_http_client.js:461:9)\n' + - ' at TLSSocket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 22:20:17.088 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 08:52:53.296 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 08:55:02.416 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 09:02:58.014 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 09:16:10.592 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 09:22:21.685 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 10:17:42.286 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'https://3024-117-90-36-177.jp.ngrok.io/manage/overspeed?token=0f8c7207-f216-41c9-b5f6-091e22fae4ad', - headers: { - host: '3024-117-90-36-177.jp.ngrok.io', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '0f8c7207-f216-41c9-b5f6-091e22fae4ad', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at TLSSocket.socketOnEnd (_http_client.js:485:9)\n' + - ' at TLSSocket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 10:43:25.730 - debug: [FS-LOGGER] Init. -2022-07-27 10:58:49.630 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=8b9717fe-80d5-48a4-a364-d78045b3d249', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '8b9717fe-80d5-48a4-a364-d78045b3d249', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', -======= - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', -<<<<<<< HEAD - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' -======= - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< HEAD - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketOnEnd (_http_client.js:485:9)\n' + - ' at Socket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 10:58:49.634 - error: [FS-ERRHD] -{ - message: 'Error: socket hang up', - name: 'RequestError', - cause: { code: 'ECONNRESET' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=8b9717fe-80d5-48a4-a364-d78045b3d249', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '8b9717fe-80d5-48a4-a364-d78045b3d249', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:24:50.233 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/department?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', -<<<<<<< HEAD - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' -======= - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< HEAD - stack: 'RequestError: Error: socket hang up\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketOnEnd (_http_client.js:485:9)\n' + - ' at Socket.emit (events.js:327:22)\n' + - ' at endReadableNT (_stream_readable.js:1218:12)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 11:03:27.808 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:24:50.640 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', -<<<<<<< HEAD - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' -======= - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< HEAD - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 11:03:27.813 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:31:48.455 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/department?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', -<<<<<<< HEAD - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' -======= - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, -<<<<<<< HEAD - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -======= - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:31:48.847 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:33:03.454 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/vehicle?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/operational', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:33:05.740 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/vehicle/specific?token=3de82f98-253d-4ebd-a444-eff69920459b&%E5%87%BA%E7%A7%9F%E8%BD%A6', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/operational', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:33:06.536 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/vehicle/specific?token=3de82f98-253d-4ebd-a444-eff69920459b&%E5%8D%B1%E8%B4%A7', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/operational', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:33:07.314 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/vehicle/business?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/operational', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:33:11.486 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/department?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/operational', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:33:11.816 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/vehicle?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/operational', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:33:57.281 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:34:32.742 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/department?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 08:34:33.166 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} ->>>>>>> Stashed changes -<<<<<<< Updated upstream ->>>>>>> 385f017aeac33adc39a31e75faf6254a1a881d16 -======= -2022-07-26 10:36:17.862 - debug: [FS-LOGGER] Init. -2022-07-26 14:17:07.892 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/department?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/operational', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:17:08.280 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/vehicle?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/operational', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:17:10.564 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/vehicle/specific?token=3de82f98-253d-4ebd-a444-eff69920459b&%E5%87%BA%E7%A7%9F%E8%BD%A6', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/operational', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:17:12.386 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/bridge?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/bridge', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:17:33.973 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/department?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/bridge', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:17:34.427 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/bridge?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/bridge', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:17:37.083 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:19:12.817 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/department?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 14:19:13.254 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: 'ETIMEDOUT', - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:47:41.611 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: 'ECONNRESET', code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b&level=%E5%8E%BF', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-26 16:47:41.616 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: 'ECONNRESET', code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/road?token=3de82f98-253d-4ebd-a444-eff69920459b', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'content-length': '83', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '3de82f98-253d-4ebd-a444-eff69920459b', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/fillion/transportation', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9' - }, - encoding: null, - followRedirect: true, - method: 'PUT', - body: '{"routeName":"1","routeCode":"1111","sectionNo":"4444","level":"县","roadId":3275}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:314:20)\n' + - ' at Request.onRequestError (C:\\Users\\Administrator\\Desktop\\项目\\sihao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:314:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:427:9)\n' + - ' at Socket.emit (events.js:314:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:92:8)\n' + - ' at emitErrorAndCloseNT (internal/streams/destroy.js:60:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 11:00:11.991 - debug: [FS-LOGGER] Init. ->>>>>>> Stashed changes -2022-07-27 17:24:17.967 - debug: [FS-LOGGER] Init. -2022-07-27 22:47:22.449 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 22:47:22.453 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 22:47:22.455 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 22:47:22.456 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 22:47:22.458 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 22:47:43.524 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 22:47:43.525 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 22:47:43.526 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'e8a9e988-7aca-45a6-b1aa-4980d5a2c2b0', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-27 22:47:43.527 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:32:58.890 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:32:58.905 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:32:58.906 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:32:58.908 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/conserve/statistic?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:32:58.910 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:32:58.911 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:33:19.939 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:33:19.956 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=94f7e5d7-5f8f-49f4-b185-e1982a118b03', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '94f7e5d7-5f8f-49f4-b185-e1982a118b03', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:33:32.652 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/department', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - expires: '-1', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'sec-ch-ua-platform': '"Windows"', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:33:44.815 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/login', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:35:54.958 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/login', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'content-length': '55', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'content-type': 'application/json', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - origin: 'http://localhost:5000', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/signin', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'POST', - body: '{"username":"SuperAdmin","password":"123456","p":"456"}', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:37:50.933 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:37:50.950 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:37:50.951 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:37:50.952 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:37:50.953 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:37:50.954 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/conserve/statistic?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:38:11.981 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:38:11.997 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:38:33.040 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:38:33.041 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=c0808b9c-3c28-432e-a150-0b03b478e6ba', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '".Not/A)Brand";v="99", "Google Chrome";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'c0808b9c-3c28-432e-a150-0b03b478e6ba', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,ja;q=0.8' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:43:20.072 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/conserve/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:43:20.075 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:43:20.077 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:43:20.078 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:43:20.079 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:43:20.084 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:43:41.125 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:43:41.127 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:44:02.188 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:44:02.189 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:14.544 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/conserve/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:14.548 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:14.550 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:14.551 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:14.556 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:14.558 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:35.592 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:35.595 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:53.227 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:53.228 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:53.230 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:53.231 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/conserve/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:53.236 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 08:47:53.238 - error: [FS-ERRHD] -{ - message: 'Error: connect ETIMEDOUT 10.8.30.7:14000', - name: 'RequestError', - cause: { - errno: -4039, - code: 'ETIMEDOUT', - syscall: 'connect', - address: '10.8.30.7', - port: 14000 - }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: connect ETIMEDOUT 10.8.30.7:14000\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 09:34:57.419 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 09:34:57.422 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -<<<<<<< Updated upstream -2022-07-28 10:08:50.687 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:08:50.691 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:09:35.473 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:09:35.475 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:09:35.476 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:10:48.698 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:10:48.699 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:10:48.700 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:11:07.267 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:11:07.269 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:11:07.270 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:36:40.596 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:36:40.600 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:36:40.602 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:36:40.603 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:40:48.574 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:40:48.579 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:40:48.580 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:40:48.582 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:40:48.584 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:40:48.585 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:56:46.234 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:56:46.240 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:56:46.242 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:56:46.244 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:56:46.246 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 10:56:46.248 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:02:59.817 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:02:59.822 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:02:59.823 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:02:59.825 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:02:59.826 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:02:59.828 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:11:00.606 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:11:00.611 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:11:00.613 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:11:00.614 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:11:00.616 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:15:52.145 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:15:52.151 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:15:52.153 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:15:52.154 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:15:52.158 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:15:52.160 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:26:55.855 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:26:55.859 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:26:55.861 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:29:52.092 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:29:52.096 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:29:52.098 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:29:52.099 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:29:52.101 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:30:08.516 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:30:08.518 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:30:08.520 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:30:08.523 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:30:08.525 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:30:08.526 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:31:01.445 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:31:01.450 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:31:01.451 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:31:01.453 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:31:01.455 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:34:02.569 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:34:02.574 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:34:02.576 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:34:02.578 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:34:02.580 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:41:20.529 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:41:20.534 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:41:20.536 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:41:20.539 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:41:20.542 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/transportation/statistic?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:41:20.545 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:43:02.192 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:43:02.196 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:43:02.198 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:43:02.199 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:43:02.201 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:43:02.202 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:49:12.192 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:49:12.196 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:49:12.199 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:49:12.201 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:50:45.276 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:50:45.278 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:50:45.279 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:51:43.844 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:51:43.846 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:51:43.848 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:52:14.520 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:52:14.522 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 11:52:14.523 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:13:13.418 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:13:13.422 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:13:13.424 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:19:57.528 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:19:57.532 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:19:57.534 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:24:25.429 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:24:25.431 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:24:25.433 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:25:22.552 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:25:22.554 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:32:05.461 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:32:05.464 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:32:05.465 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:32:05.467 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:34:55.768 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:34:55.772 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:34:55.775 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=00b5de97-c62c-4001-b753-8b048f24e52a', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: '00b5de97-c62c-4001-b753-8b048f24e52a', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:34:55.777 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:34:55.778 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:39:08.095 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:39:08.101 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 13:39:08.103 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/manage/overspeed?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 15:10:44.368 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/data/god_trans?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 15:10:44.372 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/data/god_trans?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 15:10:44.375 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 15:10:44.377 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 15:10:44.378 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/conserve/statistic?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 15:10:44.380 - error: [FS-ERRHD] -{ - message: 'Error: read ECONNRESET', - name: 'RequestError', - cause: { errno: -4077, code: 'ECONNRESET', syscall: 'read' }, - error: { '$ref': '$["cause"]' }, - options: { - jar: false, - url: 'http://10.8.30.7:14000/build/road_state?token=d1f95b32-7f4d-4187-a499-10ad9ae33c99', - headers: { - host: '10.8.30.7:14000', - connection: 'keep-alive', - 'sec-ch-ua': '" Not;A Brand";v="99", "Microsoft Edge";v="103", "Chromium";v="103"', - 'sec-ch-ua-mobile': '?0', - 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71', - 'cache-control': 'no-cache,no-store,must-revalidate,max-age=-1,private', - 'x-requested-with': 'XMLHttpRequest', - token: 'd1f95b32-7f4d-4187-a499-10ad9ae33c99', - 'sec-ch-ua-platform': '"Windows"', - expires: '-1', - accept: '*/*', - 'sec-fetch-site': 'same-origin', - 'sec-fetch-mode': 'cors', - 'sec-fetch-dest': 'empty', - referer: 'http://localhost:5000/quanju', - 'accept-encoding': 'gzip, deflate, br', - 'accept-language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6' - }, - encoding: null, - followRedirect: true, - method: 'GET', - body: '[object Object]', - simple: false, - resolveWithFullResponse: true, - callback: [Function: RP$callback], - transform: undefined, - transform2xxOnly: false - }, - response: undefined, - stack: 'RequestError: Error: read ECONNRESET\n' + - ' at new RequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\errors.js:14:15)\n' + - ' at Request.plumbing.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:87:29)\n' + - ' at Request.RP$callback [as _callback] (F:\\4hao\\Highways4Good\\web\\node_modules\\request-promise-core\\lib\\plumbing.js:46:31)\n' + - ' at self.callback (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:185:22)\n' + - ' at Request.emit (events.js:315:20)\n' + - ' at Request.onRequestError (F:\\4hao\\Highways4Good\\web\\node_modules\\request\\request.js:877:8)\n' + - ' at ClientRequest.emit (events.js:315:20)\n' + - ' at Socket.socketErrorListener (_http_client.js:461:9)\n' + - ' at Socket.emit (events.js:315:20)\n' + - ' at emitErrorNT (internal/streams/destroy.js:96:8)\n' + - ' at emitErrorCloseNT (internal/streams/destroy.js:68:3)\n' + - ' at processTicksAndRejections (internal/process/task_queues.js:84:21)' -} -2022-07-28 16:51:10.270 - debug: [FS-LOGGER] Init. -2022-07-28 16:51:11.180 - info: [Router] Inject api: attachment/index -======= -2022-07-28 15:21:26.802 - debug: [FS-LOGGER] Init. -2022-07-28 15:21:27.251 - info: [Router] Inject api: attachment/index -2022-07-28 17:47:48.855 - debug: [FS-LOGGER] Init. -2022-07-28 17:47:49.287 - info: [Router] Inject api: attachment/index ->>>>>>> Stashed changes +2022-07-28 22:42:53.030 - debug: [FS-LOGGER] Init. +2022-07-28 22:42:53.107 - info: [Router] Inject api: attachment/index +2022-07-28 22:49:11.218 - debug: [FS-LOGGER] Init. +2022-07-28 22:49:11.297 - info: [Router] Inject api: attachment/index +2022-07-28 22:54:17.432 - debug: [FS-LOGGER] Init. +2022-07-28 22:54:17.511 - info: [Router] Inject api: attachment/index +2022-07-28 22:55:15.428 - debug: [FS-LOGGER] Init. +2022-07-28 22:55:15.513 - info: [Router] Inject api: attachment/index diff --git a/web/package-lock.json b/web/package-lock.json index 25c2bba8..31e24a83 100644 --- a/web/package-lock.json +++ b/web/package-lock.json @@ -324,7 +324,7 @@ "@antv/g-svg": { "version": "0.5.6", "resolved": "http://npm.anxinyun.cn/@antv%2fg-svg/-/g-svg-0.5.6.tgz", - "integrity": "sha512-Xve1EUGk4HMbl2nq4ozR4QLh6GyoZ8Xw/+9kHYI4B5P2lIUQU95MuRsaLFfW5NNpZDx85ZeH97tqEmC9L96E7A==", + "integrity": "sha1-cLL6mAxDGzmtPFtLU+NqHWCVfWU=", "requires": { "@antv/g-base": "^0.5.3", "@antv/g-math": "^0.1.6", @@ -1921,7 +1921,7 @@ }, "@peace/utils": { "version": "0.0.51", - "resolved": "http://npm.anxinyun.cn/@peace%2futils/-/utils-0.0.51.tgz", + "resolved": "http://npm.anxinyun.cn:443/@peace%2futils/-/utils-0.0.51.tgz", "integrity": "sha512-+HeDYNCf4Cid2nWEIQxED2avueBgXL4AgY7SVngubfCS6qI2TKjyPuTrtDGHTvojuLQe5BlEiKMxIuiAMQmTag==", "requires": { "immutable": "^4.0.0-rc.12", @@ -4203,7 +4203,7 @@ "connect-history-api-fallback": { "version": "1.6.0", "resolved": "http://npm.anxinyun.cn/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", - "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==" + "integrity": "sha1-izIIk1kwjRERFdgcrT/Oq4iPl7w=" }, "connected-react-router": { "version": "6.9.3", @@ -4625,7 +4625,7 @@ "define-property": { "version": "2.0.2", "resolved": "http://npm.anxinyun.cn/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "integrity": "sha1-1Flono1lS6d+AqgX+HENcCyxbp0=", "requires": { "is-descriptor": "^1.0.2", "isobject": "^3.0.1" @@ -6178,7 +6178,7 @@ "he": { "version": "1.2.0", "resolved": "http://npm.anxinyun.cn/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "integrity": "sha1-hK5l+n6vsWX922FWauFLrwVmTw8=", "dev": true }, "history": { @@ -6924,7 +6924,7 @@ "js-tokens": { "version": "4.0.0", "resolved": "http://npm.anxinyun.cn/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + "integrity": "sha1-GSA/tZmR35jjoocFDUZHzerzJJk=" }, "jsbn": { "version": "0.1.1", @@ -7286,7 +7286,7 @@ "koa-static": { "version": "1.5.3", "resolved": "http://npm.anxinyun.cn/koa-static/-/koa-static-1.5.3.tgz", - "integrity": "sha512-FmfSFJOrtWGZ/Ae5Q7xeM+ck1IdofNEvIQhdPLvGHyTjilhYmFGoyRN1+BAbTknWnDoRRyHsGGq0FMRDTcCb1w==", + "integrity": "sha1-29IUbu5xeA3/0xLyPMSnYui839I=", "requires": { "debug": "^3.2.5", "koa-send": "~2.0.1" @@ -9335,7 +9335,7 @@ }, "react-quill": { "version": "1.3.5", - "resolved": "http://npm.anxinyun.cn/react-quill/-/react-quill-1.3.5.tgz", + "resolved": "http://npm.anxinyun.cn:443/react-quill/-/react-quill-1.3.5.tgz", "integrity": "sha1-jErXWdoDNlsXx5xsUq+pdyJZhE4=", "dev": true, "requires": { @@ -10518,7 +10518,7 @@ "source-map-resolve": { "version": "0.5.3", "resolved": "http://npm.anxinyun.cn/source-map-resolve/-/source-map-resolve-0.5.3.tgz", - "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "integrity": "sha1-GQhmvs51U+H48mei7oLGBrVQmho=", "requires": { "atob": "^2.1.2", "decode-uri-component": "^0.2.0", @@ -11101,7 +11101,7 @@ "type-is": { "version": "1.6.18", "resolved": "http://npm.anxinyun.cn/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "integrity": "sha1-TlUs0F3wlGfcvE73Od6J8s83wTE=", "requires": { "media-typer": "0.3.0", "mime-types": "~2.1.24" @@ -11341,7 +11341,7 @@ "use": { "version": "3.1.1", "resolved": "http://npm.anxinyun.cn/use/-/use-3.1.1.tgz", - "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==" + "integrity": "sha1-1QyMrHmhn7wg8pEfVuuXP04QBw8=" }, "use-json-comparison": { "version": "1.0.6", diff --git a/web/package.json b/web/package.json index 3f139646..b8aaf86a 100644 --- a/web/package.json +++ b/web/package.json @@ -6,7 +6,7 @@ "scripts": { "test": "mocha", "start": "cross-env NODE_ENV=development npm run start-params", - "start-params": "node server -p 5000 -u http://10.8.30.7:14000 --qndmn http://rfkimpwbb.hn-bkt.clouddn.com", + "start-params": "node server -p 5000 -u http://localhost:4000 --qndmn http://rfkimpwbb.hn-bkt.clouddn.com", "deploy": "export NODE_ENV=production&&npm run color && npm run build && node server", "build-dev": "export NODE_ENV=development&&webpack --config webpack.config.js", "build": "export NODE_ENV=production&&webpack --config webpack.config.prod.js",