Skip to content

Commit

Permalink
Fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Motok1 authored and watal committed Jun 5, 2022
1 parent f533b90 commit eeba6b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/grpc/go/client/test_add_lsp.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func main() {
flag.Parse()
conn, err := grpc.Dial("localhost:50051", grpc.WithInsecure())
if err != nil {
log.Fatalf("did not connect: %v", err)
log.Fatalf("Can't connect: %v", err)
}
defer conn.Close()
c := pb.NewPceServiceClient(conn)
Expand Down Expand Up @@ -77,7 +77,7 @@ func main() {
log.Fatalf("Invalid input\n")
}

// ラベルを入力していく
// Create Segment List
labels := []*pb.Label{}
fmt.Printf("Create Sid List\n")
for i := 0; i < numberOfLabels; i++ {
Expand Down Expand Up @@ -116,7 +116,7 @@ func main() {
PolicyName: policyName,
})
if err != nil {
log.Fatalf("could not greet: %v", err)
log.Fatalf("CreateLsp error: %v", err)
}
log.Printf("Success: %#v", r)
}

0 comments on commit eeba6b1

Please sign in to comment.