feat: remove fetch depth limit for dependency resolution

Real package managers (pip, npm, Maven) don't have depth limits - they
resolve the full dependency tree. We have other safeguards:
- Loop prevention via fetch_attempted set
- Timeout via auto_fetch_timeout setting
- Dependency trees are finite
This commit is contained in:
Mondo Diaz
2026-02-04 13:55:53 -06:00
parent aff08ad393
commit f5c9e438a0
2 changed files with 0 additions and 16 deletions

View File

@@ -7093,7 +7093,6 @@ async def resolve_artifact_dependencies(
base_url=base_url,
storage=storage,
registry_clients=registry_clients,
max_fetch_depth=settings.auto_fetch_max_depth,
)
else:
# Fast, synchronous resolution without network calls