File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
plugins/user-authenticators/ldap/src/main/java/org/apache/cloudstack/api/command Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -227,11 +227,11 @@ private boolean isACloudStackUser(String username) {
227227 if (CollectionUtils .isNotEmpty (cloudstackUsers )) {
228228 for (final UserResponse cloudstackUser : cloudstackUsers ) {
229229 if (username .equals (cloudstackUser .getUsername ())) {
230- logger .trace ("found user {} in cloudstack user {}" , username , () -> cloudstackUser .getUsername ());
230+ logger .trace ("found user {} in cloudstack user {}" , username , cloudstackUser .getUsername ());
231231 rc = true ;
232232 break ;
233233 } else {
234- logger .trace ("ldap user {} does not match cloudstack user {}" , username , () -> cloudstackUser .getUsername ());
234+ logger .trace ("ldap user {} does not match cloudstack user {}" , username , cloudstackUser .getUsername ());
235235 }
236236 }
237237 }
You can’t perform that action at this time.
0 commit comments