Skip to content

Commit

Permalink
Merge d979294 into cf7ebb8
Browse files Browse the repository at this point in the history
  • Loading branch information
rohanpm committed Sep 6, 2020
2 parents cf7ebb8 + d979294 commit 909e473
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exodus_gw/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def call_context(
except Exception:
summary = "Invalid %s header in request" % header
LOG.exception(summary)
raise HTTPException(400, detail=summary)
raise HTTPException(400, detail=summary) from None


def caller_roles(context: CallContext = Depends(call_context)) -> Set[str]:
Expand Down

0 comments on commit 909e473

Please sign in to comment.