Repository: ignite Updated Branches: refs/heads/ignite-5578 72d3c3ad2 -> 354b8682d
5578 Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/de050c7a Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/de050c7a Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/de050c7a Branch: refs/heads/ignite-5578 Commit: de050c7abfe1cdc9b15545e9f369db4cc39d4cd1 Parents: 72d3c3a Author: sboikov <[email protected]> Authored: Wed Aug 2 23:05:06 2017 +0300 Committer: sboikov <[email protected]> Committed: Wed Aug 2 23:05:06 2017 +0300 ---------------------------------------------------------------------- .../cache/distributed/dht/GridClientPartitionTopology.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/de050c7a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/GridClientPartitionTopology.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/GridClientPartitionTopology.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/GridClientPartitionTopology.java index f4b8971..e00cacb 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/GridClientPartitionTopology.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/GridClientPartitionTopology.java @@ -534,7 +534,7 @@ public class GridClientPartitionTopology implements GridDhtPartitionTopology { List<ClusterNode> nodes = new ArrayList<>(size); for (UUID id : nodeIds) { - if (topVer.topologyVersion() > 0 && !allIds.contains(id)) + if (topVer.topologyVersion() > 0 && !F.contains(allIds, id)) continue; if (hasState(p, id, state, states)) {
