Skip to content

Commit

Permalink
fix: go lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
shifty11 committed Feb 27, 2024
1 parent 2fcb2a4 commit 0c157a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/kystrap/templates/go/server/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func StartServer() {
pb.RegisterRuntimeServiceServer(server, &{{ .name | ToPascal }}Server{})

// Start serving incoming connections
fmt.Printf(fmt.Sprintf("🌐 {{ .name | ToPascal }}Server is running on on http://%s:%s...\nPress Ctrl + C to exit.\n", host, port))
fmt.Printf("🌐 {{ .name | ToPascal }}Server is running on on http://%s:%s...\nPress Ctrl + C to exit.\n", host, port)
err = server.Serve(listener)
if err != nil {
log.Fatalf("Failed to serve gRPC server: %v", err)
Expand Down

0 comments on commit 0c157a5

Please sign in to comment.