mirror of
https://github.com/minio/minio.git
synced 2025-11-20 09:56:07 -05:00
notification queue limit has no maxLimit (#9380)
New value defaults to 100K events by default, but users can tune this value upto any value they seem necessary. * increase the limit to maxint64 while validating
This commit is contained in:
@@ -74,9 +74,6 @@ func (a ElasticsearchArgs) Validate() error {
|
||||
if a.Index == "" {
|
||||
return errors.New("empty index value")
|
||||
}
|
||||
if a.QueueLimit > 10000 {
|
||||
return errors.New("queueLimit should not exceed 10000")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user