Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions go/vt/servenv/grpc_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ var (
GRPCPort = flag.Int("grpc_port", 0, "Port to listen on for gRPC calls")

// GRPCCert is the cert to use if TLS is enabled
GRPCCert = flag.String("grpc_cert", "", "certificate to use, requires grpc_key, enables TLS")
GRPCCert = flag.String("grpc_cert", "", "server certificate to use for gRPC connections, requires grpc_key, enables TLS")

// GRPCKey is the key to use if TLS is enabled
GRPCKey = flag.String("grpc_key", "", "key to use, requires grpc_cert, enables TLS")
GRPCKey = flag.String("grpc_key", "", "server private key to use for gRPC connections, requires grpc_cert, enables TLS")

// GRPCCA is the CA to use if TLS is enabled
GRPCCA = flag.String("grpc_ca", "", "ca to use, requires TLS, and enforces client cert check")
GRPCCA = flag.String("grpc_ca", "", "server CA to use for gRPC connections, requires TLS, and enforces client certificate check")

// GRPCAuth which auth plugin to use (at the moment now only static is supported)
GRPCAuth = flag.String("grpc_auth_mode", "", "Which auth plugin implementation to use (eg: static)")
Expand Down
2 changes: 1 addition & 1 deletion go/vt/vtctl/vtctl.go
Original file line number Diff line number Diff line change
Expand Up @@ -2954,7 +2954,7 @@ func commandWorkflow(ctx context.Context, wr *wrangler.Wrangler, subFlags *flag.
return err
}
if subFlags.NArg() != 2 {
return fmt.Errorf("usage: Workflow --dry-run keyspace.workflow start/stop/delete/list/list-all")
return fmt.Errorf("usage: Workflow --dry-run keyspace.workflow start/stop/delete/list/listall")
}
keyspace := subFlags.Arg(0)
action := strings.ToLower(subFlags.Arg(1))
Expand Down