Fix check su stringa in ignorecase
All checks were successful
IntegryManagementSystem_Multi/pipeline/head This commit looks good
All checks were successful
IntegryManagementSystem_Multi/pipeline/head This commit looks good
This commit is contained in:
@@ -80,7 +80,7 @@ public class BasicConnectionPool {
|
||||
public synchronized boolean releaseConnection(String profileName, DataSource ds) throws UnexpectedConnectionSwitchException, SQLException, IOException {
|
||||
String currentCatalog = ds.getConnection().getCatalog();
|
||||
final AvailableConnectionsModel availableConnectionsModel = settingsModel.getAvailableConnections().stream()
|
||||
.filter(x -> x.getProfileName().equals(profileName))
|
||||
.filter(x -> x.getProfileName().equalsIgnoreCase(profileName))
|
||||
.findFirst()
|
||||
.orElse(null);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user