Skip to content

Commit

Permalink
Error log on failed to post
Browse files Browse the repository at this point in the history
  • Loading branch information
sockless-coding committed Jun 30, 2024
1 parent 2eea668 commit 8848a54
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@ async def execute_post(self, url, json_data, function_description, expected_stat
)
except (aiohttp.client_exceptions.ClientError,
aiohttp.http_exceptions.HttpProcessingError,
aiohttp.web_exceptions.HTTPError) as ex:
aiohttp.web_exceptions.HTTPError) as ex:
_LOGGER.error("POST url: %s, data: %s", url, json_data)
raise exceptions.RequestError(ex)


Expand Down

0 comments on commit 8848a54

Please sign in to comment.