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.1](https://gitlab.kodesumber.com/komodo/komodo-sdk/compare/v1.46.0...v1.46.1) | |
8 | + | |
9 | +- Check healthy core on first pull [`1311c73`](https://gitlab.kodesumber.com/komodo/komodo-sdk/commit/1311c73ae399ebc678f220d43174f7d9cd63498c) | |
10 | + | |
7 | 11 | #### [v1.46.0](https://gitlab.kodesumber.com/komodo/komodo-sdk/compare/v1.45.22...v1.46.0) |
8 | 12 | |
13 | +> 25 August 2025 | |
14 | + | |
9 | 15 | - Migrate gateway/pull from request to axios [`d375b0e`](https://gitlab.kodesumber.com/komodo/komodo-sdk/commit/d375b0ee45c49f7da03bba41ab7966e2d497d238) |
10 | 16 | |
11 | 17 | #### [v1.45.22](https://gitlab.kodesumber.com/komodo/komodo-sdk/compare/v1.45.21...v1.45.22) |
gateway/pull.js
... | ... | @@ -393,7 +393,7 @@ const pullTask = async () => { |
393 | 393 | |
394 | 394 | forwardCoreTaskToPartner(body, startTime, xid); |
395 | 395 | } catch (e) { |
396 | - if (matrix.core_is_healthy) { | |
396 | + if (matrix.core_is_healthy || matrix.core_is_healthy !== false) { | |
397 | 397 | logger.warn(`${MODULE_NAME} FB762F4A: Error pulling task from CORE`, { |
398 | 398 | xid, |
399 | 399 | eCode: e.code, |
package-lock.json
1 | 1 | { |
2 | 2 | "name": "komodo-sdk", |
3 | - "version": "1.46.0", | |
3 | + "version": "1.46.1", | |
4 | 4 | "lockfileVersion": 2, |
5 | 5 | "requires": true, |
6 | 6 | "packages": { |
7 | 7 | "": { |
8 | 8 | "name": "komodo-sdk", |
9 | - "version": "1.46.0", | |
9 | + "version": "1.46.1", | |
10 | 10 | "license": "ISC", |
11 | 11 | "dependencies": { |
12 | 12 | "array-unique": "^0.3.2", |