chore: improve max outgoing connections log (#1129)

This commit is contained in:
gabrielmer 2024-06-20 11:51:13 +02:00 committed by GitHub
parent 0be7144e34
commit 0f27f896ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -331,7 +331,7 @@ proc getOutgoingSlot*(
c.outSema.forceAcquire()
elif not c.outSema.tryAcquire():
trace "Too many outgoing connections!",
count = c.outSema.count, max = c.outSema.size
available = c.outSema.count, max = c.outSema.size
raise newTooManyConnectionsError()
return ConnectionSlot(connManager: c, direction: Out)