Merge pull request #12459 from izeye
* pr/12459: Add missing super() calls
This commit is contained in:
@@ -46,6 +46,7 @@ public class CassandraHealthIndicator extends AbstractHealthIndicator {
|
||||
* @param cassandraOperations the Cassandra operations
|
||||
*/
|
||||
public CassandraHealthIndicator(CassandraOperations cassandraOperations) {
|
||||
super("Cassandra health check failed");
|
||||
Assert.notNull(cassandraOperations, "CassandraOperations must not be null");
|
||||
this.cassandraOperations = cassandraOperations;
|
||||
}
|
||||
|
||||
@@ -42,6 +42,7 @@ public class CouchbaseHealthIndicator extends AbstractHealthIndicator {
|
||||
}
|
||||
|
||||
public CouchbaseHealthIndicator(CouchbaseOperations couchbaseOperations) {
|
||||
super("Couchbase health check failed");
|
||||
Assert.notNull(couchbaseOperations, "CouchbaseOperations must not be null");
|
||||
this.operations = couchbaseOperations;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user