# ignite-sprint-3 minor
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/7aba4bad Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/7aba4bad Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/7aba4bad Branch: refs/heads/gg-9998 Commit: 7aba4bad9aac10dc140c484580bce195b25634fc Parents: 05c8d20 Author: sboikov <sboi...@gridgain.com> Authored: Tue Mar 31 17:31:06 2015 +0300 Committer: sboikov <sboi...@gridgain.com> Committed: Tue Mar 31 17:31:06 2015 +0300 ---------------------------------------------------------------------- .../GridCachePartitionedQueueCreateMultiNodeSelfTest.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/7aba4bad/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/datastructures/partitioned/GridCachePartitionedQueueCreateMultiNodeSelfTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/datastructures/partitioned/GridCachePartitionedQueueCreateMultiNodeSelfTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/datastructures/partitioned/GridCachePartitionedQueueCreateMultiNodeSelfTest.java index 67dcb7a..67491fa 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/datastructures/partitioned/GridCachePartitionedQueueCreateMultiNodeSelfTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/datastructures/partitioned/GridCachePartitionedQueueCreateMultiNodeSelfTest.java @@ -106,7 +106,11 @@ public class GridCachePartitionedQueueCreateMultiNodeSelfTest extends IgniteColl IgniteInternalFuture<?> fut = multithreadedAsync( new Callable<Object>() { @Override public Object call() throws Exception { - Ignite ignite = startGrid(idx.getAndIncrement()); + int idx0 = idx.getAndIncrement(); + + Thread.currentThread().setName("createQueue-" + idx0); + + Ignite ignite = startGrid(idx0); UUID locNodeId = ignite.cluster().localNode().id();