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
@@ -118,6 +118,8 @@ const (
|
||||
SubnetSubSys = madmin.SubnetSubSys
|
||||
CallhomeSubSys = madmin.CallhomeSubSys
|
||||
DriveSubSys = madmin.DriveSubSys
|
||||
BatchSubSys = madmin.BatchSubSys
|
||||
|
||||
// Add new constants here (similar to above) if you add new fields to config.
|
||||
)
|
||||
|
||||
@@ -185,6 +187,7 @@ var SubSystemsDynamic = set.CreateStringSet(
|
||||
AuditKafkaSubSys,
|
||||
StorageClassSubSys,
|
||||
CacheSubSys,
|
||||
BatchSubSys,
|
||||
)
|
||||
|
||||
// SubSystemsSingleTargets - subsystems which only support single target.
|
||||
@@ -207,6 +210,7 @@ var SubSystemsSingleTargets = set.CreateStringSet(
|
||||
CallhomeSubSys,
|
||||
DriveSubSys,
|
||||
CacheSubSys,
|
||||
BatchSubSys,
|
||||
)
|
||||
|
||||
// Constant separators
|
||||
|
||||
Reference in New Issue
Block a user