Skip to content

Commit

Permalink
batch-expiry: Change lesserThan to lessThan (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
krisis authored Nov 20, 2023
1 parent f8360b1 commit 799847f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/vulncheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ 1.21.3 ]
go-version: [ 1.21.4 ]
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
Expand Down
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 799847f

Please sign in to comment.