SteveYurongSu commented on code in PR #11425:
URL: https://github.com/apache/iotdb/pull/11425#discussion_r1376495194
##########
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/connector/protocol/thrift/async/IoTDBThriftAsyncConnector.java:
##########
@@ -342,7 +352,13 @@ private void transfer(
@Override
public void transfer(Event event) throws Exception {
- transferQueuedEventsIfNecessary();
+ try {
+ transferQueuedEventsIfNecessary();
+ } catch (Exception e) {
+ LOGGER.warn("caught ex in retry, rethrown.");
+ throw e;
+ }
+ LOGGER.warn("no ex in retry");
Review Comment:
```suggestion
transferQueuedEventsIfNecessary();
```
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]