Bugfix: inner->outer proj @ A30

This commit is contained in:
Scott Lystig Fritchie 2015-09-01 00:51:46 +09:00
parent 2e2f5f44c4
commit 4378ef7b54

View file

@ -1323,7 +1323,29 @@ react_to_env_A30(Retries, P_latest, LatestUnanimousP, _ReadExtra,
%% of what state C103 does? Go to C103 instead? %% of what state C103 does? Go to C103 instead?
P_newprop12 = machi_projection:update_checksum( P_newprop12 = machi_projection:update_checksum(
P_newprop11#projection_v1{epoch_number=NewEpoch}), P_newprop11#projection_v1{epoch_number=NewEpoch}),
react_to_env_C100(P_newprop12, P_newprop11, S);
%% Move to C300 to avoid repeating the same none proj (and
%% multiple writes to the same private epoch that
%% concidentally are permitted because the projection is
%% exactly the same)
%%
%% The other problem in this execution is that there are a
%% couple of other parties that are not flapping because
%% they see this A30->C100 problem & repeat is
%% short-circuiting all of the flapping logic. If I
%% change A30->C100 to be A30->C300 instead, then I hope
%% that other effect will resolve itself correctly.
if P_latest#projection_v1.author_server == MyName,
P_latest#projection_v1.upi == [] ->
?REACT({a30, ?LINE, []}),
io:format(user, "CONFIRM debug A30->C100 by ~w\n",[MyName]),
react_to_env_C100(P_newprop12, P_latest, S);
true ->
?REACT({a30, ?LINE, []}),
io:format(user, "CONFIRM debug A30->C300 by ~w\n",[MyName]),
react_to_env_C300(P_newprop12, P_latest, S)
end;
MoveToNorm_p, MoveToNorm_p,
CMode == cp_mode, CMode == cp_mode,
not CurrentHasZerf_p -> not CurrentHasZerf_p ->