| 691 | |
| 692 | |
| 693 | void ReplicaProcess::learned(const UPID& from, const Action& action) |
| 694 | { |
| 695 | LOG(INFO) << "Replica received learned notice for position " |
| 696 | << action.position() << " from " << from; |
| 697 | |
| 698 | CHECK(action.learned()); |
| 699 | persist(action); |
| 700 | } |
| 701 | |
| 702 | |
| 703 | bool ReplicaProcess::persist(const Action& action) |