mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
fix: better object store write error propagation
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
83b8a390cd
commit
97efc95efc
1 changed files with 1 additions and 1 deletions
|
|
@ -543,7 +543,7 @@ class ObjectStoreStorage extends \OC\Files\Storage\Common implements IChunkedFil
|
|||
]
|
||||
);
|
||||
}
|
||||
throw $ex; // make this bubble up
|
||||
throw new GenericFileException('Error while writing stream to object store', 0, $ex);
|
||||
}
|
||||
|
||||
if ($exists) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue