From: <tho...@us...> - 2014-04-07 12:08:49
|
Revision: 8067 http://sourceforge.net/p/bigdata/code/8067 Author: thompsonbry Date: 2014-04-07 12:08:45 +0000 (Mon, 07 Apr 2014) Log Message: ----------- Bug fix for test case. See #871 (interrupt handling code review). Modified Paths: -------------- branches/BIGDATA_RELEASE_1_3_0/bigdata/src/test/com/bigdata/cache/StressTestGlobalLRU.java Modified: branches/BIGDATA_RELEASE_1_3_0/bigdata/src/test/com/bigdata/cache/StressTestGlobalLRU.java =================================================================== --- branches/BIGDATA_RELEASE_1_3_0/bigdata/src/test/com/bigdata/cache/StressTestGlobalLRU.java 2014-04-07 12:08:13 UTC (rev 8066) +++ branches/BIGDATA_RELEASE_1_3_0/bigdata/src/test/com/bigdata/cache/StressTestGlobalLRU.java 2014-04-07 12:08:45 UTC (rev 8067) @@ -448,7 +448,7 @@ if (c.n % 1000000 == 0) { - if (Thread.currentThread().isInterrupted()) { + if (Thread.interrupted()) { /* * Notice interrupts in case we are using a This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |