diff options
| author | Dan Engelbrecht <[email protected]> | 2025-06-04 08:59:44 +0200 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2025-06-04 08:59:44 +0200 |
| commit | 937510356143f83ecd15d0a9f58b611c7418ed61 (patch) | |
| tree | d0540f89c30a46f1fd3a041a20d7bed417fcb877 /src/zen/cmds/admin_cmd.cpp | |
| parent | fixed size chunking for encrypted files (#410) (diff) | |
| download | archived-zen-937510356143f83ecd15d0a9f58b611c7418ed61.tar.xz archived-zen-937510356143f83ecd15d0a9f58b611c7418ed61.zip | |
faster scavenge (#417)
- Improvement: Multithreaded scavenge pass for zen builds download
- Improvement: Optimized check for modified files when verifying state of scavenged paths
Diffstat (limited to 'src/zen/cmds/admin_cmd.cpp')
| -rw-r--r-- | src/zen/cmds/admin_cmd.cpp | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/zen/cmds/admin_cmd.cpp b/src/zen/cmds/admin_cmd.cpp index b3f8a990e..fe2bbbdc7 100644 --- a/src/zen/cmds/admin_cmd.cpp +++ b/src/zen/cmds/admin_cmd.cpp @@ -57,10 +57,7 @@ ScrubCommand::Run(const ZenCliOptions& GlobalOptions, int argc, char** argv) } else if (int StatusCode = (int)Response.StatusCode) { - ZEN_ERROR("scrub start failed: {}: {} ({})", - StatusCode, - ReasonStringForHttpResultCode(StatusCode), - Response.ToText()); + ZEN_ERROR("scrub start failed: {}: {} ({})", StatusCode, ReasonStringForHttpResultCode(StatusCode), Response.ToText()); } else { @@ -645,10 +642,7 @@ FlushCommand::Run(const ZenCliOptions& GlobalOptions, int argc, char** argv) } else if (int StatusCode = (int)Response.StatusCode) { - ZEN_ERROR("flush failed: {}: {} ({})", - StatusCode, - ReasonStringForHttpResultCode(StatusCode), - Response.ToText()); + ZEN_ERROR("flush failed: {}: {} ({})", StatusCode, ReasonStringForHttpResultCode(StatusCode), Response.ToText()); } else { |