See gh-3555
This commit is contained in:
Stephane Nicoll 2015-08-05 03:52:48 +02:00
parent b7b6e84d4b
commit 7c9f2ae19c
1 changed files with 2 additions and 1 deletions

View File

@ -43,6 +43,7 @@ import org.springframework.util.StringUtils;
* @author Christian Dupuis
* @author Andy Wilkinson
* @author Stephane Nicoll
* @author Arthur Kalimullin
* @since 1.1.0
*/
public class DataSourceHealthIndicator extends AbstractHealthIndicator implements
@ -210,7 +211,7 @@ public class DataSourceHealthIndicator extends AbstractHealthIndicator implement
@Override
protected boolean matchesProduct(String product) {
return super.matchesProduct(product)
|| product.toLowerCase().startsWith("firebird");
|| product.toLowerCase().startsWith("firebird");
}
};