Autotonf now update the instances too

This commit is contained in:
TheophileDiot 2022-11-18 17:50:21 +01:00
parent e56f96d04b
commit 3ed3fbe991

View file

@ -77,6 +77,11 @@ class Config(ConfigCaller):
)
sleep(5)
# update instances in database
ret = self._db.update_instances(self.__instances)
if ret:
self.__logger.error(f"Failed to update instances: {ret}")
# save config to database
ret = self._db.save_config(self.__config, "autoconf")
if ret: