Skip to content

Commit

Permalink
1.8.3
Browse files Browse the repository at this point in the history
Adding max body size to config and buffering at most that number of bytes
  • Loading branch information
bakennedy committed Nov 15, 2024
1 parent 66b0584 commit 9b34997
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion moesif-servlet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.moesif.servlet</groupId>
<artifactId>moesif-servlet</artifactId>
<version>1.8.2</version>
<version>1.8.3</version>
<packaging>jar</packaging>
<name>moesif-servlet</name>
<description>Moesif SDK for Java Servlet to log and analyze API calls</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ public EventModel maskContent(EventModel eventModel) {
public int queueSize = 1000000; // maximum queue capacity to hold events.
public int retry = 0; // how many times to retry, if fails to post events.ß
public int updateConfigTime = 5*60; // in seconds - time to update app config periodically.
public int maxBodySize = 450 * 1024; // in bytes - max body size to capture.

@Deprecated
public String getTags(HttpServletRequest request, HttpServletResponse response) {
Expand Down

0 comments on commit 9b34997

Please sign in to comment.