diff options
| author | Dan Engelbrecht <[email protected]> | 2025-03-27 14:09:01 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2025-03-27 14:09:01 +0100 |
| commit | a0a0dba13317533f882a85b7f4087588cfa09066 (patch) | |
| tree | 3efc4c88f184a4ea8fa2d845584d74f561efb153 /src/zenhttp/httpclient.cpp | |
| parent | zen build cache service (#318) (diff) | |
| download | zen-a0a0dba13317533f882a85b7f4087588cfa09066.tar.xz zen-a0a0dba13317533f882a85b7f4087588cfa09066.zip | |
optional compress of block chunks (#326)
- Feature: zenserver: Add command line option `--gc-buildstore-duration-seconds` to control GC life time of build store data
- Improvement: ELF and MachO executable files are no longer chunked
- Improvement: Compress chunks in blocks that encloses a full file (such as small executables)
- Bugfix: Strip path delimiter at end of string in StringToPath
Diffstat (limited to 'src/zenhttp/httpclient.cpp')
| -rw-r--r-- | src/zenhttp/httpclient.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zenhttp/httpclient.cpp b/src/zenhttp/httpclient.cpp index fe5232d89..f3baf37ce 100644 --- a/src/zenhttp/httpclient.cpp +++ b/src/zenhttp/httpclient.cpp @@ -325,7 +325,7 @@ CommonResponse(std::string_view SessionId, cpr::Response&& HttpResponse, IoBuffe if (HttpResponse.error.code != cpr::ErrorCode::OPERATION_TIMEDOUT && HttpResponse.error.code != cpr::ErrorCode::CONNECTION_FAILURE && HttpResponse.error.code != cpr::ErrorCode::REQUEST_CANCELLED) { - ZEN_WARN("HttpClient client error (session: {}): {}", SessionId, HttpResponse); + ZEN_WARN("HttpClient client failure (session: {}): {}", SessionId, HttpResponse); } // Client side failure code |