diff --git a/sdk/python/feast/infra/online_stores/remote.py b/sdk/python/feast/infra/online_stores/remote.py index efee13ef2e..8cc75ade44 100644 --- a/sdk/python/feast/infra/online_stores/remote.py +++ b/sdk/python/feast/infra/online_stores/remote.py @@ -42,8 +42,8 @@ class RemoteOnlineStoreConfig(FeastConfigBaseModel): If type is 'remote', then this is a URL for registry server """ cert: StrictStr = "" - """ str: Path to the public certificate when the online server starts in SSL mode. This may be needed if the online server started with a self-signed certificate, typically this file ends with `*.crt`, `*.cer`, or `*.pem`. - If type is 'remote', then this configuration is needed to connect to remote online server in SSL mode. """ + """ str: Path to the public certificate when the online server starts in TLS(SSL) mode. This may be needed if the online server started with a self-signed certificate, typically this file ends with `*.crt`, `*.cer`, or `*.pem`. + If type is 'remote', then this configuration is needed to connect to remote online server in TLS mode. """ class RemoteOnlineStore(OnlineStore):