HDDS-415. 'ozone om' with incorrect argument first logs all the STARTUP_MSG. Contributed by Namit Maheshwari.
This commit is contained in:
parent
5d084d7eca
commit
e084627150
@ -258,7 +258,6 @@ public static void main(String[] argv) throws IOException {
|
||||
hParser.printGenericCommandUsage(System.err);
|
||||
System.exit(1);
|
||||
}
|
||||
StringUtils.startupShutdownMessage(OzoneManager.class, argv, LOG);
|
||||
OzoneManager om = createOm(hParser.getRemainingArgs(), conf);
|
||||
if (om != null) {
|
||||
om.start();
|
||||
@ -298,6 +297,7 @@ public static OzoneManager createOm(String[] argv,
|
||||
}
|
||||
switch (startOpt) {
|
||||
case CREATEOBJECTSTORE:
|
||||
StringUtils.startupShutdownMessage(OzoneManager.class, argv, LOG);
|
||||
terminate(omInit(conf) ? 0 : 1);
|
||||
return null;
|
||||
case HELP:
|
||||
@ -305,6 +305,7 @@ public static OzoneManager createOm(String[] argv,
|
||||
terminate(0);
|
||||
return null;
|
||||
default:
|
||||
StringUtils.startupShutdownMessage(OzoneManager.class, argv, LOG);
|
||||
return new OzoneManager(conf);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user