From: wumingqiao Date: Mon, 6 Nov 2017 12:41:23 +0000 (+0800) Subject: PG: fix name of WaitActingChange X-Git-Tag: v13.0.1~273^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F18768%2Fhead;p=ceph.git PG: fix name of WaitActingChange the parent state of WaitActingChange is Primary, not Peering. Signed-off-by: wumingqiao --- diff --git a/src/osd/PG.cc b/src/osd/PG.cc index da1404200d0bc..005333530f06c 100644 --- a/src/osd/PG.cc +++ b/src/osd/PG.cc @@ -8018,7 +8018,7 @@ void PG::RecoveryState::GetLog::exit() /*------WaitActingChange--------*/ PG::RecoveryState::WaitActingChange::WaitActingChange(my_context ctx) : my_base(ctx), - NamedState(context< RecoveryMachine >().pg, "Started/Primary/Peering/WaitActingChange") + NamedState(context< RecoveryMachine >().pg, "Started/Primary/WaitActingChange") { context< RecoveryMachine >().log_enter(state_name); }