Skip to content
Snippets Groups Projects
Commit 5af35225 authored by Wei Liu's avatar Wei Liu
Browse files

disabled --aggregate-transmission and --split args.

parent c68932bb
No related branches found
No related tags found
No related merge requests found
......@@ -391,10 +391,12 @@ public class MFUpload extends MFSyncApp {
settings().setExcludeParent(true);
return 1;
} else if ("--aggregate-transmission".equalsIgnoreCase(args[i])) {
settings().enableAggregateUpload();
// TODO remove this arg
// settings().enableAggregateUpload();
return 1;
} else if ("--split".equalsIgnoreCase(args[i])) {
settings().enableSplit();
// TODO remove this arg
// settings().enableSplit();
return 1;
} else if ("--log-dir".equalsIgnoreCase(args[i])) {
Path logDir = Paths.get(args[i + 1]).toAbsolutePath();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment