[
https://issues.apache.org/jira/browse/IGNITE-13128?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17138533#comment-17138533
]
Ignite TC Bot commented on IGNITE-13128:
----------------------------------------
{panel:title=Branch: [pull/7913/head] Base: [master] : Possible Blockers
(40)|borderStyle=dashed|borderColor=#ccc|titleBGColor=#F7D6C1}
{color:#d04437}MVCC Cache 7{color} [[tests 0 TIMEOUT , Exit Code
|https://ci.ignite.apache.org/viewLog.html?buildId=5385031]]
{color:#d04437}Queries 1{color} [[tests
30|https://ci.ignite.apache.org/viewLog.html?buildId=5385017]]
* IgniteBinaryCacheQueryTestSuite:
DynamicIndexServerBasicSelfTest.testCreateIndexWithInlineSizePartitionedAtomic
- Test has low fail rate in base branch 0,0% and is not flaky
* IgniteBinaryCacheQueryTestSuite:
DynamicIndexServerBasicSelfTest.testCreateIndexWithParallelismPartitionedTransactionalNear
- Test has low fail rate in base branch 0,0% and is not flaky
* IgniteBinaryCacheQueryTestSuite:
DynamicIndexServerBasicSelfTest.testCreateNoTableReplicatedAtomic - Test has
low fail rate in base branch 0,0% and is not flaky
* IgniteBinaryCacheQueryTestSuite:
DynamicIndexServerBasicSelfTest.testCreatePartitionedAtomicNear - Test has low
fail rate in base branch 0,0% and is not flaky
* IgniteBinaryCacheQueryTestSuite:
DynamicIndexServerBasicSelfTest.testCreateIndexNoCachePartitionedAtomicNear -
Test has low fail rate in base branch 0,0% and is not flaky
* IgniteBinaryCacheQueryTestSuite:
DynamicIndexServerBasicSelfTest.testCreateIndexNoCacheReplicatedAtomic - Test
has low fail rate in base branch 0,0% and is not flaky
* IgniteBinaryCacheQueryTestSuite:
DynamicIndexServerBasicSelfTest.testNonSqlCache - Test has low fail rate in
base branch 0,0% and is not flaky
* IgniteBinaryCacheQueryTestSuite:
DynamicIndexServerBasicSelfTest.testCreateIndexNoCachePartitionedAtomic - Test
has low fail rate in base branch 0,0% and is not flaky
* IgniteBinaryCacheQueryTestSuite:
DynamicIndexServerBasicSelfTest.testDropReplicatedTransactional - Test has low
fail rate in base branch 0,0% and is not flaky
* IgniteBinaryCacheQueryTestSuite:
DynamicIndexServerBasicSelfTest.testCreatePartitionedAtomic - Test has low fail
rate in base branch 0,0% and is not flaky
* IgniteBinaryCacheQueryTestSuite:
DynamicIndexServerBasicSelfTest.testCreateIndexWithInlineSizeReplicatedTransactional
- Test has low fail rate in base branch 0,0% and is not flaky
... and 19 tests blockers
{color:#d04437}PDS 4{color} [[tests 0 Exit Code
|https://ci.ignite.apache.org/viewLog.html?buildId=5385010]]
{color:#d04437}MVCC Queries{color} [[tests
1|https://ci.ignite.apache.org/viewLog.html?buildId=5384975]]
* IgniteCacheMvccSqlTestSuite:
CacheMvccSqlLockTimeoutTest.testConcurrentForReplicatedCache - Test has low
fail rate in base branch 0,0% and is not flaky
{color:#d04437}ZooKeeper (Discovery) 3{color} [[tests
1|https://ci.ignite.apache.org/viewLog.html?buildId=5385019]]
* ZookeeperDiscoverySpiTestSuite3:
GridCacheAtomicMultiJvmFullApiSelfTest.testTtlNoTx - Test has low fail rate in
base branch 0,0% and is not flaky
{color:#d04437}MVCC PDS 1{color} [[tests
1|https://ci.ignite.apache.org/viewLog.html?buildId=5385034]]
* IgnitePdsMvccTestSuite:
IgniteClusterActivateDeactivateTestWithPersistence.testClientReconnectClusterDeactivated
- Test has low fail rate in base branch 0,0% and is not flaky
{color:#d04437}Service Grid (legacy mode){color} [[tests
3|https://ci.ignite.apache.org/viewLog.html?buildId=5385024]]
* IgniteServiceGridTestSuite: ServiceThreadPoolSelfTest.testDefaultPoolSize -
Test has low fail rate in base branch 0,0% and is not flaky
* IgniteServiceGridTestSuite: ServiceThreadPoolSelfTest.testCustomPoolSize -
Test has low fail rate in base branch 0,0% and is not flaky
* IgniteServiceGridTestSuite: ServiceThreadPoolSelfTest.testInheritedPoolSize -
Test has low fail rate in base branch 0,0% and is not flaky
{color:#d04437}Cache 9{color} [[tests
2|https://ci.ignite.apache.org/viewLog.html?buildId=5384998]]
* IgniteCacheTestSuite9:
IgniteTxCachePrimarySyncTest.testSingleKeyPrimaryNodeFail2 - Test has low fail
rate in base branch 0,0% and is not flaky
* IgniteCacheTestSuite9:
TxPartitionCounterStateConsistencyTest.testPartitionConsistencyWithBackupRestart_ChangeBLT
- Test has low fail rate in base branch 0,0% and is not flaky
{panel}
[TeamCity *--> Run :: All*
Results|https://ci.ignite.apache.org/viewLog.html?buildId=5385042&buildTypeId=IgniteTests24Java8_RunAll]
> IgniteLock throws NullPointerException when removed before use
> --------------------------------------------------------------
>
> Key: IGNITE-13128
> URL: https://issues.apache.org/jira/browse/IGNITE-13128
> Project: Ignite
> Issue Type: Bug
> Components: data structures
> Affects Versions: 2.8
> Reporter: Pavel Tupitsyn
> Assignee: Kartik Somani
> Priority: Major
> Labels: newbie
> Fix For: 2.9
>
> Time Spent: 20m
> Remaining Estimate: 0h
>
> Reproducer:
> {code:java}
> public void testClosedLockThrowsIgniteException() {
> final String lockName = "testRemovedLockThrowsIgniteException";
> Ignite srv = ignite(0);
> IgniteLock lock1 = srv.reentrantLock(lockName, false, false, true);
> IgniteLock lock2 = srv.reentrantLock(lockName, false, false, true);
> lock1.close();
> lock2.lock();
> }
> {code}
> This does not happen if we add any lock2 call before lock1.close(). The
> following works as expected, returning "Failed to find reentrant lock with
> given name" exception:
> {code:java}
> public void testClosedLockThrowsIgniteException() {
> final String lockName = "testRemovedLockThrowsIgniteException";
> Ignite srv = ignite(0);
> IgniteLock lock1 = srv.reentrantLock(lockName, false, false, true);
> IgniteLock lock2 = srv.reentrantLock(lockName, false, false, true);
> lock2.isLocked();
> lock1.close();
> lock2.lock();
> }
> {code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)