Skip to content

Commit

Permalink
@tus/s3-store: fix expiration tags in readme (#665)
Browse files Browse the repository at this point in the history
  • Loading branch information
vktrl authored Oct 29, 2024
1 parent a035b85 commit d565a8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/s3-store/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ to abort incomplete multipart uploads.

Unlike other stores, the expiration extension on the S3 store does not need to call
[`server.cleanUpExpiredUploads()`][cleanExpiredUploads]. The store creates a
`Tus-Complete` tag for all objects, including `.part` and `.info` files, to indicate
`Tus-Completed` tag for all objects, including `.part` and `.info` files, to indicate
whether an upload is finished. This means you could setup a [lifecyle][] policy to
automatically clean them up without a CRON job.

Expand All @@ -156,7 +156,7 @@ automatically clean them up without a CRON job.
{
"Filter": {
"Tag": {
"Key": "Tus-Complete",
"Key": "Tus-Completed",
"Value": "false"
}
},
Expand Down

0 comments on commit d565a8a

Please sign in to comment.