From afffd345bca210058cfc4b26edd3c1812763f2fb Mon Sep 17 00:00:00 2001 From: yihong Date: Wed, 11 Dec 2024 09:35:25 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20can=20not=20start=20local=20by=20REMOTE?= =?UTF-8?q?=5FSETTINGS=5FSOURCE=5FNAME=20change=20it=20to=20=E2=80=A6=20(#?= =?UTF-8?q?11535)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: yihong0618 --- api/configs/remote_settings_sources/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/configs/remote_settings_sources/__init__.py b/api/configs/remote_settings_sources/__init__.py index e31e25a10..4f3878d13 100644 --- a/api/configs/remote_settings_sources/__init__.py +++ b/api/configs/remote_settings_sources/__init__.py @@ -8,9 +8,9 @@ from .enums import RemoteSettingsSourceName class RemoteSettingsSourceConfig(ApolloSettingsSourceInfo): - REMOTE_SETTINGS_SOURCE_NAME: Optional[RemoteSettingsSourceName] = Field( + REMOTE_SETTINGS_SOURCE_NAME: RemoteSettingsSourceName | str = Field( description="name of remote config source", - default=None, + default="", )