From a666a962db2a0b0525f5abe942efbb8a6bae698a Mon Sep 17 00:00:00 2001 From: chriskaliX Date: Tue, 31 Jan 2023 00:35:21 +0800 Subject: [PATCH] grpc addr port --- agent/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/main.go b/agent/main.go index 56a847f2..dab60d89 100644 --- a/agent/main.go +++ b/agent/main.go @@ -40,7 +40,7 @@ func init() { func main() { // Before deploying, change the GrpcAddr value if you need to, compare with the original one - flag.StringVar(&connection.GrpcAddr, "url", "127.0.0.1:9001", "set grpc addr") + flag.StringVar(&connection.GrpcAddr, "url", "127.0.0.1:8000", "set grpc addr") flag.BoolVar(&connection.InsecureTransport, "insecure", false, "grpc with insecure") flag.BoolVar(&connection.InsecureTLS, "insecure-tls", true, "grpc tls insecure") flag.Parse()