Skip to content

Commit 0ee3a1e

Browse files
authored
fix: Remove misleading HTTP prefix from gRPC endpoints in logs and doc (feast-dev#5280)
fix: Remove misleading HTTP prefix from gRPC endpoints in logs and documentation Signed-off-by: joeyutong <[email protected]>
1 parent 8e06dfe commit 0ee3a1e

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

docs/reference/registries/remote.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The `path` parameter is a URL with a port (default is 6570) used by the client t
1313
```yaml
1414
registry:
1515
registry_type: remote
16-
path: http://localhost:6570
16+
path: localhost:6570
1717
```
1818
{% endcode %}
1919

sdk/python/feast/registry_server.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -808,9 +808,7 @@ def start_server(
808808
server.add_insecure_port(f"[::]:{port}")
809809
server.start()
810810
if wait_for_termination:
811-
logger.info(
812-
f"Grpc server started at {'https' if tls_cert_path and tls_key_path else 'http'}://localhost:{port}"
813-
)
811+
logger.info(f"Grpc server started at localhost:{port}")
814812
server.wait_for_termination()
815813
else:
816814
return server

0 commit comments

Comments
 (0)