Valery V. Vorotyntsev 3098bc8593
Fix quorum formula in consensus.mdx (#8166)
[Add & Remove Servers](https://learn.hashicorp.com/consul/day-2-operations/servers)
guide uses `(N/2)+1` quorum formula.  So does the
[Raft implementation](5927dcda05/raft.go (L909)).

Consensus Protocol document uses `(n+1)/2` formula.
This formula is not only different, it conflicts with the
[Deployment Table](https://www.consul.io/docs/internals/consensus.html#deployment_table)
in the same document; e.g., (6+1)/2 = 3, not 4.

Replace `(n+1)/2` with `(N/2)+1` in Consensus Protocol document.
2020-06-24 14:23:36 +02:00
..
2020-04-28 12:53:19 -04:00
2020-06-18 20:02:21 -05:00
2020-06-17 10:21:33 -04:00
2020-05-21 14:50:45 -04:00
2020-06-06 15:45:29 -04:00
2020-05-21 14:50:45 -04:00
2020-05-21 14:50:45 -04:00
2020-04-28 12:53:26 -04:00
2020-05-21 14:50:45 -04:00
2020-05-13 23:44:22 -07:00
2020-05-21 14:50:45 -04:00