We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c866fa commit b0cccb3Copy full SHA for b0cccb3
gefapi/tasks/docker_resource_cleanup.py
@@ -110,10 +110,10 @@ def cleanup_docker_build_cache(self):
110
len(caches_deleted),
111
cache_space,
112
)
113
- except AttributeError:
114
- # Fallback: If _post is not available, try using requests directly
+ except Exception as inner_error:
+ # Fallback: If build cache prune fails, try using containers prune
115
logger.warning(
116
- "[TASK]: Low-level API not available for build prune, "
+ f"[TASK]: Failed to prune build cache ({inner_error}), "
117
"trying alternative method..."
118
119
0 commit comments