From 2cb17742645b0be6b1969bcd2fb7f3c9f0169a6b Mon Sep 17 00:00:00 2001 From: Pavel Tisnovsky Date: Mon, 20 Jan 2025 15:45:23 +0100 Subject: [PATCH] Bug fix: proper OLSConfig equality checks Signed-off-by: Pavel Tisnovsky --- ols/app/models/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ols/app/models/config.py b/ols/app/models/config.py index 62d94dac..3fec65b4 100644 --- a/ols/app/models/config.py +++ b/ols/app/models/config.py @@ -936,6 +936,7 @@ def __eq__(self, other: object) -> bool: and self.tls_config == other.tls_config and self.certificate_directory == other.certificate_directory and self.system_prompt == other.system_prompt + and self.system_prompt_path == other.system_prompt_path and self.tls_security_profile == other.tls_security_profile and self.authentication_config == other.authentication_config and self.expire_llm_is_ready_persistent_state