lewismc commented on a change in pull request #6: SDAP-35 (completed the
configuration change)
URL:
https://github.com/apache/incubator-sdap-mudrod/pull/6#discussion_r172921807
##########
File path:
core/src/main/java/org/apache/sdap/mudrod/discoveryengine/WeblogDiscoveryEngine.java
##########
@@ -140,8 +140,8 @@ public void preprocess() {
public void logIngest() {
LOG.info("Starting Web log ingest.");
ArrayList<String> inputList = (ArrayList<String>)
getFileList(props.getProperty(MudrodConstants.DATA_DIR));
- for (String anInputList : inputList) {
- timeSuffix = anInputList;
+ for (int i = 0; i < inputList.size(); i++) {
Review comment:
This is a regression and should be reverted.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services