feat: expose append-only ledger health
This commit is contained in:
@@ -21,9 +21,10 @@ func NewService(database Database) *Service {
|
||||
}
|
||||
|
||||
func (s *Service) Check(ctx context.Context) Status {
|
||||
status := Status{Serving: true}
|
||||
status := Status{}
|
||||
if s.database != nil {
|
||||
status.DatabaseReady = s.database.Ping(ctx) == nil
|
||||
}
|
||||
status.Serving = status.DatabaseReady
|
||||
return status
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user