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.45.18](https://gitlab.kodesumber.com/komodo/komodo-sdk/compare/v1.45.17...v1.45.18) | |
8 | + | |
9 | +- Try not specifying pid on calling systemd-notify [`6fe3d1b`](https://gitlab.kodesumber.com/komodo/komodo-sdk/commit/6fe3d1b79b676f9e22667715bc8ccf71ac38bda5) | |
10 | + | |
7 | 11 | #### [v1.45.17](https://gitlab.kodesumber.com/komodo/komodo-sdk/compare/v1.45.16...v1.45.17) |
8 | 12 | |
13 | +> 19 June 2024 | |
14 | + | |
9 | 15 | - Remove node: prefix on require for compability reason [`bf6e46e`](https://gitlab.kodesumber.com/komodo/komodo-sdk/commit/bf6e46ee17f25fc32e5bdad303bac2fab2c2d85f) |
10 | 16 | |
11 | 17 | #### [v1.45.16](https://gitlab.kodesumber.com/komodo/komodo-sdk/compare/v1.45.15...v1.45.16) |
package-lock.json
1 | 1 | { |
2 | 2 | "name": "komodo-sdk", |
3 | - "version": "1.45.17", | |
3 | + "version": "1.45.18", | |
4 | 4 | "lockfileVersion": 2, |
5 | 5 | "requires": true, |
6 | 6 | "packages": { |
7 | 7 | "": { |
8 | 8 | "name": "komodo-sdk", |
9 | - "version": "1.45.17", | |
9 | + "version": "1.45.18", | |
10 | 10 | "license": "ISC", |
11 | 11 | "dependencies": { |
12 | 12 | "array-unique": "^0.3.2", |
package.json
sd-notify.js
... | ... | @@ -20,7 +20,7 @@ const notifyUseSystemdNotify = async (statusMsg) => { |
20 | 20 | await notify({ |
21 | 21 | ready: true, |
22 | 22 | status, |
23 | - pid: process.pid, | |
23 | + // pid: process.pid, | |
24 | 24 | }); |
25 | 25 | |
26 | 26 | logger.info(`${MODULE_NAME} B905A857: Systemd ready notification has been sent using systemd-notify package`); |