From 0b051b8d889d0a0945ee888ed870029f6507c9e1 Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Thu, 11 Nov 2021 01:47:15 +0100 Subject: [PATCH] Add a FIXME for enabling a test Record the problem observed and assign an issue to track it. JIRA: CONTROLLER-2016 Change-Id: Idbf52a2598a93f55797954223de98cd974abac3a Signed-off-by: Robert Varga --- .../DistributedDataStoreRemotingIntegrationTest.java | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/DistributedDataStoreRemotingIntegrationTest.java b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/DistributedDataStoreRemotingIntegrationTest.java index a298508cc9..4b58f3673b 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/DistributedDataStoreRemotingIntegrationTest.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/DistributedDataStoreRemotingIntegrationTest.java @@ -422,8 +422,13 @@ public class DistributedDataStoreRemotingIntegrationTest extends AbstractTest { @Test public void testCloseTransactionMetadataLeak() throws Exception { - // FIXME: Ask-based frontend seems to have some issues with back to back close - assumeTrue(testParameter.isAssignableFrom(TestClientBackedDataStore.class)); + // FIXME: CONTROLLER-2016: ask-based frontend triggers this: + // + // java.lang.IllegalStateException: Previous transaction + // member-2-datastore-testCloseTransactionMetadataLeak-fe-0-chn-1-txn-1-0 is not ready yet + // at org.opendaylight.controller.cluster.datastore.TransactionChainProxy$Allocated.checkReady() + // at org.opendaylight.controller.cluster.datastore.TransactionChainProxy.newReadOnlyTransaction() + assumeTrue(testParameter.isAssignableFrom(ClientBackedDataStore.class)); initDatastoresWithCars("testCloseTransactionMetadataLeak"); -- 2.36.6