Skip to content

Commit

Permalink
Update token cache to use human-readable URL
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Jun 25, 2024
1 parent 6f70d8d commit 5563476
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neon_utils/hana_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def set_default_backend_url(url: Optional[str] = None):


def _get_client_config_path(url: str):
url_key = hash(url)
url_key = url.split('/')[2]
return join(xdg_cache_home(), "neon", f"hana_token_{url_key}.json")


Expand Down

0 comments on commit 5563476

Please sign in to comment.