You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ha...@apache.org on 2022/04/03 22:46:45 UTC

[skywalking-banyandb] branch liaison created (now 64f94e2)

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

hanahmily pushed a change to branch liaison
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb.git


      at 64f94e2  Uncomment measure

This branch includes the following new commits:

     new 64f94e2  Uncomment measure

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[skywalking-banyandb] 01/01: Uncomment measure

Posted by ha...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

hanahmily pushed a commit to branch liaison
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb.git

commit 64f94e2e5c93ebeef89a4dc5c9ba2f292cd4a763
Author: Gao Hongtao <ha...@gmail.com>
AuthorDate: Sun Apr 3 22:45:57 2022 +0000

    Uncomment measure
    
    Signed-off-by: Gao Hongtao <ha...@gmail.com>
---
 banyand/liaison/grpc/server.go | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/banyand/liaison/grpc/server.go b/banyand/liaison/grpc/server.go
index 317b73d..d5bad43 100644
--- a/banyand/liaison/grpc/server.go
+++ b/banyand/liaison/grpc/server.go
@@ -27,6 +27,7 @@ import (
 
 	"github.com/apache/skywalking-banyandb/api/event"
 	databasev1 "github.com/apache/skywalking-banyandb/api/proto/banyandb/database/v1"
+	measurev1 "github.com/apache/skywalking-banyandb/api/proto/banyandb/measure/v1"
 	propertyv1 "github.com/apache/skywalking-banyandb/api/proto/banyandb/property/v1"
 	streamv1 "github.com/apache/skywalking-banyandb/api/proto/banyandb/stream/v1"
 	"github.com/apache/skywalking-banyandb/banyand/discovery"
@@ -188,7 +189,7 @@ func (s *Server) Serve() run.StopNotify {
 	s.ser = grpclib.NewServer(opts...)
 
 	streamv1.RegisterStreamServiceServer(s.ser, s.streamSVC)
-	// measurev1.RegisterMeasureServiceServer(s.ser, s.measureSVC)
+	measurev1.RegisterMeasureServiceServer(s.ser, s.measureSVC)
 	// register *Registry
 	databasev1.RegisterGroupRegistryServiceServer(s.ser, s.groupRegistryServer)
 	databasev1.RegisterIndexRuleBindingRegistryServiceServer(s.ser, s.indexRuleBindingRegistryServer)