This is an automated email from the ASF dual-hosted git repository.
sdanilov pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new 87748cb5d4 IGNITE-18903 Remove TODOs mentioning closed issues (#1718)
87748cb5d4 is described below
commit 87748cb5d47f0d54a992a933e963264e8bdc45e7
Author: Roman Puchkovskiy <[email protected]>
AuthorDate: Fri Feb 24 23:32:55 2023 +0400
IGNITE-18903 Remove TODOs mentioning closed issues (#1718)
---
modules/metastorage/README.md | 1 -
.../org/apache/ignite/internal/runner/app/ItTablesApiTest.java | 8 +++-----
2 files changed, 3 insertions(+), 6 deletions(-)
diff --git a/modules/metastorage/README.md b/modules/metastorage/README.md
index 27a752e5d2..fed5f313b7 100644
--- a/modules/metastorage/README.md
+++ b/modules/metastorage/README.md
@@ -42,4 +42,3 @@ prefix NODE NAME>%Raft-Group-Client).
The component uses common ForkJoinPool on start (in fact, it is not necessary,
because all components start asynchronously in the same
ForkJoinPool). The using of the common pool is dangerous, because the pool can
be occupied by another threads that hosted on the same JVM
-(TODO: IGNITE-18505 Avoid using common pool on start components).
diff --git
a/modules/runner/src/integrationTest/java/org/apache/ignite/internal/runner/app/ItTablesApiTest.java
b/modules/runner/src/integrationTest/java/org/apache/ignite/internal/runner/app/ItTablesApiTest.java
index ba9eb80043..55f1fec70b 100644
---
a/modules/runner/src/integrationTest/java/org/apache/ignite/internal/runner/app/ItTablesApiTest.java
+++
b/modules/runner/src/integrationTest/java/org/apache/ignite/internal/runner/app/ItTablesApiTest.java
@@ -102,7 +102,7 @@ public class ItTablesApiTest extends IgniteAbstractTest {
* Before each.
*/
@BeforeEach
- void beforeEach(TestInfo testInfo) throws Exception {
+ void beforeEach(TestInfo testInfo) {
List<CompletableFuture<Ignite>> futures = new ArrayList<>();
for (int i = 0; i < nodesBootstrapCfg.size(); i++) {
@@ -201,12 +201,10 @@ public class ItTablesApiTest extends IgniteAbstractTest {
/**
* Test scenario when we have lagged node, and tables with the same name
are deleted and created again.
- *
- * @throws Exception If failed.
*/
@Test
- @Disabled("https://issues.apache.org/jira/browse/IGNITE-17775")
- public void testGetTableFromLaggedNode() throws Exception {
+ @Disabled("https://issues.apache.org/jira/browse/IGNITE-18379")
+ public void testGetTableFromLaggedNode() {
clusterNodes.forEach(ign ->
assertNull(ign.tables().table(TABLE_NAME)));
Ignite ignite0 = clusterNodes.get(0);