From 86dec79c1bde301a77301b560fc728feb400dee9 Mon Sep 17 00:00:00 2001 From: Konstantin Osipov Date: Tue, 9 Feb 2021 17:07:25 +0300 Subject: [PATCH] raft: rename progress.hh to tracker.hh class tracker is the main class of this module. --- configure.py | 2 +- raft/fsm.hh | 2 +- raft/{progress.cc => tracker.cc} | 2 +- raft/{progress.hh => tracker.hh} | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename raft/{progress.cc => tracker.cc} (99%) rename raft/{progress.hh => tracker.hh} (100%) diff --git a/configure.py b/configure.py index 6643b14ffa..57b5e4e3fe 100755 --- a/configure.py +++ b/configure.py @@ -545,7 +545,7 @@ scylla_raft_core = [ 'raft/raft.cc', 'raft/server.cc', 'raft/fsm.cc', - 'raft/progress.cc', + 'raft/tracker.cc', 'raft/log.cc', ] diff --git a/raft/fsm.hh b/raft/fsm.hh index 8875d24641..8a7a888842 100644 --- a/raft/fsm.hh +++ b/raft/fsm.hh @@ -22,7 +22,7 @@ #include #include "raft.hh" -#include "progress.hh" +#include "tracker.hh" #include "log.hh" namespace raft { diff --git a/raft/progress.cc b/raft/tracker.cc similarity index 99% rename from raft/progress.cc rename to raft/tracker.cc index 27f61b0973..e80a833ae3 100644 --- a/raft/progress.cc +++ b/raft/tracker.cc @@ -18,7 +18,7 @@ * You should have received a copy of the GNU General Public License * along with Scylla. If not, see . */ -#include "progress.hh" +#include "tracker.hh" #include #include diff --git a/raft/progress.hh b/raft/tracker.hh similarity index 100% rename from raft/progress.hh rename to raft/tracker.hh