aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2025-10-03 17:17:44 +0200
committerGitHub Enterprise <[email protected]>2025-10-03 17:17:44 +0200
commitf8dae0f66d17a904dfa4a54771df031b62bce10e (patch)
tree5f268e0f3189d8f0be9230dd67b217ca021ca54a /src
parentcacherequests helpers test only (#551) (diff)
downloadzen-f8dae0f66d17a904dfa4a54771df031b62bce10e.tar.xz
zen-f8dae0f66d17a904dfa4a54771df031b62bce10e.zip
move rpcrecorder out from cache subfolder (#552)
Diffstat (limited to 'src')
-rw-r--r--src/zen/cmds/rpcreplay_cmd.cpp2
-rw-r--r--src/zenserver/cache/httpstructuredcache.cpp2
-rw-r--r--src/zenutil/include/zenutil/rpcrecording.h (renamed from src/zenutil/include/zenutil/cache/rpcrecording.h)0
-rw-r--r--src/zenutil/rpcrecording.cpp (renamed from src/zenutil/cache/rpcrecording.cpp)2
-rw-r--r--src/zenutil/zenutil.cpp2
5 files changed, 4 insertions, 4 deletions
diff --git a/src/zen/cmds/rpcreplay_cmd.cpp b/src/zen/cmds/rpcreplay_cmd.cpp
index 55600c5d8..dbf15ddd4 100644
--- a/src/zen/cmds/rpcreplay_cmd.cpp
+++ b/src/zen/cmds/rpcreplay_cmd.cpp
@@ -16,7 +16,7 @@
#include <zenhttp/httpclient.h>
#include <zenhttp/httpcommon.h>
#include <zenhttp/packageformat.h>
-#include <zenutil/cache/rpcrecording.h>
+#include <zenutil/rpcrecording.h>
ZEN_THIRD_PARTY_INCLUDES_START
#include <fmt/format.h>
diff --git a/src/zenserver/cache/httpstructuredcache.cpp b/src/zenserver/cache/httpstructuredcache.cpp
index ab3f1b56c..dd5bf05cb 100644
--- a/src/zenserver/cache/httpstructuredcache.cpp
+++ b/src/zenserver/cache/httpstructuredcache.cpp
@@ -25,7 +25,7 @@
#include <zenstore/cache/cache.h>
#include <zenstore/cache/structuredcachestore.h>
#include <zenstore/gc.h>
-#include <zenutil/cache/rpcrecording.h>
+#include <zenutil/rpcrecording.h>
#include <zenutil/workerpools.h>
#include "upstream/upstreamcache.h"
diff --git a/src/zenutil/include/zenutil/cache/rpcrecording.h b/src/zenutil/include/zenutil/rpcrecording.h
index f1ad35413..f1ad35413 100644
--- a/src/zenutil/include/zenutil/cache/rpcrecording.h
+++ b/src/zenutil/include/zenutil/rpcrecording.h
diff --git a/src/zenutil/cache/rpcrecording.cpp b/src/zenutil/rpcrecording.cpp
index 46e80f6b7..54f27dee7 100644
--- a/src/zenutil/cache/rpcrecording.cpp
+++ b/src/zenutil/rpcrecording.cpp
@@ -1,6 +1,6 @@
// Copyright Epic Games, Inc. All Rights Reserved.
-#include <zenutil/cache/rpcrecording.h>
+#include <zenutil/rpcrecording.h>
#include <zencore/basicfile.h>
#include <zencore/compactbinarybuilder.h>
diff --git a/src/zenutil/zenutil.cpp b/src/zenutil/zenutil.cpp
index 8e35e6223..51c1ee72e 100644
--- a/src/zenutil/zenutil.cpp
+++ b/src/zenutil/zenutil.cpp
@@ -4,7 +4,7 @@
#if ZEN_WITH_TESTS
-# include <zenutil/cache/rpcrecording.h>
+# include <zenutil/rpcrecording.h>
# include <zenutil/commandlineoptions.h>
# include <zenutil/wildcard.h>