Skip to content

Commit

Permalink
Clarify stale cache log msg
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan Olshevski committed Dec 12, 2023
1 parent 74a9265 commit b69b7bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/reconstitution/reconstituter.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func (r *reconstituter) populateCache(ctx context.Context, comp *apiv1.Compositi

logger.V(1).Info(fmt.Sprintf("found %d slices for this synthesis", len(slices.Items)))
if int64(len(slices.Items)) != *synthesis.ResourceSliceCount {
logger.V(1).Info("stale informer - waiting for sync")
logger.V(1).Info(fmt.Sprintf("stale informer - waiting for sync (%d of %d slices found)", len(slices.Items), *synthesis.ResourceSliceCount))
return nil
}

Expand Down

0 comments on commit b69b7bf

Please sign in to comment.