This is an automated email from the ASF dual-hosted git repository.
lewismc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-sdap-mudrod.git
The following commit(s) were added to refs/heads/master by this push:
new 54522cd Printing help bug is fixed. (#37)
54522cd is described below
commit 54522cd24a7f8f75dcee4a15cf22799e1a2a216b
Author: Furkan KAMACI <[email protected]>
AuthorDate: Wed Feb 13 09:37:31 2019 +0300
Printing help bug is fixed. (#37)
---
core/src/main/java/org/apache/sdap/mudrod/main/MudrodEngine.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/core/src/main/java/org/apache/sdap/mudrod/main/MudrodEngine.java
b/core/src/main/java/org/apache/sdap/mudrod/main/MudrodEngine.java
index 48218e9..02cf1e6 100644
--- a/core/src/main/java/org/apache/sdap/mudrod/main/MudrodEngine.java
+++ b/core/src/main/java/org/apache/sdap/mudrod/main/MudrodEngine.java
@@ -391,7 +391,7 @@ public class MudrodEngine {
me.end();
} catch (Exception e) {
HelpFormatter formatter = new HelpFormatter();
- formatter.printHelp("MudrodEngine: 'dataDir' argument is mandatory. " +
"User must also provide an ingest method.", true);
+ formatter.printHelp("MudrodEngine: 'dataDir' argument is mandatory. " +
"User must also provide an ingest method.", new Options());
LOG.error("Error whilst parsing command line.", e);
}
}