xinzhuxiansheng commented on issue #4206:
URL: https://github.com/apache/streampark/issues/4206#issuecomment-2727865030

   I removed the RequiresPermissions annotation, as shown below, which 
temporarily solves the above problem
   
   @GetMapping("{type}/{id}/**")
   // @RequiresPermissions("app:view")
   public ResponseEntity<?> proxyFlink(
   HttpServletRequest request, @PathVariable("type") String type, 
@PathVariable("id") Long id)
   throws Exception {
   return proxy(type, request, id);
   }
   
   我去掉了 RequiresPermissions 注解,如下所示,这样可以暂时解决上面的问题


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

Reply via email to