summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2021-06-24 15:35:52 +0300
committerValery Piashchynski <[email protected]>2021-06-24 15:35:52 +0300
commiteb65f86843d2ef3829593525958a158ff4d0f56b (patch)
tree690577cfe0452b50eca66d7d134fd13851af3039
parentfdff0ffe41b45d0e919eccc683104987898a4faf (diff)
- Update CHANGELOG
Signed-off-by: Valery Piashchynski <[email protected]>
-rw-r--r--CHANGELOG.md1
-rw-r--r--tests/plugins/kv/storage_plugin_test.go3
2 files changed, 1 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1f8e1733..ea55a10d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,7 @@ v2.3.1 (_.06.2021)
## 👀 New:
- ✏️ Rework `broadcast` plugin. Add architecture diagrams to the `doc` folder. [PR](https://github.com/spiral/roadrunner/pull/732)
+- ✏️ Add `Clear` method to the KV plugin RPC. [PR](https://github.com/spiral/roadrunner/pull/736)
## 🩹 Fixes:
diff --git a/tests/plugins/kv/storage_plugin_test.go b/tests/plugins/kv/storage_plugin_test.go
index 6169fad5..ced1c5fe 100644
--- a/tests/plugins/kv/storage_plugin_test.go
+++ b/tests/plugins/kv/storage_plugin_test.go
@@ -622,7 +622,6 @@ func testRPCMethods(t *testing.T) {
err = client.Call("kv.Has", dataClear, ret)
assert.NoError(t, err)
assert.Len(t, ret.GetItems(), 0) // should be 5
-
}
func TestMemcached(t *testing.T) {
@@ -886,7 +885,6 @@ func testRPCMethodsMemcached(t *testing.T) {
err = client.Call("kv.Has", dataClear, ret)
assert.NoError(t, err)
assert.Len(t, ret.GetItems(), 0) // should be 5
-
}
func TestInMemory(t *testing.T) {
@@ -1148,7 +1146,6 @@ func testRPCMethodsInMemory(t *testing.T) {
err = client.Call("kv.Has", dataClear, ret)
assert.NoError(t, err)
assert.Len(t, ret.GetItems(), 0) // should be 5
-
}
func TestRedis(t *testing.T) {