see-quick opened a new pull request, #20468:
URL: https://github.com/apache/kafka/pull/20468
This PR moves the ScramPublisher class from the server metadata package to
the dedicated metadata module. During refactoring, I found out that I also need
to move the CredentialProvider interface to a more appropriate location in the
server common package because `CredentialProvider` is in the `server` module,
and I can't include that module in the `metadata` because I would create a
circular dependency, i.e.,
```
server module ←-------------┐
↓ (depends on) │ (circular!)
metadata module------------┘
```
So I have moved `CredentialProvider` to `server-common` module, and
`metadata` module has already `server-common` and thus it's resolved.
--
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]