Skip to content

Commit

Permalink
fix(orc8r): Fix missing cloud health servicer init (magma#12160)
Browse files Browse the repository at this point in the history
  • Loading branch information
hcgatewood authored and emakeev committed Aug 5, 2022
1 parent 9975c43 commit 2a60190
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions feg/cloud/go/services/health/health/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ func main() {
glog.Fatalf("Error creating health servicer: %+v", err)
}
protos.RegisterHealthServer(srv.GrpcServer, healthServer)
cloudHealthServer, err := servicers.NewCloudHealthServer(store)
if err != nil {
glog.Fatalf("Error creating cloud health servicer: %+v", err)
}
protos.RegisterCloudHealthServer(srv.GrpcServer, cloudHealthServer)

// create a networkHealthStatusReporter to monitor and periodically log metrics
// on if all gateways in a network are unhealthy
Expand Down

0 comments on commit 2a60190

Please sign in to comment.