diff options
| author | Stefan Boberg <[email protected]> | 2025-10-03 10:10:05 +0200 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2025-10-03 10:10:05 +0200 |
| commit | f7664974cd32286b0623082a395c91ba1ceb9ce0 (patch) | |
| tree | 268b845873228a49775c4bee1896086629ea0c0d /src/zenserver/cache/httpstructuredcache.cpp | |
| parent | move zenutil builds code to zenremotestore (#543) (diff) | |
| download | zen-f7664974cd32286b0623082a395c91ba1ceb9ce0.tar.xz zen-f7664974cd32286b0623082a395c91ba1ceb9ce0.zip | |
cache RPC replay fixes (minor) (#544)
* fixes misleading server side log message when using `--onhost`
* fixed `--onhost` behaviour in zen (no longer replays twice)
Diffstat (limited to 'src/zenserver/cache/httpstructuredcache.cpp')
| -rw-r--r-- | src/zenserver/cache/httpstructuredcache.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zenserver/cache/httpstructuredcache.cpp b/src/zenserver/cache/httpstructuredcache.cpp index dad4ed803..a9d6be8f2 100644 --- a/src/zenserver/cache/httpstructuredcache.cpp +++ b/src/zenserver/cache/httpstructuredcache.cpp @@ -447,7 +447,7 @@ HttpStructuredCacheService::HandleRequest(HttpServerRequest& Request) std::unique_ptr<cache::IRpcRequestReplayer> Replayer(cache::MakeDiskRequestReplayer(RecordPath, false)); ReplayRequestRecorder(RequestContext, *Replayer, ThreadCount < 1 ? 1 : ThreadCount); - ZEN_INFO("cache RPC replay STARTED"); + ZEN_INFO("cache RPC replay COMPLETED"); Request.WriteResponse(HttpResponseCode::OK); return; |