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 0e0df97 commit 3bc8854Copy full SHA for 3bc8854
jflowinspector/src/main/java/io/tomahawkd/jflowinspector/config/CommandlineDelegate.java
@@ -226,6 +226,13 @@ public void postParsing() {
226
// threads
227
if (flowThreads < 1) flowThreads = 1;
228
if (flowQueueSize < 0) flowQueueSize = 256;
229
+
230
+ // Ignoring http features could cause IllegalArgumentException
231
+ // due to the missing of the http packet count which is held
232
+ // by the HttpFeatureAdapter.
233
+ // Here we temporarily ignores the list until we deal with
234
+ // this problem.
235
+ this.ignoreList.clear();
236
}
237
238
private String generateOutputFileName(LocalFile input, boolean oneFile) {
0 commit comments