raft: rename progress.hh to tracker.hh

class tracker is the main class of this module.
This commit is contained in:
Konstantin Osipov
2021-02-09 17:07:25 +03:00
parent 41387225c3
commit 86dec79c1b
4 changed files with 3 additions and 3 deletions

View File

@@ -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',
]

View File

@@ -22,7 +22,7 @@
#include <seastar/core/condition-variable.hh>
#include "raft.hh"
#include "progress.hh"
#include "tracker.hh"
#include "log.hh"
namespace raft {

View File

@@ -18,7 +18,7 @@
* You should have received a copy of the GNU General Public License
* along with Scylla. If not, see <http://www.gnu.org/licenses/>.
*/
#include "progress.hh"
#include "tracker.hh"
#include <seastar/core/coroutine.hh>
#include <seastar/core/on_internal_error.hh>