In paxos algorithm,there is a description in wiki:
Phase 2a: Accept Request
If a Proposer receives enough promises from a Quorum of Acceptors, it needs to set a value to its proposal. If any Acceptors had previously accepted any proposal, then they'll have sent their values to the Proposer, who now must set the value of its proposal to the value associated with the highest proposal number reported by the Acceptors. If none of the Acceptors had accepted a proposal up to this point, then the Proposer may choose any value for its proposal.[17] The Proposer sends an Accept Request message to a Quorum of Acceptors with the chosen value for its proposal.
Let's say the proposer sends out Propose(4) to five acceptors and receives back Ack(abc, 2), Ack(abc, 2), and Ack(xyz, 3) it must send Accept(xyz, 4).
My question is :
If the proposer last must send Accept(xyz,4), then when the proposer use its own value to send accept request eg. Accept(qwe,n)?
What does the acceptor which sends Ack(xyz,3) do when it sees the new accept and why?
Thanks