Hisoka-X commented on code in PR #9657:
URL: https://github.com/apache/seatunnel/pull/9657#discussion_r2250532856
##########
seatunnel-connectors-v2/connector-doris/src/main/java/org/apache/seatunnel/connectors/doris/sink/writer/DorisSinkWriter.java:
##########
@@ -120,6 +120,9 @@ private void initializeLoad() {
for (int i = 0; i < feNodesNum; i++) {
try {
+ if (i > 0) {
+ log.info("Trying next FE node: {}", feNodes.get(i));
+ }
Review Comment:
```suggestion
log.info("Trying FE node {} for stream load.",
feNodes.get(i));
```
--
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]