Fix: scale-app could stay stuck indefinitely on a container name conflict, never…
v0.20.6-beta
- Fix:
scale-appcould stay stuck indefinitely on a container name conflict, never recovering. An orphan container left by a previous scale attempt (crash, interruption) occupied the name Docker wanted to give the next replica, makingdocker compose up --scalefail with a conflict error — the deployment path (deploy_app.go) already knows how to self-heal this case by removing the conflicting container and retrying, butscale-appdid not. The same mechanism is now carried over to the scale path.