diff --git a/app/cron_options_bubble.py b/app/cron_options_bubble.py index 6cb51b6..3e5ff88 100755 --- a/app/cron_options_bubble.py +++ b/app/cron_options_bubble.py @@ -229,7 +229,7 @@ async def main(): print(len(total_symbols)) - chunk_size = len(total_symbols) // 2000 # Divide the list into N chunks + chunk_size = 1 #len(total_symbols) // 2000 # Divide the list into N chunks chunks = [total_symbols[i:i + chunk_size] for i in range(0, len(total_symbols), chunk_size)] #chunks = [['NVDA']] loop = asyncio.get_running_loop()