diff options
author | Valery Piashchynski <[email protected]> | 2021-10-11 18:35:00 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-10-11 19:00:25 +0300 |
commit | 85b9bbe25b4c382707f111f07b0990152cf36339 (patch) | |
tree | c5995a6fceddaa1f1a5b6f32b0a52bee98b06ebb | |
parent | 7e650eb122ce74df43aa77ad1cb877858bfa416c (diff) |
Update CHANGELOGv2.5.0-beta.3
Signed-off-by: Valery Piashchynski <[email protected]>
-rw-r--r-- | CHANGELOG.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 46de41cc..a2e71cc5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -123,11 +123,25 @@ server: ``` The script should start a worker as the last command. For the `pipes`, scripts should not contain programs, which can close `stdin`, `stdout` or `stderr`. +- ✏️ Service plugin now supports env variables passing to the script/executable/binary/any: +```yaml +service: + some_service_1: + command: "php test_files/loop_env.php" + process_num: 1 + exec_timeout: 5s # s,m,h (seconds, minutes, hours) + remain_after_exit: true + env: <----------------- NEW + foo: "BAR" + restart_sec: 1 +``` + ## 🩹 Fixes: - 🐛 Fix: local and global configuration parsing. - 🐛 Fix: bug with the `boltdb-jobs` connection left open after RPC close command. - 🐛 Fix: close `beanstalk` connection and release associated resources after pipeline stopped. +- 🐛 Fix: grpc plugin fails to handle requests after calling `reset`. ## 📦 Packages: |