Github user mmiklavc commented on a diff in the pull request:
https://github.com/apache/metron/pull/1138#discussion_r209095504
--- Diff:
metron-platform/metron-pcap-backend/src/test/java/org/apache/metron/pcap/query/PcapCliTest.java
---
@@ -166,12 +166,12 @@ public void
runs_fixed_pcap_filter_job_with_full_argument_list_and_default_datef
PcapOptions.START_TIME_MS.put(config, 500L);
PcapOptions.END_TIME_MS.put(config, 1000L);
PcapOptions.NUM_RECORDS_PER_FILE.put(config, 1000);
+ PcapOptions.PRINT_JOB_STATUS.put(config, true);
--- End diff --
Ah, I see. Missed that with the diff only showing the option line in the
latest commit. Full diff shows the extra option in the cli options arg list.
---