Compare commits
1 Commits
26caf505b9
...
feat/train
| Author | SHA1 | Date | |
|---|---|---|---|
| 3d2a4049d3 |
@@ -60,7 +60,7 @@ public class GpuDmonReader {
|
|||||||
runDmon(); // GPU 사용률 수집 시작
|
runDmon(); // GPU 사용률 수집 시작
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
// dmon 프로세스 종료되면 여기로 들어옴
|
// dmon 프로세스 종료되면 여기로 들어옴
|
||||||
log.warn("dmon restart...");
|
log.warn("dmon restart: {}", e.getMessage());
|
||||||
}
|
}
|
||||||
|
|
||||||
// 5초 대기 후 재시작
|
// 5초 대기 후 재시작
|
||||||
|
|||||||
@@ -16,12 +16,6 @@ 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