beyondyinjl2 opened a new issue #602:
URL: https://github.com/apache/pulsar-client-go/issues/602
The code does not see the authentication method of
org.apache.pulsar.client.impl.auth.AuthenticationBasic
code
case "":
return NewAuthDisabled(), nil
case "tls", "org.apache.pulsar.client.impl.auth.AuthenticationTls":
return NewAuthenticationTLSWithParams(m), nil
case "token", "org.apache.pulsar.client.impl.auth.AuthenticationToken":
return NewAuthenticationTokenWithParams(m)
case "athenz",
"org.apache.pulsar.client.impl.auth.AuthenticationAthenz":
return NewAuthenticationAthenzWithParams(m)
case "oauth2",
"org.apache.pulsar.client.impl.auth.oauth2.AuthenticationOAuth2":
return NewAuthenticationOAuth2WithParams(m)
default:
return nil, errors.New(fmt.Sprintf("invalid auth provider
'%s'", name))
}
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]