mirror of
https://github.com/GNS3/gns3-server.git
synced 2026-08-27 12:30:13 +03:00
When closing a Docker node, if container deletion fails, the error is silently ignored. This can lead to stale containers remaining on the system and causing 409 conflicts when reopening projects. Changes: - Distinguish between 404 (container already removed, normal) and other DockerError (deletion failed, needs attention) - Log warning when deletion fails with error details - Add comment explaining stale containers will be cleaned up on project open (via automatic 409 conflict resolution) This improves observability without blocking project close operations. The root cause of stale containers can now be diagnosed from logs. Fixes #2708 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>