Compare View
Commits (2)
Changes
Showing 4 changed files Side-by-side Diff
CHANGELOG.md
| ... | ... | @@ -4,8 +4,14 @@ All notable changes to this project will be documented in this file. Dates are d |
| 4 | 4 | |
| 5 | 5 | Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). |
| 6 | 6 | |
| 7 | +#### [v1.46.10-beta.0](https://gitlab.kodesumber.com/komodo/komodo-sdk/compare/v1.46.9...v1.46.10-beta.0) | |
| 8 | + | |
| 9 | +- Log report params [`50f832f`](https://gitlab.kodesumber.com/komodo/komodo-sdk/commit/50f832f806066d3228eef691fa6f04712c18b616) | |
| 10 | + | |
| 7 | 11 | #### [v1.46.9](https://gitlab.kodesumber.com/komodo/komodo-sdk/compare/v1.46.8...v1.46.9) |
| 8 | 12 | |
| 13 | +> 9 September 2025 | |
| 14 | + | |
| 9 | 15 | - Log on not listening advice [`1255e00`](https://gitlab.kodesumber.com/komodo/komodo-sdk/commit/1255e0071d1c879d362dfd5ef328954ba8fe54de) |
| 10 | 16 | |
| 11 | 17 | #### [v1.46.8](https://gitlab.kodesumber.com/komodo/komodo-sdk/compare/v1.46.7...v1.46.8) |
gateway/pull.js
| ... | ... | @@ -185,7 +185,7 @@ const report = async (data, xidFromCaller) => { |
| 185 | 185 | trxId = data.trx_id; |
| 186 | 186 | } |
| 187 | 187 | |
| 188 | - const params = new URLSearchParams({ | |
| 188 | + const paramsObj = { | |
| 189 | 189 | trx_id: trxId, |
| 190 | 190 | rc: replaceRc(data.rc), |
| 191 | 191 | rc_from_handler: data.rc_from_handler, |
| ... | ... | @@ -203,11 +203,14 @@ const report = async (data, xidFromCaller) => { |
| 203 | 203 | || (data.misc && data.misc.task && typeof data.misc.task.remote_product === 'string' && data.misc.task.remote_product) |
| 204 | 204 | || null, |
| 205 | 205 | detail: data.detail || '', |
| 206 | - }); | |
| 206 | + }; | |
| 207 | + | |
| 208 | + const params = new URLSearchParams(paramsObj); | |
| 207 | 209 | |
| 208 | 210 | logger.verbose(`${MODULE_NAME} 2110168C: Sending report to CORE`, { |
| 209 | 211 | xid, |
| 210 | 212 | corePullReportUrl, |
| 213 | + reportParams: paramsObj, | |
| 211 | 214 | }); |
| 212 | 215 | |
| 213 | 216 | try { |
package-lock.json
| 1 | 1 | { |
| 2 | 2 | "name": "komodo-sdk", |
| 3 | - "version": "1.46.9", | |
| 3 | + "version": "1.46.10-beta.0", | |
| 4 | 4 | "lockfileVersion": 2, |
| 5 | 5 | "requires": true, |
| 6 | 6 | "packages": { |
| 7 | 7 | "": { |
| 8 | 8 | "name": "komodo-sdk", |
| 9 | - "version": "1.46.9", | |
| 9 | + "version": "1.46.10-beta.0", | |
| 10 | 10 | "license": "ISC", |
| 11 | 11 | "dependencies": { |
| 12 | 12 | "array-unique": "^0.3.2", |