Skip to content

Commit 8b7e2cf

Browse files
committed
fix s3 expiration tag
1 parent a035b85 commit 8b7e2cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/s3-store/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ to abort incomplete multipart uploads.
146146

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

@@ -156,7 +156,7 @@ automatically clean them up without a CRON job.
156156
{
157157
"Filter": {
158158
"Tag": {
159-
"Key": "Tus-Complete",
159+
"Key": "Tus-Completed",
160160
"Value": "false"
161161
}
162162
},

0 commit comments

Comments
 (0)