Skip to content

Commit

Permalink
TEP-0075: Remove log statement
Browse files Browse the repository at this point in the history
Ran into this log statement when running tests - it was introduced
in tektoncd#5007 when debugging
TEP-0075 I believe. This change is cleaning up the log statement.
  • Loading branch information
jerop committed Jun 29, 2022
1 parent df074f2 commit c6b45df
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions pkg/reconciler/pipelinerun/resources/apply.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ package resources
import (
"context"
"fmt"
"log"
"strconv"
"strings"

Expand Down Expand Up @@ -171,7 +170,6 @@ func ApplyReplacements(ctx context.Context, p *v1beta1.PipelineSpec, replacement
for j := range p.Tasks[i].Workspaces {
p.Tasks[i].Workspaces[j].SubPath = substitution.ApplyReplacements(p.Tasks[i].Workspaces[j].SubPath, replacements)
}
log.Println("chuangw", arrayReplacements)
p.Tasks[i].WhenExpressions = p.Tasks[i].WhenExpressions.ReplaceWhenExpressionsVariables(replacements, arrayReplacements)
p.Tasks[i], replacements, arrayReplacements, objectReplacements = propagateParams(ctx, p.Tasks[i], replacements, arrayReplacements, objectReplacements)
}
Expand Down

0 comments on commit c6b45df

Please sign in to comment.