Compare View

switch
from
...
to
 
Commits (2)

Changes

Showing 4 changed files Side-by-side Diff

... ... @@ -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 +#### [v0.14.13](https://gitlab.kodesumber.com/komodo/komodo-center-messaging/compare/v0.14.12...v0.14.13)
  8 +
  9 +- Respon "OK" jika msg kosong pada config.do_not_reply_warning_on_empty_message [`6400063`](https://gitlab.kodesumber.com/komodo/komodo-center-messaging/commit/640006352a87c35c9f0601252fec79c966fac281)
  10 +
7 11 #### [v0.14.12](https://gitlab.kodesumber.com/komodo/komodo-center-messaging/compare/v0.14.11...v0.14.12)
8 12  
  13 +> 4 October 2021
  14 +
9 15 - Log all request [`fded55b`](https://gitlab.kodesumber.com/komodo/komodo-center-messaging/commit/fded55b393e7ae91abd80b782d697396316219a5)
10 16  
11 17 #### [v0.14.11](https://gitlab.kodesumber.com/komodo/komodo-center-messaging/compare/v0.14.10...v0.14.11)
lib/http-listener.js
... ... @@ -72,7 +72,7 @@ function mainHandler(req, res) {
72 72 });
73 73  
74 74 if (config.do_not_reply_warning_on_empty_message) {
75   - res.end('');
  75 + res.end('OK');
76 76 } else {
77 77 res.end(`ERROR. Undefined parameter: msg. XID: ${xid}`);
78 78 }
1 1 {
2 2 "name": "komodo-center-messaging",
3   - "version": "0.14.12",
  3 + "version": "0.14.13",
4 4 "lockfileVersion": 2,
5 5 "requires": true,
6 6 "packages": {
7 7 "": {
8 8 "name": "komodo-center-messaging",
9   - "version": "0.14.12",
  9 + "version": "0.14.13",
10 10 "license": "ISC",
11 11 "dependencies": {
12 12 "auto-changelog": "^2.3.0",
1 1 {
2 2 "name": "komodo-center-messaging",
3   - "version": "0.14.12",
  3 + "version": "0.14.13",
4 4 "description": "Komodo Common Messaging Center",
5 5 "main": "index.js",
6 6 "scripts": {