fix bwcli commands when using Linux integration
This commit is contained in:
parent
0f2388b1f2
commit
e55928a37b
@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
## v1.4.2 -
|
## 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 static config (SERVER_NAME not empty) support when using autoconf/swarm/k8s
|
||||||
- Fix config files overwrite when using Docker autoconf
|
- Fix config files overwrite when using Docker autoconf
|
||||||
- Add log_default() plugin hook
|
- Add log_default() plugin hook
|
||||||
|
|||||||
@ -42,7 +42,7 @@ class CLI(ApiCaller) :
|
|||||||
|
|
||||||
def __get_apis(self) :
|
def __get_apis(self) :
|
||||||
# Docker case
|
# 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"])]
|
return [API("http://127.0.0.1:" + self.__variables["API_HTTP_PORT"], host=self.__variables["API_SERVER_NAME"])]
|
||||||
|
|
||||||
# Autoconf case
|
# Autoconf case
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user