From e55928a37b917c741bdfe25a86d7aeeb81e03ef0 Mon Sep 17 00:00:00 2001 From: florian Date: Sun, 26 Jun 2022 12:16:40 +0200 Subject: [PATCH] fix bwcli commands when using Linux integration --- CHANGELOG.md | 2 ++ cli/CLI.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 93ec5911..e52f66c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## v1.4.2 - +- Fix bwcli unban command when using Linux integration +- Fix permissions check when filename has a space - Fix static config (SERVER_NAME not empty) support when using autoconf/swarm/k8s - Fix config files overwrite when using Docker autoconf - Add log_default() plugin hook diff --git a/cli/CLI.py b/cli/CLI.py index b3d02a1f..456b3e7b 100644 --- a/cli/CLI.py +++ b/cli/CLI.py @@ -42,7 +42,7 @@ class CLI(ApiCaller) : def __get_apis(self) : # Docker case - if self.__integration == "docker" : + if self.__integration == "docker" or self.__integration == "linux" : return [API("http://127.0.0.1:" + self.__variables["API_HTTP_PORT"], host=self.__variables["API_SERVER_NAME"])] # Autoconf case