From efc3ff62b52dcb5e88d9361f2af259e932a5273c Mon Sep 17 00:00:00 2001 From: grossmj Date: Thu, 26 Dec 2024 16:36:52 +0700 Subject: [PATCH] Fix config parsing when configuring server protocol. Fixes https://github.com/GNS3/gns3-gui/issues/3681 --- gns3server/schemas/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3server/schemas/config.py b/gns3server/schemas/config.py index f6e1daab9..34ea90690 100644 --- a/gns3server/schemas/config.py +++ b/gns3server/schemas/config.py @@ -147,7 +147,7 @@ class ServerSettings(BaseModel): allow_remote_console: bool = False enable_builtin_templates: bool = True install_builtin_appliances: bool = True - model_config = ConfigDict(validate_assignment=True, str_strip_whitespace=True, use_enum_values=True) + model_config = ConfigDict(validate_assignment=True, str_strip_whitespace=True) @field_validator("additional_images_paths", mode="before") @classmethod