You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by vo...@apache.org on 2016/11/22 11:02:56 UTC

[2/3] ignite git commit: IGNITE-4239: test cleanup

IGNITE-4239: test cleanup


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/ba99df15
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/ba99df15
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/ba99df15

Branch: refs/heads/ignite-4259-1
Commit: ba99df1554fbd1de2b2367b6ce011a024cd199bd
Parents: 861fab9
Author: tledkov-gridgain <tl...@gridgain.com>
Authored: Tue Nov 22 15:07:20 2016 +0500
Committer: tledkov-gridgain <tl...@gridgain.com>
Committed: Tue Nov 22 15:07:20 2016 +0500

----------------------------------------------------------------------
 .../processors/compute/PublicThreadpoolStarvationTest.java     | 6 ------
 1 file changed, 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/ba99df15/modules/core/src/test/java/org/apache/ignite/internal/processors/compute/PublicThreadpoolStarvationTest.java
----------------------------------------------------------------------
diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/compute/PublicThreadpoolStarvationTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/compute/PublicThreadpoolStarvationTest.java
index e587310..dec32c6 100644
--- a/modules/core/src/test/java/org/apache/ignite/internal/processors/compute/PublicThreadpoolStarvationTest.java
+++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/compute/PublicThreadpoolStarvationTest.java
@@ -116,12 +116,6 @@ public class PublicThreadpoolStarvationTest extends GridCacheAbstractSelfTest {
     public void testCacheSizeOnPublicThreadpoolStarvation() throws Exception {
         grid(0).compute().run(new IgniteRunnable() {
             @Override public void run() {
-                try {
-                    Thread.sleep(500);
-                }
-                catch (InterruptedException e) {
-                    Thread.currentThread().interrupt();
-                }
                 grid(0).cache(CACHE_NAME).size();
             }
         });