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):