Skip to content

Commit

Permalink
Fix log message
Browse files Browse the repository at this point in the history
Change-Id: I82f7cc5cd00e2e70581bea65144918dfaeb6c94c
  • Loading branch information
akinfermo committed Dec 28, 2022
1 parent c94e881 commit 1572d9d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion oracle/controllers/instancecontroller/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,8 @@ func (r *InstanceReconciler) statusProgress(ctx context.Context, ns, name string
log.Info(msg)
return 85, fmt.Errorf(msg)
}
log.Info("container %s is ready", c.Name)
msg := fmt.Sprintf("container %s is ready", c.Name)
log.Info(msg)
}
for _, c := range foundPod.Status.InitContainerStatuses {
if !c.Ready {
Expand Down

0 comments on commit 1572d9d

Please sign in to comment.