Copilot commented on code in PR #65567:
URL: https://github.com/apache/doris/pull/65567#discussion_r3575864221


##########
fe/fe-core/src/main/java/org/apache/doris/cloud/rpc/MetaServiceProxy.java:
##########
@@ -226,6 +235,8 @@ public <Response> Response executeRequest(String 
methodName, Function<MetaServic
                     if (!shouldRetry || tried >= maxRetries) {
                         throw new RpcException("", sre.getMessage(), sre);
                     }
+                } catch (RpcException e) {
+                    throw e;
                 } catch (Exception e) {
                     requestFailed = true;
                     LOG.warn("failed to request meta servive trycnt {}", 
tried, e);

Review Comment:
   Spelling typo in log message: "servive" should be "service" for 
consistency/searchability in logs.



-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to