Skip to content

Commit

Permalink
0005319: SymmetricDS Not Properly Handling Unable to Write Batch to
Browse files Browse the repository at this point in the history
Kafka Error
  • Loading branch information
jakobvanmeter committed Jun 1, 2022
1 parent df2dec1 commit a5d1cc0
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -477,7 +477,8 @@ public void batchComplete(DataContext context) {
}
} catch (Exception e) {
log.warn("Unable to write batch to Kafka " + batchFileName, e);
e.printStackTrace();
throw new RuntimeException(e);
// e.printStackTrace();
} finally {
context.put(KAFKA_TEXT_CACHE, new HashMap<String, List<String>>());
tableNameCache.clear();
Expand Down

0 comments on commit a5d1cc0

Please sign in to comment.