From: Radoslaw Zarzynski Date: Mon, 11 May 2020 20:15:38 +0000 (+0200) Subject: crimson/osd: short-circuit budget_available(). X-Git-Tag: v16.1.0~1720^2~9 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d8db5b2128642dba662c0dd428216a79bc3ca903;p=ceph.git crimson/osd: short-circuit budget_available(). Signed-off-by: Radoslaw Zarzynski --- diff --git a/src/crimson/osd/pg_recovery.cc b/src/crimson/osd/pg_recovery.cc index d9328c5a4ca6..ed7700183954 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()