This is an automated email from the ASF dual-hosted git repository.
wusheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb.git
The following commit(s) were added to refs/heads/main by this push:
new 6155fa02 fix missing HTTP endpoint of bydbQL (#827)
6155fa02 is described below
commit 6155fa0242f76dd902957de767ec602b44a0e4c2
Author: mrproliu <[email protected]>
AuthorDate: Tue Oct 28 01:27:58 2025 +0900
fix missing HTTP endpoint of bydbQL (#827)
---
banyand/liaison/http/server.go | 2 ++
1 file changed, 2 insertions(+)
diff --git a/banyand/liaison/http/server.go b/banyand/liaison/http/server.go
index d5259514..8f6282fd 100644
--- a/banyand/liaison/http/server.go
+++ b/banyand/liaison/http/server.go
@@ -38,6 +38,7 @@ import (
"google.golang.org/grpc/credentials/insecure"
"google.golang.org/grpc/health/grpc_health_v1"
+ bydbqlv1
"github.com/apache/skywalking-banyandb/api/proto/banyandb/bydbql/v1"
commonv1
"github.com/apache/skywalking-banyandb/api/proto/banyandb/common/v1"
databasev1
"github.com/apache/skywalking-banyandb/api/proto/banyandb/database/v1"
measurev1
"github.com/apache/skywalking-banyandb/api/proto/banyandb/measure/v1"
@@ -361,6 +362,7 @@ func (p *server) initGRPCClient() error {
propertyv1.RegisterPropertyServiceHandlerFromEndpoint(p.grpcCtx, p.gwMux,
p.grpcAddr, opts),
databasev1.RegisterTraceRegistryServiceHandlerFromEndpoint(p.grpcCtx, p.gwMux,
p.grpcAddr, opts),
tracev1.RegisterTraceServiceHandlerFromEndpoint(p.grpcCtx,
p.gwMux, p.grpcAddr, opts),
+ bydbqlv1.RegisterBydbQLServiceHandlerFromEndpoint(p.grpcCtx,
p.gwMux, p.grpcAddr, opts),
)
if err != nil {
return errors.Wrap(err, "failed to register endpoints")