Compare commits
11 Commits
feat/train
...
26caf505b9
| Author | SHA1 | Date | |
|---|---|---|---|
| 26caf505b9 | |||
| bd54854bc6 | |||
| ca3d115d0e | |||
| 831ba3e616 | |||
| a4b5e20db2 | |||
| da260f35ea | |||
| 6cf81bf60f | |||
| ed95829a34 | |||
| 52ffe53815 | |||
| 5887a954ea | |||
|
|
72bc2fd47b |
@@ -60,7 +60,7 @@ public class GpuDmonReader {
|
|||||||
runDmon(); // GPU 사용률 수집 시작
|
runDmon(); // GPU 사용률 수집 시작
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
// dmon 프로세스 종료되면 여기로 들어옴
|
// dmon 프로세스 종료되면 여기로 들어옴
|
||||||
log.warn("dmon restart: {}", e.getMessage());
|
log.warn("dmon restart...");
|
||||||
}
|
}
|
||||||
|
|
||||||
// 5초 대기 후 재시작
|
// 5초 대기 후 재시작
|
||||||
|
|||||||
@@ -16,6 +16,12 @@ public class ApiLogFilter extends OncePerRequestFilter {
|
|||||||
protected void doFilterInternal(
|
protected void doFilterInternal(
|
||||||
HttpServletRequest request, HttpServletResponse response, FilterChain filterChain)
|
HttpServletRequest request, HttpServletResponse response, FilterChain filterChain)
|
||||||
throws ServletException, IOException {
|
throws ServletException, IOException {
|
||||||
|
String uri = request.getRequestURI();
|
||||||
|
if (uri.contains("/download/")) {
|
||||||
|
filterChain.doFilter(request, response);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
ContentCachingRequestWrapper wrappedRequest = new ContentCachingRequestWrapper(request);
|
ContentCachingRequestWrapper wrappedRequest = new ContentCachingRequestWrapper(request);
|
||||||
|
|
||||||
ContentCachingResponseWrapper wrappedResponse = new ContentCachingResponseWrapper(response);
|
ContentCachingResponseWrapper wrappedResponse = new ContentCachingResponseWrapper(response);
|
||||||
|
|||||||
Reference in New Issue
Block a user