Matteo Mazza
Matteo Mazza
Implementing graceful termination on the application side we are facing the same issue. We have an ECS service with an ALB, Fargate tasks and autoscaling that increase and decrease the...
if anyone is hitting this issue as well, I'm using this workaround. right after plugin application, ``` void sanitizeDevSnapshotVersion(Project project){ // fix for https://github.com/nebula-plugins/nebula-release-plugin/issues/258 if(project.gradle.startParameter.taskNames.contains('devSnapshot')){ if((project.findProperty("release.sanitizeVersion") as Boolean)){ def inferredVersion...
> Is there a specific reason you choose to do this for the entire project, instead of just varying it for the task(s) that need a sanitized version? maybe is...