43
43
44
44
public class CoordinationStateTests extends ESTestCase {
45
45
46
- DiscoveryNode node1 ;
47
- DiscoveryNode node2 ;
48
- DiscoveryNode node3 ;
46
+ private DiscoveryNode node1 ;
47
+ private DiscoveryNode node2 ;
48
+ private DiscoveryNode node3 ;
49
49
50
- ClusterState initialStateNode1 ;
51
- ClusterState initialStateNode2 ;
52
- ClusterState initialStateNode3 ;
50
+ private ClusterState initialStateNode1 ;
53
51
54
- PersistedState ps1 ;
52
+ private PersistedState ps1 ;
55
53
56
- CoordinationState cs1 ;
57
- CoordinationState cs2 ;
58
- CoordinationState cs3 ;
54
+ private CoordinationState cs1 ;
55
+ private CoordinationState cs2 ;
56
+ private CoordinationState cs3 ;
59
57
60
58
@ Before
61
59
public void setupNodes () {
@@ -64,8 +62,10 @@ public void setupNodes() {
64
62
node3 = createNode ("node3" );
65
63
66
64
initialStateNode1 = clusterState (0L , 0L , node1 , VotingConfiguration .EMPTY_CONFIG , VotingConfiguration .EMPTY_CONFIG , 42L );
67
- initialStateNode2 = clusterState (0L , 0L , node2 , VotingConfiguration .EMPTY_CONFIG , VotingConfiguration .EMPTY_CONFIG , 42L );
68
- initialStateNode3 = clusterState (0L , 0L , node3 , VotingConfiguration .EMPTY_CONFIG , VotingConfiguration .EMPTY_CONFIG , 42L );
65
+ ClusterState initialStateNode2 =
66
+ clusterState (0L , 0L , node2 , VotingConfiguration .EMPTY_CONFIG , VotingConfiguration .EMPTY_CONFIG , 42L );
67
+ ClusterState initialStateNode3 =
68
+ clusterState (0L , 0L , node3 , VotingConfiguration .EMPTY_CONFIG , VotingConfiguration .EMPTY_CONFIG , 42L );
69
69
70
70
ps1 = new InMemoryPersistedState (0L , initialStateNode1 );
71
71
0 commit comments