We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 470f6a8 commit 96ece0fCopy full SHA for 96ece0f
sdk/python/feast/ui_server.py
@@ -77,7 +77,7 @@ def read_registry():
77
# For all other paths (such as paths that would otherwise be handled by react router), pass to React
78
@app.api_route("/p/{path_name:path}", methods=["GET"])
79
def catch_all():
80
- filename = ui_dir + "index.html"
+ filename = ui_dir.joinpath("index.html")
81
82
with open(filename) as f:
83
content = f.read()
0 commit comments