autoconf - fix overwrite configs file when using Docker autoconf

This commit is contained in:
bunkerity 2022-06-22 09:34:18 +02:00
parent 3c417d2ff0
commit c563731e86
2 changed files with 6 additions and 5 deletions

View File

@ -131,6 +131,7 @@ class Config(ApiCaller, ConfigCaller) :
self._set_apis(self.__get_apis())
# write configs
if configs != None :
ret = self.__write_configs()
if not ret :
success = False

View File

@ -43,7 +43,7 @@ class DockerController(Controller) :
raise("get_configs is not supported with DockerController")
def apply_config(self) :
return self._config.apply(self._instances, self._services, configs=self._configs)
return self._config.apply(self._instances, self._services)
def process_events(self) :
for event in self.__client.events(decode=True, filters={"type": "container"}) :