oxsean commented on issue #14772:
URL: https://github.com/apache/dubbo/issues/14772#issuecomment-2424988619

   ```java
   // work fine
   throw HttpResult.found("http://www.apache.org";).toPayload();
   
   // work fine
   throw new HttpResultPayloadException(302, "http://www.apache.org";);
   
   // not work, fixed
   HttpResponse response = 
RpcContext.getServiceContext().getResponse(HttpResponse.class);
   response.sendRedirect("http://www.apache.org";);
   ```


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