Skip to content

Commit

Permalink
# IGNITE-709 Fix test: use Cluster.localNode() instead of Cluster.node()
Browse files Browse the repository at this point in the history
  • Loading branch information
sevdokimov-gg committed May 26, 2015
1 parent 2e52adf commit 2ca18ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ private void stopTempNodes() {
for (Iterator<Ignite> itr = toRmv.iterator(); itr.hasNext(); ) {
Ignite g = itr.next();

if (g.cluster().node().isClient()) {
if (g.cluster().localNode().isClient()) {
G.stop(g.name(), false);

itr.remove();
Expand Down

0 comments on commit 2ca18ba

Please sign in to comment.