Skip to content

Commit 450d326

Browse files
committed
test
1 parent b80d244 commit 450d326

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

proxy_wasm_api.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -723,9 +723,9 @@ inline WasmResult getSharedData(std::string_view key, WasmDataPtr *value, uint32
723723
return WasmResult::Ok;
724724
}
725725

726-
inline WasmResult setSharedData(std::string_view key, std::string_view value, uint32_t cas = 0) {
727-
return proxy_set_shared_data(key.data(), key.size(), value.data(), value.size(), cas);
728-
}
726+
// inline WasmResult setSharedData(std::string_view key, std::string_view value, uint32_t cas = 0) {
727+
// return proxy_set_shared_data(key.data(), key.size(), value.data(), value.size(), cas);
728+
// }
729729

730730
inline WasmResult removeSharedData(std::string_view key, uint32_t cas = 0) {
731731
return proxy_remove_shared_data(key.data(), key.size(), cas);

0 commit comments

Comments
 (0)