mirror of https://github.com/devine-dl/devine.git
Set the default aria2c --file-allocation to prealloc
Falloc is faster, but supports less systems/environments, and usually require admin perms on Windows.
This commit is contained in:
parent
ce53a1b636
commit
961747b74c
|
@ -61,7 +61,7 @@ def aria2c(
|
|||
"--max-tries", "5",
|
||||
"--max-file-not-found", "5",
|
||||
"--summary-interval", "0",
|
||||
"--file-allocation", config.aria2c.get("file_allocation", "falloc"),
|
||||
"--file-allocation", config.aria2c.get("file_allocation", "prealloc"),
|
||||
"--console-log-level", "warn",
|
||||
"--download-result", ["hide", "default"][bool(progress)],
|
||||
*args,
|
||||
|
|
Loading…
Reference in New Issue