Fix: admin config set API for notifications (#9085)

Filter out targets set via env when
validating incoming config change against
configured notification targets

Fixes #9066
This commit is contained in:
poornas 2020-03-14 00:01:15 -07:00 committed by GitHub
parent 3fea1d5e35
commit 10fd53d6bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 17 additions and 4 deletions

View File

@ -428,6 +428,10 @@ func lookupConfigs(s config.Config) {
if err != nil { if err != nil {
logger.LogIf(ctx, fmt.Errorf("Unable to initialize notification target(s): %w", err)) logger.LogIf(ctx, fmt.Errorf("Unable to initialize notification target(s): %w", err))
} }
globalEnvTargetList, err = notify.GetNotificationTargets(newServerConfig(), GlobalServiceDoneCh, NewCustomHTTPTransport())
if err != nil {
logger.LogIf(ctx, fmt.Errorf("Unable to initialize notification target(s): %w", err))
}
} }
// Help - return sub-system level help // Help - return sub-system level help

View File

@ -144,8 +144,11 @@ var (
globalNotificationSys *NotificationSys globalNotificationSys *NotificationSys
globalConfigTargetList *event.TargetList globalConfigTargetList *event.TargetList
globalPolicySys *PolicySys // globalEnvTargetList has list of targets configured via env.
globalIAMSys *IAMSys globalEnvTargetList *event.TargetList
globalPolicySys *PolicySys
globalIAMSys *IAMSys
globalLifecycleSys *LifecycleSys globalLifecycleSys *LifecycleSys
globalBucketSSEConfigSys *BucketSSEConfigSys globalBucketSSEConfigSys *BucketSSEConfigSys

View File

@ -757,8 +757,14 @@ func (sys *NotificationSys) ConfiguredTargetIDs() []event.TargetID {
} }
} }
} }
// Filter out targets configured via env
return targetIDs var tIDs []event.TargetID
for _, targetID := range targetIDs {
if !globalEnvTargetList.Exists(targetID) {
tIDs = append(tIDs, targetID)
}
}
return tIDs
} }
// RemoveNotification - removes all notification configuration for bucket name. // RemoveNotification - removes all notification configuration for bucket name.