This is a follow up to #546 which was closed. Apologies for inactivity since we were focused on releases last few weeks. Please see original issue in https://youtrack.jetbrains.com/issue/DBE-13085.
Here is where we get the account cache from MSAL in the JDBC driver.
Looking through the MSAL code it looks like matches are not case sensitive here? and here? I also see that toLowerCase is called in AccountCacheEntity.
We're seeing that if the user string is [email protected] we're getting [email protected] back from getAccounts(). User is proposing that we do case insensitive match and consider that as a hit however linux/mac is case sensitive these could be 2 different users.
This is a follow up to #546 which was closed. Apologies for inactivity since we were focused on releases last few weeks. Please see original issue in https://youtrack.jetbrains.com/issue/DBE-13085.
Here is where we get the account cache from MSAL in the JDBC driver.
Looking through the MSAL code it looks like matches are not case sensitive here? and here? I also see that toLowerCase is called in AccountCacheEntity.
We're seeing that if the user string is
[email protected]we're getting[email protected]back from getAccounts(). User is proposing that we do case insensitive match and consider that as a hit however linux/mac is case sensitive these could be 2 different users.