mirror of
https://github.com/minio/minio.git
synced 2025-04-06 04:40:38 -04:00
Check if eventN is initialized before notifying in Upload web handler (#2435)
This commit is contained in:
parent
76d56c6ff2
commit
51d7749c3e
@ -138,7 +138,10 @@ func (en *eventNotifier) RemoveLambdaTarget(lambdaARN string, listenerCh chan []
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Returns true if bucket notification is set for the bucket, false otherwise.
|
// Returns true if bucket notification is set for the bucket, false otherwise.
|
||||||
func (en eventNotifier) IsBucketNotificationSet(bucket string) bool {
|
func (en *eventNotifier) IsBucketNotificationSet(bucket string) bool {
|
||||||
|
if en == nil {
|
||||||
|
return false
|
||||||
|
}
|
||||||
en.rwMutex.RLock()
|
en.rwMutex.RLock()
|
||||||
defer en.rwMutex.RUnlock()
|
defer en.rwMutex.RUnlock()
|
||||||
_, ok := en.notificationConfigs[bucket]
|
_, ok := en.notificationConfigs[bucket]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user