Skip to content

Commit ab2243c

Browse files
committed
skip ssl is not a valid parameter
1 parent 180a3c4 commit ab2243c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/source/mysqldump/cli.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ type Flags struct {
4848
SslCrl string `flag:"--ssl-crl="`
4949
SslCrlPath string `flag:"--ssl-crlpath="`
5050
SslKey string `flag:"--ssl-key="`
51-
SkipSsl bool `flag:"--skip-ssl"`
51+
Ssl *int `flag:"--ssl="`
5252
Tab string `flag:"--tab="`
5353
TLSCipherSuites string `flag:"--tls-ciphersuites="`
5454
TLSVersion string `flag:"--tls-version="`

pkg/source/mysqlrestore/cli.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ type Flags struct {
3838
ServerPublicKeyPath string `flag:"--server-public-key-path="`
3939
SharedMemoryBaseName string `flag:"--shared-memory-base-name="`
4040
Socket string `flag:"--socket="`
41-
Ssl int `flag:"--ssl="`
41+
Ssl *int `flag:"--ssl="`
4242
SslCa string `flag:"--ssl-ca="`
4343
SslCaPath string `flag:"--ssl-capath="`
4444
SslCert string `flag:"--ssl-cert="`

0 commit comments

Comments
 (0)