Skip to content

Commit

Permalink
ensure url ends in slash
Browse files Browse the repository at this point in the history
  • Loading branch information
stikkireddy committed Mar 21, 2024
1 parent 47823d1 commit fe0699f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dbtunnel/arize_phoenix_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

def get_arize_projects_url(url: str):
if url.endswith("/"):
return f"{url}projects"
return f"{url}/projects"
return f"{url}projects/"
return f"{url}/projects/"


class ArizePhoenixUITunnel(DbTunnel):
Expand Down

0 comments on commit fe0699f

Please sign in to comment.