Skip to content

Commit 6a461f0

Browse files
authored
Pipe: Downgraded and reduced the log of PipePushMetaRPCHandler (#17492)
1 parent a12c209 commit 6a461f0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/client/async/handlers/rpc/PipePushMetaRPCHandler.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,15 @@ public void onComplete(TPushPipeMetaResp response) {
6767
}
6868

6969
@Override
70-
public void onError(Exception e) {
71-
String errorMsg =
70+
public void onError(final Exception e) {
71+
final String errorMsg =
7272
"Failed to "
7373
+ requestType
7474
+ " on DataNode: "
7575
+ formattedTargetLocation
7676
+ ", exception: "
7777
+ e.getMessage();
78-
LOGGER.error(errorMsg, e);
78+
LOGGER.warn(errorMsg);
7979

8080
responseMap.put(
8181
requestId,

0 commit comments

Comments
 (0)