Skip to content

Commit

Permalink
Merge pull request #267 from nak3/output-string
Browse files Browse the repository at this point in the history
Output CIDR in correct format
  • Loading branch information
mogren authored Dec 14, 2018
2 parents 7216b94 + bbfa4f4 commit 3020119
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipamd/rpc_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func (s *server) AddNetwork(ctx context.Context, in *pb.AddNetworkRequest) (*pb.
var pbVPCcidrs []string

for _, cidr := range vpcCIDRs {
log.Debugf("VPC CIDR %s", cidr)
log.Debugf("VPC CIDR %s", *cidr)
pbVPCcidrs = append(pbVPCcidrs, *cidr)
}

Expand Down

0 comments on commit 3020119

Please sign in to comment.