Skip to content

Commit

Permalink
Update pipeline rules
Browse files Browse the repository at this point in the history
  • Loading branch information
cl-bvl committed Dec 27, 2022
1 parent 878bf71 commit bb53f4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ func setupPipeline(syncGroup *pipeline.Group, cli *argsParsed) {
if (cli.Source.Type == storage.TypeFS) &&
((cli.FilterMtimeAfter > 0) || (cli.FilterMtimeBefore > 0) || cli.FilterModified) {
syncGroup.AddPipeStep(loadObjMetaStep)
} else if (len(cli.FilterCT) > 0) || (len(cli.FilterCTNot) > 0) {
} else if (cli.Source.Type != storage.TypeSwift) && (len(cli.FilterCT) > 0) || (len(cli.FilterCTNot) > 0) {
syncGroup.AddPipeStep(loadObjMetaStep)
}

Expand Down

0 comments on commit bb53f4d

Please sign in to comment.