YueGuobin 16a9064eb8
Fix silent file write failure in write_compute_project_file
The inner try-except caught OSError/UnicodeEncodeError with 'pass',
silently swallowing all write failures and returning HTTP 204 as if
the file was written successfully.

Remove the nested try-except and let errors propagate properly:
- OSError → 500 with error detail
- PermissionError → 403 (already handled)
- FileNotFoundError → 404 (already handled)
2026-06-09 23:27:45 +08:00
..
2023-08-04 18:20:06 +10:00
2026-02-21 21:42:22 +08:00
2024-03-16 16:00:27 +01:00
2026-02-21 21:42:22 +08:00