Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions localstack-core/localstack/services/ses/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def delete_configuration_set(
# TODO: contribute upstream?
backend = get_ses_backend(context)
try:
backend.config_set.pop(configuration_set_name)
backend.config_sets.pop(configuration_set_name)
except KeyError:
raise ConfigurationSetDoesNotExistException(
f"Configuration set <{configuration_set_name}> does not exist."
Expand All @@ -252,7 +252,7 @@ def delete_configuration_set_event_destination(
backend = get_ses_backend(context)

# the configuration set must exist
if configuration_set_name not in backend.config_set:
if configuration_set_name not in backend.config_sets:
raise ConfigurationSetDoesNotExistException(
f"Configuration set <{configuration_set_name}> does not exist."
)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ runtime = [
"json5>=0.9.11",
"jsonpath-ng>=1.6.1",
"jsonpath-rw>=1.4.0",
"moto-ext[all]==5.0.26.post1",
"moto-ext[all]==5.0.26.post2",
"opensearch-py>=2.4.1",
"pymongo>=4.2.0",
"pyopenssl>=23.0.0",
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ mdurl==0.1.2
# via markdown-it-py
more-itertools==10.5.0
# via openapi-core
moto-ext==5.0.26.post1
moto-ext==5.0.26.post2
# via localstack-core
mpmath==1.3.0
# via sympy
Expand Down
2 changes: 1 addition & 1 deletion requirements-runtime.txt
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ mdurl==0.1.2
# via markdown-it-py
more-itertools==10.5.0
# via openapi-core
moto-ext==5.0.26.post1
moto-ext==5.0.26.post2
# via localstack-core (pyproject.toml)
mpmath==1.3.0
# via sympy
Expand Down
2 changes: 1 addition & 1 deletion requirements-test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ mdurl==0.1.2
# via markdown-it-py
more-itertools==10.5.0
# via openapi-core
moto-ext==5.0.26.post1
moto-ext==5.0.26.post2
# via localstack-core
mpmath==1.3.0
# via sympy
Expand Down
2 changes: 1 addition & 1 deletion requirements-typehint.txt
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ mdurl==0.1.2
# via markdown-it-py
more-itertools==10.5.0
# via openapi-core
moto-ext==5.0.26.post1
moto-ext==5.0.26.post2
# via localstack-core
mpmath==1.3.0
# via sympy
Expand Down
Loading