Skip to content

Commit

Permalink
adding comment
Browse files Browse the repository at this point in the history
  • Loading branch information
distractedm1nd committed Jan 29, 2024
1 parent 4d6c0ee commit 85021e9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions nodebuilder/node/admin.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ func (m *module) Info(context.Context) (Info, error) {
}

func (m *module) Ready(context.Context) (bool, error) {
// Because the node uses FX to provide the RPC last, all services' lifecycles have been started by
// the point this endpoint is available. It is not 100% guaranteed at this point that all services
// are fully ready, but it is very high probability and all endpoints are available at this point
// regardless.
return true, nil
}

Expand Down

0 comments on commit 85021e9

Please sign in to comment.