Skip to content
This repository has been archived by the owner on Feb 21, 2024. It is now read-only.

Commit

Permalink
fixing test
Browse files Browse the repository at this point in the history
  • Loading branch information
jrbrinlee1 committed Apr 8, 2023
1 parent eb08291 commit db91b19
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions idk/kafka_sasl/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,17 @@ type Main struct {
ConfigMap *confluent.ConfigMap `flag:"-"`
}

func (m *Main) CopyIn(config idk.ConfluentCommand) {
m.KafkaSaslUsername = config.KafkaSaslUsername
m.KafkaSaslPassword = config.KafkaSaslPassword
m.KafkaSaslMechanism = config.KafkaSaslMechanism
m.KafkaSecurityProtocol = config.KafkaSecurityProtocol
m.KafkaSslKeyPassword = config.KafkaSslKeyPassword
m.KafkaSslCaLocation = config.KafkaSslCaLocation
m.KafkaSslCertificateLocation = config.KafkaSslCertificateLocation
m.KafkaSslKeyLocation = config.KafkaSslKeyLocation
}

func NewMain() (*Main, error) {
var err error
m := Main{}
Expand Down

0 comments on commit db91b19

Please sign in to comment.