We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e06dfe commit 0ee3a1eCopy full SHA for 0ee3a1e
docs/reference/registries/remote.md
@@ -13,7 +13,7 @@ The `path` parameter is a URL with a port (default is 6570) used by the client t
13
```yaml
14
registry:
15
registry_type: remote
16
- path: http://localhost:6570
+ path: localhost:6570
17
```
18
{% endcode %}
19
sdk/python/feast/registry_server.py
@@ -808,9 +808,7 @@ def start_server(
808
server.add_insecure_port(f"[::]:{port}")
809
server.start()
810
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
- )
+ logger.info(f"Grpc server started at localhost:{port}")
814
server.wait_for_termination()
815
else:
816
return server
0 commit comments