policy.go
type ManagerImpl struct {
parent *ManagerImpl
basePath string
fqPrefix string
providers map[int32]Provider
config *policyConfig
pendingConfig map[interface{}]*policyConfig
pendingLock sync.RWMutex
// SuppressSanityLogMessages when set to true will prevent the sanity checking log
// messages. Useful for novel cases like channel templates
SuppressSanityLogMessages bool
}Last updated