doc: Polish changelogs

This commit is contained in:
Leo R. Lundgren
2023-04-23 22:27:27 +02:00
parent 253bebb096
commit 94d5861c50
4 changed files with 15 additions and 15 deletions

View File

@@ -1,13 +1,13 @@
Bugfix: Return "internal server error" if files cannot be read
Bugfix: Return 500 "Internal server error" if files cannot be read
When files in a repository cannot be read by rest-server, for example after
running `restic prune` directly on the server hosting the repositories, then
rest-server returned "Not Found" as status code. This is extremely confusing
for users.
running `restic prune` directly on the server hosting the repositories in a
way that causes filesystem permissions to be wrong, rest-server previously
returned 404 "Not Found" as status code. This was causing confusing for users.
The error handling has been fixed to only return "Not Found" if the file
actually does not exist. Otherwise an internal server error is reported to the
user and the underlying error is logged at the server side.
The error handling has now been fixed to only return 404 "Not Found" if the
file actually does not exist. Otherwise a 500 "Internal server error" is
reported to the client and the underlying error is logged at the server side.
https://github.com/restic/restic/issues/1871
https://github.com/restic/rest-server/pull/194
https://github.com/restic/rest-server/pull/195