From: Samuel Just Date: Thu, 9 May 2019 03:39:14 +0000 (-0700) Subject: PeeringState::ActivateCommitted: intialize epoch X-Git-Tag: v15.1.0~2702^2~10 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=e41e201a0da077e4ae4d7d4849da5b897827e5e4;p=ceph.git PeeringState::ActivateCommitted: intialize epoch Fixes: https://tracker.ceph.com/issues/39636 Signed-off-by: Samuel Just --- diff --git a/src/osd/PeeringState.h b/src/osd/PeeringState.h index ee6e5918e36e..415e2b7435b5 100644 --- a/src/osd/PeeringState.h +++ b/src/osd/PeeringState.h @@ -341,6 +341,7 @@ public: epoch_t activation_epoch; explicit ActivateCommitted(epoch_t e, epoch_t ae) : boost::statechart::event< ActivateCommitted >(), + epoch(e), activation_epoch(ae) {} void print(std::ostream *out) const { *out << "ActivateCommitted from " << activation_epoch