Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mostafa committed Dec 31, 2022
1 parent 06e54b6 commit c9353d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions network/proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ func (pr *ProxyImpl) Connect(gconn gnet.Conn) *gerr.GatewayDError {
pr.logger.Debug().Fields(
map[string]interface{}{
"function": "proxy.connect",
"count": pr.availableConnections.Size(),
"count": pr.busyConnections.Size(),
},
).Msg("Busy client connections")

Expand Down Expand Up @@ -171,7 +171,7 @@ func (pr *ProxyImpl) Disconnect(gconn gnet.Conn) *gerr.GatewayDError {
pr.logger.Debug().Fields(
map[string]interface{}{
"function": "proxy.disconnect",
"count": pr.availableConnections.Size(),
"count": pr.busyConnections.Size(),
},
).Msg("Busy client connections")

Expand Down

0 comments on commit c9353d4

Please sign in to comment.