Merge branch 'master' into docker_package

This commit is contained in:
wangliwen 2022-08-08 18:02:35 +08:00
commit 0d9092ed99
1 changed files with 15 additions and 0 deletions

View File

@ -337,4 +337,19 @@ public class MonitorController {
return Result.success(callCount);
}
@GetMapping("/gateway-monitor/test/get")
public Result testGet(){
return Result.success(null);
}
@GetMapping("/gateway-monitor/test/404")
public void test404(HttpServletResponse response){
response.setStatus(404);
}
@GetMapping("/gateway-monitor/test/500")
public void test500(HttpServletResponse response){
response.setStatus(500);
}
}