Skip to content

Commit 88ad2a9

Browse files
committed
PropertiesSchema and AppJobStatus
1 parent 1a59e99 commit 88ad2a9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/main/java/sndml/agent/AppJobStatus.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ public enum AppJobStatus {
77
DRAFT,
88
SCHEDULED,
99
READY,
10+
QUEUED,
1011
PREPARE,
1112
RUNNING,
1213
COMPLETE,

src/main/java/sndml/loader/PropertiesSchema.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ public static void main(String[] args) throws Exception {
4747
Option.builder("v").longOpt("validate").required(false).hasArg(true).
4848
desc("Validate property file").build();
4949
Option optHelp =
50-
Option.builder("h").longOpt("help").required(false).hasArg(false).
51-
desc("Print list of available properties").build();
50+
Option.builder("m").longOpt("markdown").required(false).hasArg(false).
51+
desc("Print markdown table of available properties").build();
5252
Options options = new Options();
5353
options.addOption(optValidate);
5454
options.addOption(optHelp);

0 commit comments

Comments
 (0)