Skip to content

Commit

Permalink
Allow 100 connects at once
Browse files Browse the repository at this point in the history
  • Loading branch information
4Kaylum committed Jan 18, 2024
1 parent 374840b commit 0afeb9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion novus/api/gateway/gateway.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ async def connect(
# Make some semaphores so we can control which shards connect
# simultaneously
identify_semaphore = LoggingSemaphore(max_concurrency)
connect_semaphore = LoggingSemaphore(max_concurrency)
connect_semaphore = LoggingSemaphore(100)

# Create shard objects
shard_ids = shard_ids or list(range(shard_count))
Expand Down

0 comments on commit 0afeb9f

Please sign in to comment.