class EventMachine::Synchrony::ConnectionPool

def release(fiber)

immediately try to run acquire on the pool)
resume any other pending connections (which will
Release connection assigned to the supplied fiber and
def release(fiber)
  @available.push(@reserved.delete(fiber.object_id))
  if pending = @pending.shift
    pending.resume
  end
end