Merge pull request #89846 from connorgorman/configurable-default-chan-size

Make DefaultChanSize an exported var so it can be modified
This commit is contained in:
Kubernetes Prow Robot 2020-04-13 10:15:49 -07:00 committed by GitHub
commit 499fdfaad8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -46,7 +46,9 @@ const (
Deleted EventType = "DELETED" Deleted EventType = "DELETED"
Bookmark EventType = "BOOKMARK" Bookmark EventType = "BOOKMARK"
Error EventType = "ERROR" Error EventType = "ERROR"
)
var (
DefaultChanSize int32 = 100 DefaultChanSize int32 = 100
) )