add missing notification subsystem targets (#13294)

fixes #13293
This commit is contained in:
Harshavardhana 2021-09-23 17:23:50 -07:00 committed by GitHub
parent db65ec4674
commit a1271d984f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -411,6 +411,9 @@ func initAllSubsystems(ctx context.Context, newObject ObjectLayer) (err error) {
// Initialize bucket metadata sub-system. // Initialize bucket metadata sub-system.
globalBucketMetadataSys.Init(ctx, buckets, newObject) globalBucketMetadataSys.Init(ctx, buckets, newObject)
// Initialize bucket notification sub-system.
globalNotificationSys.Init(ctx, buckets, newObject)
if globalIsErasure { if globalIsErasure {
// Initialize transition tier configuration manager // Initialize transition tier configuration manager
if err = globalTierConfigMgr.Init(ctx, newObject); err != nil { if err = globalTierConfigMgr.Init(ctx, newObject); err != nil {