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
We're currently using the serverless-prune-plugin to remove unused Lambda function versions, but we've encountered an issue where the plugin does not delete the previous unused versions of the warmup function as expected.
Context
Plugin Version
serverless-plugin-warmup@8.2.1
serverless-prune-plugin@2.0.2
Serverless Framework Version: serverless@3.38.0
Steps to Reproduce
Deploy the service multiple times, creating several versions of a Lambda function.
Configure serverless-prune-plugin to keep only the latest N versions (e.g., N = 5).
Deploy again and observe that older versions remain in AWS.
Expected Behavior
Older versions beyond the specified N should be removed from AWS.
Actual Behavior
The older versions remain in AWS even after the plugin is configured and the service is redeployed.
Additional Information
Is there any specific configuration we might be missing to ensure these unused versions are pruned?
The text was updated successfully, but these errors were encountered:
Hi,
We're currently using the
serverless-prune-plugin
to remove unused Lambda function versions, but we've encountered an issue where the plugin does not delete the previous unused versions of the warmup function as expected.Context
serverless@3.38.0
Steps to Reproduce
The text was updated successfully, but these errors were encountered: