Manual fix to the cherry-picking of PR#44050.
The two lines here are esential part of the fix,
but were not part of the cherry-picked
84fe362
(they were "mis-cataloged" in a previous PR)
Signed-off-by: Ronen Friedman <rfriedma@redhat.com>
using reactions =
mpl::list<sc::custom_reaction<GotReplicas>, // all replicas are accounted for
sc::transition<MapsCompared, WaitDigestUpdate>,
- sc::deferral<DigestUpdate> // might arrive before we've reached WDU
+ sc::custom_reaction<DigestUpdate>
>;
sc::result react(const GotReplicas&);
-
+ sc::result react(const DigestUpdate&);
bool all_maps_already_called{false}; // see comment in react code
};