From e41e201a0da077e4ae4d7d4849da5b897827e5e4 Mon Sep 17 00:00:00 2001 From: Samuel Just Date: Wed, 8 May 2019 20:39:14 -0700 Subject: [PATCH] PeeringState::ActivateCommitted: intialize epoch Fixes: https://tracker.ceph.com/issues/39636 Signed-off-by: Samuel Just --- src/osd/PeeringState.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/osd/PeeringState.h b/src/osd/PeeringState.h index ee6e5918e36..415e2b7435b 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 -- 2.39.5