You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: main.go
+7-5Lines changed: 7 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -11,10 +11,11 @@ import (
11
11
typeCLIstruct {
12
12
Debugbool`short:"d" help:"Emit debug logs in addition to info logs."`
13
13
14
-
Networkstring`help:"Network on which to listen for gRPC connections." default:"tcp"`
15
-
Addressstring`help:"Address at which to listen for gRPC connections." default:":9443"`
16
-
TLSCertsDirstring`help:"Directory containing server certs (tls.key, tls.crt) and the CA used to verify client certificates (ca.crt)" env:"TLS_SERVER_CERTS_DIR"`
17
-
Insecurebool`help:"Run without mTLS credentials. If you supply this flag --tls-server-certs-dir will be ignored."`
14
+
Networkstring`help:"Network on which to listen for gRPC connections." default:"tcp"`
15
+
Addressstring`help:"Address at which to listen for gRPC connections." default:":9443"`
16
+
TLSCertsDirstring`help:"Directory containing server certs (tls.key, tls.crt) and the CA used to verify client certificates (ca.crt)" env:"TLS_SERVER_CERTS_DIR"`
17
+
Insecurebool`help:"Run without mTLS credentials. If you supply this flag --tls-server-certs-dir will be ignored."`
18
+
MaxRecvMessageSizeint`help:"Maximum size of received messages in MB." default:"4"`
0 commit comments