From d8db5b2128642dba662c0dd428216a79bc3ca903 Mon Sep 17 00:00:00 2001 From: Radoslaw Zarzynski Date: Mon, 11 May 2020 22:15:38 +0200 Subject: [PATCH] crimson/osd: short-circuit budget_available(). Signed-off-by: Radoslaw Zarzynski --- src/crimson/osd/pg_recovery.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/crimson/osd/pg_recovery.cc b/src/crimson/osd/pg_recovery.cc index d9328c5a4ca..ed770018395 100644 --- a/src/crimson/osd/pg_recovery.cc +++ b/src/crimson/osd/pg_recovery.cc @@ -472,7 +472,8 @@ void PGRecovery::update_peers_last_backfill( bool PGRecovery::budget_available() const { - ceph_abort_msg("Not implemented"); + // TODO: the limits! + return true; } void PGRecovery::backfilled() -- 2.39.5