this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Ignore requests during view change (fuzzer W)

garrison e3d3ab48 10178c99

+7
+7
lib/servers/coordinator.ex
··· 664 664 665 665 # Request 666 666 667 + defp on_request(%State{} = state, _command, _from) when state.status != :normal do 668 + # Ignore requests during view change 669 + # TODO: maybe we should send an error to the client here? Currently it will simply timeout 670 + state 671 + end 672 + 667 673 defp on_request(%State{} = state, command, from) do 668 674 assert state.role == :primary 675 + assert state.status == :normal 669 676 SimLogger.debug "Coordinator (id=#{state.id}): received command #{inspect(command)}" 670 677 671 678 op_number = state.op_number + 1