Skip to content

Commit 1e4f302

Browse files
authored
Fix description log (#374)
1 parent 92f74ae commit 1e4f302

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

controllers/serviceinstance_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ func (r *ServiceInstanceReconciler) poll(ctx context.Context, serviceInstance *s
364364
fallthrough
365365
case smClientTypes.PENDING:
366366
if len(status.Description) > 0 {
367-
log.Info("last operation description is '%s'", status.Description)
367+
log.Info(fmt.Sprintf("last operation description is '%s'", status.Description))
368368
setInProgressConditions(ctx, status.Type, status.Description, serviceInstance)
369369
if err := r.updateStatus(ctx, serviceInstance); err != nil {
370370
log.Error(err, "unable to update ServiceInstance polling description")

0 commit comments

Comments
 (0)