aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ovnaction/cmd/main.go4
-rw-r--r--src/rsync/cmd/main.go4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/ovnaction/cmd/main.go b/src/ovnaction/cmd/main.go
index 9e791cd1..a6b34923 100644
--- a/src/ovnaction/cmd/main.go
+++ b/src/ovnaction/cmd/main.go
@@ -50,9 +50,9 @@ func startGrpcServer() error {
certFile := config.GetConfiguration().GrpcServerCert
keyFile := config.GetConfiguration().GrpcServerKey
- host, port := register.GetServerHostPort()
+ _, port := register.GetServerHostPort()
- lis, err := net.Listen("tcp", fmt.Sprintf("%s:%d", host, port))
+ lis, err := net.Listen("tcp", fmt.Sprintf(":%d", port))
if err != nil {
log.Fatalf("Could not listen to port: %v", err)
}
diff --git a/src/rsync/cmd/main.go b/src/rsync/cmd/main.go
index e62e0542..f46fa79b 100644
--- a/src/rsync/cmd/main.go
+++ b/src/rsync/cmd/main.go
@@ -43,9 +43,9 @@ func startGrpcServer() error {
certFile := config.GetConfiguration().GrpcServerCert
keyFile := config.GetConfiguration().GrpcServerKey
- host, port := register.GetServerHostPort()
+ _, port := register.GetServerHostPort()
- lis, err := net.Listen("tcp", fmt.Sprintf("%s:%d", host, port))
+ lis, err := net.Listen("tcp", fmt.Sprintf(":%d", port))
if err != nil {
log.Fatalf("Could not listen to port: %v", err)
}