Make breakout logic after draining N clients more clear

This commit is contained in:
James Allen 2016-10-24 16:54:56 +01:00
parent 7107d9adcd
commit 6fa2a81baf

View file

@ -19,7 +19,8 @@ module.exports =
logger.log {client_id: client.id}, "Asking client to reconnect gracefully"
client.emit "reconnectGracefully"
drainedCount++
if drainedCount == N
haveDrainedNClients = (drainedCount == N)
if haveDrainedNClients
break
if drainedCount < N
logger.log "All clients have been told to reconnectGracefully"