tsreaper commented on a change in pull request #13:
URL: https://github.com/apache/flink-table-store/pull/13#discussion_r790514373



##########
File path: 
flink-table-store-core/src/test/java/org/apache/flink/table/store/file/operation/TestCommitThread.java
##########
@@ -173,7 +173,11 @@ public void run() {
             } catch (Exception e) {
                 throw new RuntimeException(e);
             }
-            writer.close();
+            try {
+                writer.close();
+            } catch (Exception e) {
+                throw new RuntimeException(e);
+            }

Review comment:
       Remove `try { writer.sync() }` above this code fragment because it is 
included in `writer.close()`.




-- 
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: issues-unsubscr...@flink.apache.org

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


Reply via email to