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 bee915bf Update the gRPC and HTTP port for lifecycle agent (#941)
bee915bf is described below
commit bee915bfe9dd69299c8be75ada8f4ce773051989
Author: mrproliu <[email protected]>
AuthorDate: Thu Jan 15 11:56:16 2026 +0800
Update the gRPC and HTTP port for lifecycle agent (#941)
---
banyand/backup/lifecycle/service.go | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/banyand/backup/lifecycle/service.go
b/banyand/backup/lifecycle/service.go
index d64193b5..0c9cd5c7 100644
--- a/banyand/backup/lifecycle/service.go
+++ b/banyand/backup/lifecycle/service.go
@@ -141,8 +141,8 @@ func (l *lifecycleService) FlagSet() *run.FlagSet {
flagS.StringVar(&l.lifecycleCertFile, "lifecycle-cert-file", "", "the
TLS cert file")
flagS.StringVar(&l.lifecycleKeyFile, "lifecycle-key-file", "", "the TLS
key file")
flagS.StringVar(&l.lifecycleHost, "lifecycle-grpc-host", "", "the host
of lifecycle server listens")
- flagS.Uint32Var(&l.lifecycleGRPCPort, "lifecycle-grpc-port", 17912,
"the port of lifecycle server listens")
- flagS.Uint32Var(&l.lifecycleHTTPPort, "lifecycle-http-port", 17913,
"the port of lifecycle http api listens")
+ flagS.Uint32Var(&l.lifecycleGRPCPort, "lifecycle-grpc-port", 17914,
"the port of lifecycle server listens")
+ flagS.Uint32Var(&l.lifecycleHTTPPort, "lifecycle-http-port", 17915,
"the port of lifecycle http api listens")
return flagS
}