Skip to content

Commit

Permalink
merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
Mongey committed Apr 19, 2023
1 parent 44bec35 commit e08e5b2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions kafka/lazy_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,10 @@ func (c *LazyClient) UpsertUserScramCredential(userScramCredential UserScramCred
}

func (c *LazyClient) DescribeUserScramCredential(username string, mechanism string) (*UserScramCredential, error) {
err := c.init()
if err != nil {
return err
}
return c.inner.DescribeUserScramCredential(username, mechanism)
}

Expand Down

0 comments on commit e08e5b2

Please sign in to comment.