Skip to content

Commit

Permalink
[SMALLFIX] Change indentation
Browse files Browse the repository at this point in the history
Change indentation on
'src/main/java/alluxio/cli/bundler/command/CollectAlluxioInfoCommand.java'

pr-link: #13802
change-id: cid-357a8dae551af2455f5632fb8fffb82efec0dcec
  • Loading branch information
WonderJingle committed Jul 16, 2021
1 parent 6f8c5d2 commit 527be45
Showing 1 changed file with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,25 +62,25 @@ protected void registerCommands() {
// TODO(jiacheng): a command to find lost blocks?
// alluxio getConf will mask the credential fields
registerCommand("getConf",
new AlluxioCommand(mAlluxioPath, "getConf"), null);
new AlluxioCommand(mAlluxioPath, "getConf"), null);
registerCommand("getConf master",
new AlluxioCommand(mAlluxioPath, "getConf --master --source"), null);
new AlluxioCommand(mAlluxioPath, "getConf --master --source"), null);
registerCommand("fsadmin",
new AlluxioCommand(mAlluxioPath, "fsadmin report"), null);
new AlluxioCommand(mAlluxioPath, "fsadmin report"), null);
registerCommand("mount",
new AlluxioCommand(mAlluxioPath, "fs mount"), null);
new AlluxioCommand(mAlluxioPath, "fs mount"), null);
registerCommand("version",
new AlluxioCommand(mAlluxioPath, "version -r"), null);
new AlluxioCommand(mAlluxioPath, "version -r"), null);
registerCommand("job",
new AlluxioCommand(mAlluxioPath, "job ls"), null);
new AlluxioCommand(mAlluxioPath, "job ls"), null);
registerCommand("journal",
new AlluxioCommand(mAlluxioPath, String.format("fs ls -R %s",
mFsContext.getClusterConf().get(PropertyKey.MASTER_JOURNAL_FOLDER))),
getListJournalCommand());
new AlluxioCommand(mAlluxioPath, String.format("fs ls -R %s",
mFsContext.getClusterConf().get(PropertyKey.MASTER_JOURNAL_FOLDER))),
getListJournalCommand());
registerCommand("runTests",
new AlluxioCommand(mAlluxioPath, "runTests"), null);
new AlluxioCommand(mAlluxioPath, "runTests"), null);
registerCommand("validateConf",
new AlluxioCommand(mAlluxioPath, "validateConf"), null);
new AlluxioCommand(mAlluxioPath, "validateConf"), null);
}

/**
Expand Down

0 comments on commit 527be45

Please sign in to comment.