File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
api/src/main/java/io/kafbat/ui/service/rbac Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -65,21 +65,18 @@ public class AccessControlService {
6565
6666 @ PostConstruct
6767 public void init () {
68- log .info ("Initializing Access Control Service" );
69- log .info ("defaultRole: {}" , properties .getDefaultRole ());
70- log .info ("roles: {}" , properties .getRoles ());
7168 if (CollectionUtils .isEmpty (properties .getRoles ()) && properties .getDefaultRole () == null ) {
7269 log .trace ("No roles provided, disabling RBAC" );
7370 return ;
7471 }
7572 if (properties .getDefaultRole () != null ) {
73+ log .trace ("Set Default Role Clusters" );
7674 properties .getDefaultRole ().setClusters (
7775 clustersStorage .getKafkaClusters ().stream ()
7876 .map (KafkaCluster ::getName )
7977 .collect (Collectors .toList ())
8078 );
8179 }
82- log .info ("defaultRole: {}" , properties .getDefaultRole ());
8380 rbacEnabled = true ;
8481
8582 if (properties .getDefaultRole () != null ) {
You can’t perform that action at this time.
0 commit comments