diff --git a/yapapi/rest/market.py b/yapapi/rest/market.py index cb80be488..ff1dc8f83 100644 --- a/yapapi/rest/market.py +++ b/yapapi/rest/market.py @@ -69,6 +69,9 @@ async def confirm(self) -> bool: try: await self._api.wait_for_approval(self._id, timeout=15, _request_timeout=16) return True + except asyncio.TimeoutError: + logger.debug("waitForApproval(%s): client-side timeout", self._id, exc_info=True) + return False except ApiException: logger.debug("waitForApproval(%s) raised ApiException", self._id, exc_info=True) return False