Skip to content

Commit

Permalink
Fix rotations fetch error handling (#3500)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrobbins authored Nov 14, 2023
1 parent b1f72b8 commit f764685
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internals/approval_defs.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def auto_assign_reviewer(gate):

response = requests.get(gate_def.rotation_url)
if response.status_code != 200:
logging.error('Could not fetch %r', url)
logging.error('Could not fetch %r', gate_def.rotation_url)
logging.error('Got response %s', repr(response)[:settings.MAX_LOG_LINE])
return

Expand Down

0 comments on commit f764685

Please sign in to comment.