Berkof commented on a change in pull request #360:
URL: https://github.com/apache/ignite-3/pull/360#discussion_r731533379



##########
File path: 
modules/table/src/main/java/org/apache/ignite/internal/table/distributed/TableManager.java
##########
@@ -981,6 +1006,23 @@ private boolean isTableConfigured(String name) {
         return tableNamesConfigured().contains(name);
     }
 
+    /**
+     * Join and unwrap {@link CompletionException} to {@link IgniteException} 
if needed.
+     *
+     * @param future Completable future.
+     */
+    private void join(CompletableFuture<Void> future) {
+        try {
+            future.join();
+        }
+        catch (CompletionException ex) {

Review comment:
       "catch (RuntimeException e)" ?




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to