From 45256903b5b2fd73b9b43f1e45cfae2b8e61097f Mon Sep 17 00:00:00 2001 From: James Hush Date: Mon, 20 Oct 2025 17:03:31 +0800 Subject: [PATCH] Remove log --- create_daily_room.py | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/create_daily_room.py b/create_daily_room.py index 19cfc11a0..cdbd3dc46 100755 --- a/create_daily_room.py +++ b/create_daily_room.py @@ -119,16 +119,7 @@ async def create_daily_room( except RetryError as e: # All retries exhausted last_exception = e.last_attempt.exception() - if isinstance(last_exception, HTTPStatusError): - if last_exception.response.status_code == 429: - logger.error(f"Rate limit exceeded after {max_retries} retries") - else: - logger.error( - f"HTTP {last_exception.response.status_code} error creating room: " - f"{last_exception.response.text}" - ) - else: - logger.exception(f"Failed to create room after {max_retries} retries: {last_exception}") + logger.exception(f"Failed to create room after {max_retries} retries: {last_exception}") return None except Exception as e: