You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sk...@apache.org on 2022/03/10 16:45:49 UTC

[ignite-3] branch test-mute created (now bff5dc5)

This is an automated email from the ASF dual-hosted git repository.

sk0x50 pushed a change to branch test-mute
in repository https://gitbox.apache.org/repos/asf/ignite-3.git.


      at bff5dc5  Test

This branch includes the following new commits:

     new bff5dc5  Test

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[ignite-3] 01/01: Test

Posted by sk...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

sk0x50 pushed a commit to branch test-mute
in repository https://gitbox.apache.org/repos/asf/ignite-3.git

commit bff5dc50a9abd8cbca4ed100767405d279faafce
Author: Slava Koptilin <sl...@gmail.com>
AuthorDate: Thu Mar 10 19:44:59 2022 +0300

    Test
---
 .../org/apache/ignite/internal/table/distributed/TableManager.java  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/table/src/main/java/org/apache/ignite/internal/table/distributed/TableManager.java b/modules/table/src/main/java/org/apache/ignite/internal/table/distributed/TableManager.java
index 9e19fff..d1d24fb 100644
--- a/modules/table/src/main/java/org/apache/ignite/internal/table/distributed/TableManager.java
+++ b/modules/table/src/main/java/org/apache/ignite/internal/table/distributed/TableManager.java
@@ -238,7 +238,7 @@ public class TableManager extends Producer<TableEvent, TableEventParameters> imp
                         assert ((ExtendedTableView) ctx.newValue()).assignments() != null :
                                 IgniteStringFormatter.format("Table [id={}, name={}] has empty assignments.", tblId, tblName);
 
-                        // TODO: IGNITE-16369 Listener with any placeholder should be used instead.
+                        // TODO: <MUTED> IGNITE-16369 Listener with any placeholder should be used instead.
                         ((ExtendedTableConfiguration) tablesCfg.tables().get(tblName)).schemas()
                                 .listenElements(new ConfigurationNamedListListener<>() {
                                     @Override
@@ -257,7 +257,7 @@ public class TableManager extends Producer<TableEvent, TableEventParameters> imp
 
                                         try {
                                             // Avoid calling listener immediately after the listener completes to create the current table.
-                                            // FIXME: https://issues.apache.org/jira/browse/IGNITE-16369
+                                            // FIXME: <MUTED> https://issues.apache.org/jira/browse/IGNITE-16369
                                             if (ctx.storageRevision() != schemasCtx.storageRevision()) {
                                                 return tablesByIdVv.get(causalityToken).thenAccept(tablesById -> {
                                                     TableImpl table = tablesById.get(tblId);
@@ -293,7 +293,7 @@ public class TableManager extends Producer<TableEvent, TableEventParameters> imp
 
                                     try {
                                         // Avoid calling listener immediately after the listener completes to create the current table.
-                                        // FIXME: https://issues.apache.org/jira/browse/IGNITE-16369
+                                        // FIXME: <MUTED> https://issues.apache.org/jira/browse/IGNITE-16369
                                         if (ctx.storageRevision() == assignmentsCtx.storageRevision()) {
                                             return CompletableFuture.completedFuture(null);
                                         } else {