Skip to content

Commit

Permalink
satellite/satellitedb: Fix typo & drop trailing white space
Browse files Browse the repository at this point in the history
Fix typo and remove a trailing white space.

Change-Id: Ie13ffa95d5d44bc01d10d7bdd75a7f20299cc3f7
  • Loading branch information
ifraixedes committed Apr 22, 2024
1 parent 7defdac commit 3d0ddd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions satellite/satellitedb/overlaycache.go
Expand Up @@ -472,7 +472,7 @@ func (cache *overlaycache) GetParticipatingNodes(ctx context.Context, onlineWind
(offline_suspended IS NOT NULL OR unknown_audit_suspended IS NOT NULL) AS suspended,
false AS disqualified,
exit_initiated_at IS NOT NULL AS exiting,
false AS exited,
false AS exited,
vetted_at IS NOT NULL AS vetted
FROM nodes
`+cache.db.impl.AsOfSystemInterval(asOfSystemInterval)+`
Expand Down Expand Up @@ -794,7 +794,7 @@ func (cache *overlaycache) UpdatePieceCounts(ctx context.Context, pieceCounts ma
return nil
}

// TODO: pass in the apprioriate struct to database, rather than constructing it here
// TODO: pass in the appropriate struct to database, rather than constructing it here
type NodeCount struct {
ID storj.NodeID
Count int64
Expand Down

0 comments on commit 3d0ddd4

Please sign in to comment.