Skip to content

Commit

Permalink
batch-expiry: Change lesserThan to lessThan
Browse files Browse the repository at this point in the history
lesserThan is gramatically incorrect.
  • Loading branch information
Krishnan Parthasarathi authored and Krishnan Parthasarathi committed Nov 20, 2023
1 parent f8360b1 commit 638aad3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion batch-job.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ const BatchJobExpireTemplate = `expire:
- key: content-type
value: image/* # match objects with 'content-type', all values starting with 'image/'
size:
lesserThan: 10MiB # match objects with size lesser than this value (e.g. 10MiB)
lessThan: 10MiB # match objects with size less than this value (e.g. 10MiB)
greaterThan: 1MiB # match objects with size greater than this value (e.g. 1MiB)
purge:
# retainVersions: 0 # (default) delete all versions of the object. This option is the fastest.
Expand Down

0 comments on commit 638aad3

Please sign in to comment.