This is an automated email from the ASF dual-hosted git repository.
twice pushed a commit to branch unstable
in repository https://gitbox.apache.org/repos/asf/incubator-kvrocks.git
The following commit(s) were added to refs/heads/unstable by this push:
new c13cba26 Fix wrong include in redis_cmd.cc (#1145)
c13cba26 is described below
commit c13cba26b9d133d4295e7fb72061616c7439703b
Author: Twice <[email protected]>
AuthorDate: Sat Nov 26 23:58:01 2022 +0800
Fix wrong include in redis_cmd.cc (#1145)
---
src/commands/redis_cmd.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/commands/redis_cmd.h b/src/commands/redis_cmd.h
index 4ac17c0f..f9cc8b67 100644
--- a/src/commands/redis_cmd.h
+++ b/src/commands/redis_cmd.h
@@ -38,7 +38,7 @@
#include "server/redis_reply.h"
#include "status.h"
-#include "util.h"
+#include "string_util.h"
class Server;