We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fef914a commit 532339dCopy full SHA for 532339d
scripts/checks.sh
@@ -2,5 +2,5 @@
2
set -eo pipefail
3
4
java -jar libs/google-java-format-1.7-all-deps.jar --set-exit-if-changed -i -a $(find . -type f -name "*.java" | grep ".*/src/.*java")
5
-mvn -X -f agent/pom.xml clean package
6
-mvn -X clean package
+mvn -f agent/pom.xml clean package
+mvn clean package
src/main/java/io/lumigo/core/configuration/Configuration.java
@@ -139,6 +139,10 @@ public int maxRequestSize() {
139
}
140
141
public int maxBatchMessageIds() {
142
- return envUtil.getIntegerEnv(LUMIGO_MAX_BATCH_MESSAGE_IDS, 20);
+ int value = envUtil.getIntegerEnv(LUMIGO_MAX_BATCH_MESSAGE_IDS, 20);
143
+ if (value == 0) {
144
+ value = 20;
145
+ }
146
+ return value;
147
148
0 commit comments