Skip to content

Commit

Permalink
Update indexd.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Avantol13 authored Dec 19, 2023
1 parent d6f91c9 commit b16a9f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fence/blueprints/data/indexd.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,10 +199,10 @@ def _log_signed_url_data_info(indexed_file, user_sub, client_id, requested_proto


def _get_client_id():
client_id = ""
client_id = "Unknown Client"

try:
client_id = current_token.get("azp") or ""
client_id = current_token.get("azp") or "Unknown Client"
except Exception as exc:
pass

Expand Down

0 comments on commit b16a9f5

Please sign in to comment.