diff options
| author | Dan Engelbrecht <[email protected]> | 2022-05-31 00:04:21 +0200 |
|---|---|---|
| committer | Dan Engelbrecht <[email protected]> | 2022-05-31 00:04:21 +0200 |
| commit | 350f62fff551988783d27425cddf1c1bec318c7e (patch) | |
| tree | ed96f7279e6e64578df5c8dd5a00a20d878f1f68 | |
| parent | Remove namespace from HTTP URI style request in upstream until shared instanc... (diff) | |
| download | zen-350f62fff551988783d27425cddf1c1bec318c7e.tar.xz zen-350f62fff551988783d27425cddf1c1bec318c7e.zip | |
remove unused parameter
| -rw-r--r-- | zenserver/upstream/zen.cpp | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/zenserver/upstream/zen.cpp b/zenserver/upstream/zen.cpp index 354233472..8fc1503c7 100644 --- a/zenserver/upstream/zen.cpp +++ b/zenserver/upstream/zen.cpp @@ -408,7 +408,7 @@ ZenStructuredCacheSession::CheckHealth() } ZenCacheResult -ZenStructuredCacheSession::GetCacheRecord(std::string_view Namespace, std::string_view BucketId, const IoHash& Key, ZenContentType Type) +ZenStructuredCacheSession::GetCacheRecord(std::string_view, std::string_view BucketId, const IoHash& Key, ZenContentType Type) { ExtendableStringBuilder<256> Uri; Uri << m_Client.ServiceUrl() << "/z$/"; @@ -438,10 +438,7 @@ ZenStructuredCacheSession::GetCacheRecord(std::string_view Namespace, std::strin } ZenCacheResult -ZenStructuredCacheSession::GetCacheValue(std::string_view Namespace, - std::string_view BucketId, - const IoHash& Key, - const IoHash& ValueContentId) +ZenStructuredCacheSession::GetCacheValue(std::string_view, std::string_view BucketId, const IoHash& Key, const IoHash& ValueContentId) { ExtendableStringBuilder<256> Uri; Uri << m_Client.ServiceUrl() << "/z$/"; @@ -472,7 +469,7 @@ ZenStructuredCacheSession::GetCacheValue(std::string_view Namespace, } ZenCacheResult -ZenStructuredCacheSession::PutCacheRecord(std::string_view Namespace, +ZenStructuredCacheSession::PutCacheRecord(std::string_view, std::string_view BucketId, const IoHash& Key, IoBuffer Value, @@ -510,7 +507,7 @@ ZenStructuredCacheSession::PutCacheRecord(std::string_view Namespace, } ZenCacheResult -ZenStructuredCacheSession::PutCacheValue(std::string_view Namespace, +ZenStructuredCacheSession::PutCacheValue(std::string_view, std::string_view BucketId, const IoHash& Key, const IoHash& ValueContentId, |