This is an automated email from the ASF dual-hosted git repository.
cmcfarlen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new 2d0553fd25 Move sandbox path into runtime directory (#10518)
2d0553fd25 is described below
commit 2d0553fd2506d452589525750c4d5dc728577e61
Author: Chris McFarlen <[email protected]>
AuthorDate: Mon Sep 25 11:21:47 2023 -0500
Move sandbox path into runtime directory (#10518)
---
tests/gold_tests/jsonrpc/plugins/jsonrpc_plugin_handler_test.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/gold_tests/jsonrpc/plugins/jsonrpc_plugin_handler_test.cc
b/tests/gold_tests/jsonrpc/plugins/jsonrpc_plugin_handler_test.cc
index 96b1bc713f..83567dc954 100644
--- a/tests/gold_tests/jsonrpc/plugins/jsonrpc_plugin_handler_test.cc
+++ b/tests/gold_tests/jsonrpc/plugins/jsonrpc_plugin_handler_test.cc
@@ -163,7 +163,7 @@ CB_handle_rpc_io_call(TSCont contp, TSEvent event, void
*data)
// Basic stuffs here.
// We open the file if exist, we update/add the host in the structure. For
simplicity we do not delete anything.
- fs::path sandbox = fs::current_path();
+ fs::path sandbox = fs::current_path() / "runtime";
fs::path dumpFile = sandbox / "my_test_plugin_dump.yaml";
bool newFile{false};
if (!fs::exists(dumpFile)) {