[issue] Replication does NOT replicate changed comments on history changeset
How to reproduce:
Take 1:
1. Setup replication between 2 repo(A and B) and synchronize.
2. Change the comment of one changeset in A.
Expected behavior:
* A and B should be considered different for now and allow user to synchronize them through replication again.
Current behavior:
* The replication view shows A and B is identical and nothing to synchronize.
Take 2:
* Manually push/pull between A and B
Expected behavior:
* The comment in B should be updated.
Current behavior:
* The comment in B still remains the old one.
While I understand it is not the most intuitive behavior, it works the way we expect it to do.
Let me explain: only new changesets are replicated, so whatever you changed on an older changeset that doesn’t need to be replicated, will be ignored. This is like this due to performance issues, otherwise every single replica would require to walk back all the changesets.