This is an automated email from the ASF dual-hosted git repository.

hulk pushed a commit to branch unstable
in repository https://gitbox.apache.org/repos/asf/kvrocks-controller.git


The following commit(s) were added to refs/heads/unstable by this push:
     new 59d348e  Fix missing ERR prefix in error message (#145)
59d348e is described below

commit 59d348eb1a08d904bcc9bdae4ab9563d34e91317
Author: xiaobiaozhao <[email protected]>
AuthorDate: Sun Jan 21 23:03:08 2024 +0800

    Fix missing ERR prefix in error message (#145)
---
 controller/probe/cluster.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/controller/probe/cluster.go b/controller/probe/cluster.go
index 35ce159..3d073c2 100644
--- a/controller/probe/cluster.go
+++ b/controller/probe/cluster.go
@@ -33,8 +33,8 @@ import (
 )
 
 var (
-       ErrClusterNotInitialized = errors.New("CLUSTERDOWN The cluster is not 
initialized")
-       ErrRestoringBackUp       = errors.New("LOADING kvrocks is restoring the 
db from backup")
+       ErrClusterNotInitialized = errors.New("ERR CLUSTERDOWN The cluster is 
not initialized")
+       ErrRestoringBackUp       = errors.New("ERR LOADING kvrocks is restoring 
the db from backup")
 )
 
 type Cluster struct {

Reply via email to