From 8ee94d72adf9f6839a426df89fa786b527a3db80 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Wed, 17 Dec 2025 15:41:12 +0000 Subject: [PATCH] reverse everything and save properly --- backend/src/dashboard/services/hubspot_client_async.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/dashboard/services/hubspot_client_async.py b/backend/src/dashboard/services/hubspot_client_async.py index 7f7f3f4..0eb4144 100644 --- a/backend/src/dashboard/services/hubspot_client_async.py +++ b/backend/src/dashboard/services/hubspot_client_async.py @@ -28,7 +28,7 @@ class HubSpotClientAsync: async with self.API_CONCURRENCY: try: result = await asyncio.to_thread(func, *args, **kwargs) - await asyncio.sleep(self.RATE_LIMIT_DELAY) + # await asyncio.sleep(self.RATE_LIMIT_DELAY) return result except Exception as e: if "429" in str(e):