Closed ejwood79 closed 6 years ago
Hi @ejwood79 -secure
is a boolean flag and thus requires -secure=false
instead of -secure false
. See https://golang.org/pkg/flag/#hdr-Command_line_flag_syntax for more information. Without using the first version, the value will default to true.
👍
Was having trouble using sendspan with insecure grpc, and found that specifying
-secure false
caused the command to fail, because it was actually enabling TLS.