From 8651478ce2bc8989c7e335cf6262d97e78dfbf21 Mon Sep 17 00:00:00 2001 From: Benjamin Wang Date: Fri, 2 Dec 2022 14:17:58 +0800 Subject: [PATCH] raft: mark etcd/raft deprecated, and suggest users to use the new go.etcd.io/raft/v3 module Signed-off-by: Benjamin Wang --- raft/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/raft/README.md b/raft/README.md index fbd8b4d49..379089f4b 100644 --- a/raft/README.md +++ b/raft/README.md @@ -1,4 +1,4 @@ -# Raft library +# Raft library (Deprecated, please use [go.etcd.io/raft/v3](https://github.com/etcd-io/raft) instead.) Raft is a protocol with which a cluster of nodes can maintain a replicated state machine. The state machine is kept in sync through the use of a replicated log. @@ -198,4 +198,4 @@ This approach introduces a problem when removing a member from a two-member clus ## Go docs -More detailed development documentation can be found in go docs: https://pkg.go.dev/go.etcd.io/etcd/raft/v3. \ No newline at end of file +More detailed development documentation can be found in go docs: https://pkg.go.dev/go.etcd.io/etcd/raft/v3.