Skip to content

Commit 48409ce

Browse files
fix sasl validation (#183)
1 parent 2e83480 commit 48409ce

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmd/topicctl/subcmd/shared.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ func (s sharedOptions) validate() error {
9797
log.Warn("Username and password are ignored if using SASL AWS-MSK-IAM")
9898
}
9999

100-
if s.saslUsername != "" || s.saslPassword != "" && s.saslSecretsManagerArn != "" {
100+
if (s.saslUsername != "" || s.saslPassword != "") && s.saslSecretsManagerArn != "" {
101101
err = multierror.Append(err, errors.New("Cannot set both sasl-username or sasl-password and sasl-secrets-manager-arn"))
102102
}
103103
}

pkg/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
package version
22

33
// Version is the current topicctl version.
4-
const Version = "1.14.1"
4+
const Version = "1.14.2"

0 commit comments

Comments
 (0)