sao: remove hostname/port config, fix allnet uri

This commit is contained in:
2023-11-09 11:55:49 -05:00
parent 580a9faae8
commit 8560c05928
3 changed files with 10 additions and 18 deletions

View File

@ -5,12 +5,6 @@ class SaoServerConfig:
def __init__(self, parent_config: "SaoConfig"):
self.__config = parent_config
@property
def hostname(self) -> str:
return CoreConfig.get_config_field(
self.__config, "sao", "server", "hostname", default="localhost"
)
@property
def enable(self) -> bool:
return CoreConfig.get_config_field(
@ -25,12 +19,6 @@ class SaoServerConfig:
)
)
@property
def port(self) -> int:
return CoreConfig.get_config_field(
self.__config, "sao", "server", "port", default=9000
)
@property
def auto_register(self) -> bool:
"""