mirror of
https://github.com/pgsty/minio.git
synced 2026-07-21 13:10:22 +03:00
Implement batch-expiration for objects (#17946)
Based on an initial PR from - https://github.com/minio/minio/pull/17792 But fully completes it with newer finalized YAML spec.
This commit is contained in:
committed by
GitHub
parent
69294cf98a
commit
a50f26b7f5
@@ -224,4 +224,19 @@ Examples:
|
||||
"",
|
||||
"MINIO_API_TRANSITION_WORKERS: should be >= GOMAXPROCS/2",
|
||||
)
|
||||
ErrInvalidBatchKeyRotationWorkersWait = newErrFn(
|
||||
"Invalid value for batch key rotation workers wait",
|
||||
"Please input a non-negative duration",
|
||||
"keyrotation_workers_wait should be > 0ms",
|
||||
)
|
||||
ErrInvalidBatchReplicationWorkersWait = newErrFn(
|
||||
"Invalid value for batch replication workers wait",
|
||||
"Please input a non-negative duration",
|
||||
"replication_workers_wait should be > 0ms",
|
||||
)
|
||||
ErrInvalidBatchExpirationWorkersWait = newErrFn(
|
||||
"Invalid value for batch expiration workers wait",
|
||||
"Please input a non-negative duration",
|
||||
"expiration_workers_wait should be > 0ms",
|
||||
)
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user