necouchman commented on code in PR #1028:
URL: https://github.com/apache/guacamole-client/pull/1028#discussion_r1835408613
##########
extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-base/src/main/java/org/apache/guacamole/auth/jdbc/base/EntityService.java:
##########
@@ -76,9 +85,22 @@ public class EntityService {
public Set<String> retrieveEffectiveGroups(ModeledPermissions<? extends
EntityModel> entity,
Collection<String> effectiveGroups) {
+ CaseSensitivity caseSensitivity = CaseSensitivity.ENABLED;
+ try {
+ caseSensitivity = environment.getCaseSensitivity();
+ }
+ catch (GuacamoleException e) {
+ LOGGER.warn("Unable to retrieve configuration setting for group "
+ + "name case-sensitivity, group names will be treated "
+ + "as case-sensitive.", e.getMessage());
+ LOGGER.debug("Got exception while trying to get group name case-"
+ + "sensitivity configuration.", e);
Review Comment:
I believe I've caught/fixed all of these inconsistencies via rebase.
--
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]