You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this scenario we single notifcation.json file with one connection. When put notification is executed it ends up in multiple entries of connection creation as shown below
Environment info
Actual behavior
In this scenario we single notifcation.json file with one connection. When put notification is executed it ends up in multiple entries of connection creation as shown below
cat notification.json
{
"TopicConfigurations": [
{
"Id": "notify_event",
"TopicArn": "connection.json",
"Events": [
"s3:ObjectCreated:*"
]
}
]
}
s3cp1 s3api put-bucket-notification-configuration --bucket scenario1bucket1 --notification-configuration file://notification.json
s3cp1 s3api get-bucket-notification-configuration --bucket scenario1bucket1
{
"TopicConfigurations": [
{
"Id": "notify_event",
"TopicArn": "connection.json",
"Events": [
"s3:ObjectCreated:"
]
},
{
"Id": "notify_event",
"TopicArn": "connection.json",
"Events": [
"s3:ObjectCreated:"
]
}
]
}
Expected behavior
1.only one connection should be present
Steps to reproduce
More information - Screenshots / Logs / Other output
The text was updated successfully, but these errors were encountered: