Skip to content

Commit cf0cb9d

Browse files
committed
pacify linter
1 parent e02a46a commit cf0cb9d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pipe/pipeline.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ func (p *Pipeline) Start(ctx context.Context) error {
301301
// We need to decide how to start the stages, especially what
302302
// pipes to use to connect adjacent stages (`os.Pipe()` vs.
303303
// `io.Pipe()`) based on the two stages' requirements.
304-
stageStarters := make([]stageStarter, len(p.stages), len(p.stages))
304+
stageStarters := make([]stageStarter, len(p.stages))
305305

306306
// Collect information about each stage's type and requirements:
307307
for i, s := range p.stages {

0 commit comments

Comments
 (0)