fix bwcli commands when using Linux integration

This commit is contained in:
florian 2022-06-26 12:16:40 +02:00
parent 0f2388b1f2
commit e55928a37b
No known key found for this signature in database
GPG Key ID: 3D80806F12602A7C
2 changed files with 3 additions and 1 deletions

View File

@ -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

View File

@ -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