You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicecomb.apache.org by "chengyouling (via GitHub)" <gi...@apache.org> on 2023/07/25 08:24:51 UTC

[GitHub] [servicecomb-java-chassis] chengyouling opened a new pull request, #3877: [#3865] show interface parameter info when throw InvocationException

chengyouling opened a new pull request, #3877:
URL: https://github.com/apache/servicecomb-java-chassis/pull/3877

   (no comment)


-- 
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: commits-unsubscribe@servicecomb.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [servicecomb-java-chassis] liubao68 merged pull request #3877: [#3865] show interface parameter info when throw InvocationException

Posted by "liubao68 (via GitHub)" <gi...@apache.org>.
liubao68 merged PR #3877:
URL: https://github.com/apache/servicecomb-java-chassis/pull/3877


-- 
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: commits-unsubscribe@servicecomb.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [servicecomb-java-chassis] liubao68 commented on a diff in pull request #3877: [#3865] show interface parameter info when throw InvocationException

Posted by "liubao68 (via GitHub)" <gi...@apache.org>.
liubao68 commented on code in PR #3877:
URL: https://github.com/apache/servicecomb-java-chassis/pull/3877#discussion_r1273319723


##########
common/common-rest/src/main/java/org/apache/servicecomb/common/rest/codec/RestCodec.java:
##########
@@ -57,16 +60,19 @@ public static Map<String, Object> restToArgs(HttpServletRequest request,
     for (RestParam param : paramList) {
       try {
         paramValues.put(param.getParamName(), param.getParamProcessor().getValue(request));
-      } catch (InvocationException e) {
-        throw e;
       } catch (Exception e) {
         // Avoid information leak of user input, and add option for debug use.

Review Comment:
   remove this notes



-- 
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: commits-unsubscribe@servicecomb.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org