Skip to content

Commit

Permalink
Fix config parsing when configuring server protocol. Fixes GNS3/gns3-…
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Dec 26, 2024
1 parent a521e61 commit efc3ff6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gns3server/schemas/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit efc3ff6

Please sign in to comment.