You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by lu...@apache.org on 2023/02/25 13:26:01 UTC

[skywalking-banyandb] 01/01: register missing service

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

lujiajing pushed a commit to branch topn-oap-integration
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb.git

commit d1155111f89c403b5176938af7d3904e26a9482f
Author: Megrez Lu <lu...@gmail.com>
AuthorDate: Sat Feb 25 21:25:49 2023 +0800

    register missing service
---
 banyand/liaison/grpc/server.go | 1 +
 1 file changed, 1 insertion(+)

diff --git a/banyand/liaison/grpc/server.go b/banyand/liaison/grpc/server.go
index 4758585d..057486dc 100644
--- a/banyand/liaison/grpc/server.go
+++ b/banyand/liaison/grpc/server.go
@@ -199,6 +199,7 @@ func (s *server) Serve() run.StopNotify {
 	databasev1.RegisterStreamRegistryServiceServer(s.ser, s.streamRegistryServer)
 	databasev1.RegisterMeasureRegistryServiceServer(s.ser, s.measureRegistryServer)
 	propertyv1.RegisterPropertyServiceServer(s.ser, s.propertyServer)
+	databasev1.RegisterTopNAggregationRegistryServiceServer(s.ser, s.topNAggregationRegistryServer)
 	grpc_health_v1.RegisterHealthServer(s.ser, health.NewServer())
 
 	s.stopCh = make(chan struct{})