Skip to content

Commit

Permalink
Added logging line for ci error (#6685)
Browse files Browse the repository at this point in the history
Overriding CI since it's down.
  • Loading branch information
johnc1231 committed Jul 18, 2019
1 parent b90de83 commit 5674d2f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ci/ci/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,8 @@ async def post_github_status(self, gh_client, gh_status):
data=data)
except gidgethub.HTTPException as e:
log.info(f'{self.short_str()}: notify github of build state failed due to exception: {e}')
except aiohttp.client_exceptions.ClientResponseError as e:
log.error(f'{self.short_str()}: Unexpected exception in post to github: {e}')

async def _update_github_review_state(self, gh):
latest_state_by_login = {}
Expand Down

0 comments on commit 5674d2f

Please sign in to comment.