Skip to content

Commit 01f84e2

Browse files
committed
updated build work flow
1 parent 75cdabf commit 01f84e2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

shared/src/main/java/genum/shared/util/CachedBodyHttpServletRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class CachedBodyHttpServletRequest extends HttpServletRequestWrapper {
1212
public CachedBodyHttpServletRequest(HttpServletRequest request) throws IOException {
1313
super(request);
1414
InputStream requestInputStream = request.getInputStream();
15-
this.cachedBody = getInputStream().readAllBytes();
15+
this.cachedBody = requestInputStream.readAllBytes();
1616
}
1717

1818
@Override

0 commit comments

Comments
 (0)