mirror of
https://github.com/langflow-ai/langflow.git
synced 2026-07-24 14:35:50 +08:00
When running Langflow in containerized environments with readOnlyRootFilesystem: true, the update_project_file() function would fail when trying to write updated project data back to the package installation directory. This fix catches OSError and logs it as debug instead of failing, since the database is the source of truth for project data - file updates are optional convenience for development environments. Fixes #11145