hongkunxu opened a new pull request, #17092: URL: https://github.com/apache/pinot/pull/17092
When we use Properties as parameters to get a Pinot connection, everything works fine. However, when we try to connect using user and password directly, the BrokerCache throws an exception. After troubleshooting, I found that the authentication information is not being pushed down to the BrokerCache. So I added the auth token to the connection info so that it can be propagated to the BrokerCache. ``` -- ok Connection connection = DriverManager.getConnection(DB_URL, connectionProperties); -- error Connection conn = DriverManager.getConnection(DB_URL, "test", "test"); ``` -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
