Fix db health check

This commit is contained in:
2020-11-05 15:34:37 +01:00
parent 568a2c6831
commit e6a7af840a
2 changed files with 3 additions and 6 deletions
@@ -8,6 +8,6 @@ interface HealthCheckService {
}
@Singleton
class HealthCheckServiceImpl(private val dbHealthCheck: DbHealthCheck): HealthCheckService {
class HealthCheckServiceImpl(private val dbHealthCheck: DbHealthCheck) : HealthCheckService {
override fun isOk() = dbHealthCheck.isOk()
}