ekaterinadimitrova2 commented on code in PR #2648: URL: https://github.com/apache/cassandra/pull/2648#discussion_r1344657224
########## test/unit/org/apache/cassandra/tools/nodetool/InvalidateCIDRPermissionsCacheTest.java: ########## @@ -20,13 +20,10 @@ import java.net.InetSocketAddress; +import org.apache.cassandra.auth.*; Review Comment: Good point, it looks like our checkstyle does not enforce that, at least not in tests. I will replace the import on commit with: ``` import org.apache.cassandra.auth.AuthCacheService; import org.apache.cassandra.auth.AuthTestUtils; import org.apache.cassandra.auth.AuthenticatedUser; import org.apache.cassandra.auth.IRoleManager; ``` -- 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]

