Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds support to delete old versions when successful deployment #7414

Open
wants to merge 8 commits into
base: develop
Choose a base branch
from
Prev Previous commit
Next Next commit
Make Linter Happy :)
  • Loading branch information
driverpt committed Jan 30, 2025
commit 3a70d2aef478981df8334a162629108d21b122cd
6 changes: 3 additions & 3 deletions samcli/lib/sync/flows/alias_version_sync_flow.py
Original file line number Diff line number Diff line change
@@ -118,8 +118,8 @@ def _equality_keys(self) -> Any:

def _get_version_alias_if_exists(self) -> Optional[str]:
try:
return self._lambda_client.get_alias(
FunctionName=self.get_physical_id(self._function_identifier), Name=self._alias_name
).get("FunctionVersion")
result = self._lambda_client.get_alias(FunctionName=self.get_physical_id(
self._function_identifier), Name=self._alias_name).get("FunctionVersion")
return str(result) if result is not None else result
except self._lambda_client.exceptions.ResourceNotFoundException:
return None
Loading
Oops, something went wrong.