Skip to content

Commit

Permalink
[COST-5796] correctly log exception
Browse files Browse the repository at this point in the history
  • Loading branch information
djnakabaale committed Jan 15, 2025
1 parent aabdbae commit 80e699d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions koku/koku/middleware.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,8 +269,8 @@ def create_customer(account, org_id, request_method):
msg="IntegrityError when creating customer. Attempting to fetch existing record",
account=account,
org_id=org_id,
exc_info=err,
)
),
exc_info=err,
)
customer = Customer.objects.filter(org_id=org_id).get()

Expand Down

0 comments on commit 80e699d

Please sign in to comment.