Disable checking for available disk space. Ref #2548

This commit is contained in:
grossmj 2026-01-28 18:32:42 +08:00
parent abaeab6242
commit 7f45cc6f47
No known key found for this signature in database
GPG Key ID: 1E7DD6DBB53FF3D7

View File

@ -106,7 +106,7 @@ class ProjectManager:
if project_id is not None and project_id in self._projects:
return self._projects[project_id]
project = Project(name=name, project_id=project_id, path=path, variables=variables)
self._check_available_disk_space(project)
#self._check_available_disk_space(project) # FIXME: disabled for now
self._projects[project.id] = project
return project