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
The problem is that Kappa is using the same notification id for both event sources. def _make_notification_id(self, function_name): return 'Kappa-%s-notification' % function_name
This can be fixed by adding an optional "id" field for the s3 event source that can be utilised if there are more than one event sources on the same bucket e.g.
The following configuration will not work:
The problem is that Kappa is using the same notification id for both event sources.
def _make_notification_id(self, function_name): return 'Kappa-%s-notification' % function_name
This can be fixed by adding an optional "id" field for the s3 event source that can be utilised if there are more than one event sources on the same bucket e.g.
The text was updated successfully, but these errors were encountered: