Skip to content

Commit

Permalink
Incorporating code review comments.
Browse files Browse the repository at this point in the history
renamed SSL to TLS.
some places kept both intentionally.

Signed-off-by: lrangine <19699092+lokeshrangineni@users.noreply.github.com>
  • Loading branch information
lokeshrangineni committed Oct 31, 2024
1 parent ed2809c commit 6b44f2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdk/python/feast/infra/online_stores/remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 6b44f2e

Please sign in to comment.