Skip to content

Commit

Permalink
fix health report dependency on diagnostics call
Browse files Browse the repository at this point in the history
  • Loading branch information
Omarabdul3ziz committed Sep 2, 2024
1 parent f57ae56 commit 05f9139
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions grid-proxy/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ Check `/version` on any instance to know the version.

## Releases

### v0.15.14

---

- `fix` health report depend on diagnostics

### v0.15.13

---
Expand Down
2 changes: 1 addition & 1 deletion grid-proxy/charts/gridproxy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ version: 1.0.0
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: 0.15.13
appVersion: 0.15.14

# make sure to update the changelog with the changes in this release
2 changes: 1 addition & 1 deletion grid-proxy/internal/indexer/health.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func (w *HealthWork) Upsert(ctx context.Context, db db.Database, batch []types.H
func getHealthReport(response diagnostics.Diagnostics, twinId uint32) types.HealthReport {
report := types.HealthReport{
NodeTwinId: twinId,
Healthy: false,
Healthy: response.Healthy,
UpdatedAt: time.Now().Unix(),
}

Expand Down

0 comments on commit 05f9139

Please sign in to comment.